diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 6d6c8844..00000000 --- a/.npmrc +++ /dev/null @@ -1,4 +0,0 @@ -# Force public npm registry to avoid CI auth (E401) when no token is provided -registry=https://registry.npmjs.org/ -# Do not require auth for public installs -always-auth=false diff --git a/build/azure-devdiv-pipeline.pre-release.yml b/build/azure-devdiv-pipeline.pre-release.yml deleted file mode 100644 index 3ec92340..00000000 --- a/build/azure-devdiv-pipeline.pre-release.yml +++ /dev/null @@ -1,125 +0,0 @@ -# Run on a schedule -trigger: none -pr: none - -schedules: - - cron: '0 10 * * 1-5' # 10AM UTC (2AM PDT) MON-FRI (VS Code Pre-release builds at 9PM PDT) - displayName: Nightly Pre-Release Schedule - always: false # only run if there are source code changes - branches: - include: - - main - -resources: - repositories: - - repository: MicroBuildTemplate - type: git - name: 1ESPipelineTemplates/MicroBuildTemplate - ref: refs/tags/release -variables: - - name: TeamName - value: VSCode-python-debugger - - name: VsixName - value: python-debugger.vsix - - name: AZURE_ARTIFACTS_FEED - value: 'https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/Pylance_PublicPackages/npm/registry/' -parameters: - - name: publishExtension - displayName: 🚀 Publish Extension - type: boolean - default: false - -extends: - template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate - parameters: - sdl: - sourceAnalysisPool: VSEngSS-MicroBuild2022-1ES - codeSignValidation: - enabled: true - sbom: - enabled: false # Disable global SBOM generation; we'll enable selectively per artifact output - pool: - name: AzurePipelines-EO - os: windows - - customBuildTags: - - ES365AIMigrationTooling - stages: - - stage: Build - displayName: Build & Package Extension - jobs: - - job: Build - displayName: Build Job - pool: - name: VSEngSS-MicroBuild2022-1ES # use windows for codesigning to make things easier https://dev.azure.com/devdiv/DevDiv/_wiki/wikis/DevDiv.wiki/650/MicroBuild-Signing - os: windows - templateContext: - mb: - signing: - enabled: true - signType: real - signWithProd: true - outputs: - - output: pipelineArtifact - displayName: 'Publish Drop Artifact' - targetPath: '$(Build.StagingDirectory)\drop' - artifactName: drop - sbomEnabled: true - steps: - - task: npmAuthenticate@0 - inputs: - workingFile: .npmrc - - - script: npm config get registry - displayName: Verify NPM Registry - - - task: NodeTool@0 - inputs: - versionSpec: '22.x' - checkLatest: true - displayName: Select Node 22 LTS - - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.9' # note Install Python dependencies step below relies on Python 3.9 - addToPath: true - architecture: 'x64' - displayName: Select Python version - - - script: npm ci - displayName: Install NPM dependencies - - - script: python -m pip install -U pip - displayName: Upgrade pip - - - script: python -m pip install wheel - displayName: Install wheel - - - script: python -m pip install nox - displayName: Install nox - - - script: python -m nox --session install_bundled_libs - displayName: Install Python dependencies - - - script: python ./build/update_ext_version.py --for-publishing - displayName: Update build number - - - script: npm run vsce-package-pre - displayName: Build VSIX - - - template: build/templates/sign.yml@self - parameters: - vsixName: $(VsixName) - workingDirectory: $(Build.StagingDirectory)\drop - signType: real - verifySignature: true - - - ${{ if eq(parameters.publishExtension, true) }}: - - template: build/templates/publish.yml@self - parameters: - azureSubscription: PylancePublishPipelineSecureConnectionWithManagedIdentity - vsixName: $(VsixName) - manifestName: extension.manifest - signatureName: extension.signature.p7s - publishFolder: drop - preRelease: true diff --git a/build/azure-devdiv-pipeline.stable.yml b/build/azure-devdiv-pipeline.stable.yml deleted file mode 100644 index c60fdc0f..00000000 --- a/build/azure-devdiv-pipeline.stable.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Publish Release -trigger: - branches: - include: - - refs/tags/* - -resources: - repositories: - - repository: MicroBuildTemplate - type: git - name: 1ESPipelineTemplates/MicroBuildTemplate - ref: refs/tags/release -variables: - - name: TeamName - value: VSCode-python-debugger - - name: VsixName - value: python-debugger.vsix - -parameters: - - name: publishExtension - displayName: 🚀 Publish Extension - type: boolean - default: false - -extends: - template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate - parameters: - sdl: - sourceAnalysisPool: VSEngSS-MicroBuild2022-1ES - codeSignValidation: - enabled: true - sbom: - enabled: false # Disable global SBOM generation; we'll enable selectively per artifact output - pool: - name: AzurePipelines-EO - os: windows - - customBuildTags: - - ES365AIMigrationTooling - stages: - - stage: Build - displayName: Build & Package Extension - jobs: - - job: Build - displayName: Build Job - pool: - name: VSEngSS-MicroBuild2022-1ES # use windows for codesigning to make things easier https://dev.azure.com/devdiv/DevDiv/_wiki/wikis/DevDiv.wiki/650/MicroBuild-Signing - os: windows - templateContext: - mb: - signing: - enabled: true - signType: real - signWithProd: true - outputs: - - output: pipelineArtifact - displayName: 'Publish Drop Artifact' - targetPath: '$(Build.StagingDirectory)\drop' - artifactName: drop - sbomEnabled: true - steps: - - task: NodeTool@0 - inputs: - versionSpec: '22.x' - checkLatest: true - displayName: Select Node 22 LTS - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.9' # note Install Python dependencies step below relies on Python 3.9 - addToPath: true - architecture: 'x64' - displayName: Select Python version - - - script: npm ci - displayName: Install NPM dependencies - - - script: python -m pip install -U pip - displayName: Upgrade pip - - - script: python -m pip install wheel - displayName: Install wheel - - - script: python -m pip install nox - displayName: Install nox - - - script: python -m nox --session install_bundled_libs - displayName: Install Python dependencies - - - script: python ./build/update_ext_version.py --release --for-publishing - displayName: Update build number - - - script: npm run vsce-package - displayName: Build VSIX - - - template: build/templates/sign.yml@self - parameters: - vsixName: $(VsixName) - workingDirectory: $(Build.StagingDirectory)\drop - signType: real - verifySignature: true - - - ${{ if eq(parameters.publishExtension, true) }}: - - template: build/templates/publish.yml@self - parameters: - azureSubscription: PylancePublishPipelineSecureConnectionWithManagedIdentity - vsixName: $(VsixName) - manifestName: extension.manifest - signatureName: extension.signature.p7s - publishFolder: drop - preRelease: false diff --git a/build/templates/publish.yml b/build/templates/publish.yml deleted file mode 100644 index 41672f3e..00000000 --- a/build/templates/publish.yml +++ /dev/null @@ -1,118 +0,0 @@ -# Template (steps): PublishMarketplace for autopep8 extension -# Expects working directory already populated (or artifact previously downloaded) with: autopep8.vsix, extension.manifest, extension.signature.p7s -# Provides optional prerelease publishing via parameter. -# -# Usage (example inside a stage job): -# steps: -# - template: build/templates/publish.yml@self -# parameters: -# azureSubscription: Autopep8PublishServiceConnection -# artifactName: drop -# vsixName: autopep8.vsix -# manifestName: extension.manifest -# signatureName: extension.signature.p7s -# publishFolder: vscode-autopep8 -# preRelease: true -# noVerify: true -# -# Notes: -# - Azure DevOps Marketplace resource GUID (499b84ac-1321-427f-aa17-267ca6975798) is hardcoded in publish script. -# - This uses Managed Identity via AzureCLI@2 to acquire an AAD token and passes it as a PAT. -# - Requires extension artifacts already signed (signature file present). -# - Node & vsce expected to be prepared by parent pipeline; omit local installation here. - -parameters: - - name: azureSubscription - type: string - - name: vsixName - type: string - default: autopep8.vsix - - name: manifestName - type: string - default: extension.manifest - - name: signatureName - type: string - default: extension.signature.p7s - - name: publishFolder - type: string - default: vscode-autopep8 - - name: preRelease - type: boolean - default: false - - name: noVerify - type: boolean - default: true - -steps: - # Node & vsce expected to be prepared by parent pipeline; omit local installation. - - # Assumes files already present at $(Build.ArtifactStagingDirectory)/publishFolder - - # Step 1: Acquire token only (store secret variable MarketplaceAADToken) - - task: AzureCLI@2 - displayName: Acquire Marketplace AAD token - inputs: - azureSubscription: ${{ parameters.azureSubscription }} - scriptType: pscore - scriptLocation: inlineScript - inlineScript: | - $resource = "499b84ac-1321-427f-aa17-267ca6975798" - Write-Host "Acquiring AAD token for resource: $resource" - az rest -u https://app.vssps.visualstudio.com/_apis/profile/profiles/me --resource $resource | Out-Null - $aadToken = az account get-access-token --query accessToken --resource $resource -o tsv - if (-not $aadToken) { Write-Error 'Failed to acquire AAD token.'; exit 1 } - Write-Host "##vso[task.setvariable variable=MarketplaceAADToken;isSecret=true]$aadToken" - Write-Host "Token stored in secret variable MarketplaceAADToken" - - # Step 2: Validate artifacts & publish - - task: PowerShell@2 - displayName: Publish extension (vsce) - inputs: - targetType: inline - script: | - $aadToken = "$(MarketplaceAADToken)" - if (-not $aadToken) { Write-Error 'MarketplaceAADToken is empty (token acquisition failed).'; exit 1 } - - $root = "$(Build.ArtifactStagingDirectory)/${{ parameters.publishFolder }}" - $vsixPath = Join-Path $root "${{ parameters.vsixName }}" - $manifestPath = Join-Path $root "${{ parameters.manifestName }}" - $signaturePath = Join-Path $root "${{ parameters.signatureName }}" - - Write-Host "VSIX Path: $vsixPath" - Write-Host "Manifest Path: $manifestPath" - Write-Host "Signature Path: $signaturePath" - - if (-not (Test-Path $vsixPath)) { Write-Error "VSIX file not found: $vsixPath"; exit 1 } - if (-not (Test-Path $manifestPath)) { Write-Error "Manifest file not found: $manifestPath"; exit 1 } - if (-not (Test-Path $signaturePath)) { Write-Error "Signature file not found: $signaturePath"; exit 1 } - - Write-Host "Listing publish folder contents: $root" - Get-ChildItem -Recurse $root | Select-Object FullName,Length | Format-Table -AutoSize - - $extraFlags = '' - if ('${{ parameters.noVerify }}' -eq 'True') { $extraFlags = "$extraFlags --noVerify" } - - if ('${{ parameters.preRelease }}' -eq 'True') { - Write-Host 'Publishing as pre-release' - # disabled for now; uncomment when ready - npx vsce publish --pat $aadToken --packagePath $vsixPath --manifestPath $manifestPath --signaturePath $signaturePath $extraFlags --pre-release - } else { - Write-Host 'Publishing as stable release' - # disabled for now; uncomment when ready - npx vsce publish --pat $aadToken --packagePath $vsixPath --manifestPath $manifestPath --signaturePath $signaturePath $extraFlags - } - - if ($LASTEXITCODE -ne 0) { - Write-Error "vsce publish failed with exit code $LASTEXITCODE" - exit $LASTEXITCODE - } - Write-Host 'Publish step completed (publish command currently disabled).' - - - task: PowerShell@2 - displayName: Post-publish summary - inputs: - targetType: inline - script: | - Write-Host 'Published extension artifacts:' - Get-ChildItem "$(Build.ArtifactStagingDirectory)/${{ parameters.publishFolder }}" -File | Select-Object Name,Length | Format-Table -AutoSize - Write-Host "Pre-release parameter: ${{ parameters.preRelease }}" diff --git a/build/templates/sign.yml b/build/templates/sign.yml deleted file mode 100644 index 9122f3c1..00000000 --- a/build/templates/sign.yml +++ /dev/null @@ -1,141 +0,0 @@ -# Template: Sign and validate VS Code extension artifacts -# Usage Example: -# - template: build/templates/sign.yml@self -# parameters: -# vsixName: autopep8.vsix -# workingDirectory: $(Build.SourcesDirectory) -# signType: real -# Note: vsce CLI is invoked via 'npx vsce' (devDependency), no global install required. - -parameters: - - name: vsixName - type: string - default: autopep8.vsix - - name: manifestName - type: string - default: extension.manifest - - name: signatureName - type: string - default: extension.signature.p7s - - name: workingDirectory - type: string - default: '$(Build.SourcesDirectory)' - - name: signType - type: string - default: real - - name: verifySignature - type: boolean - default: true - - name: prepareRoot - type: boolean - default: true - # vsceVersion parameter removed; rely on pinned devDependency version via npx. - -steps: - # vsce CLI expected to be installed by parent pipeline; no local install here. - - - task: NuGetToolInstaller@1 - displayName: Install NuGet - - - task: NuGetCommand@2 - displayName: Restore signing packages - inputs: - command: restore - restoreSolution: '$(Build.SourcesDirectory)/packages.config' - restoreDirectory: '$(Build.SourcesDirectory)/packages' - - - powershell: | - New-Item -ItemType Directory -Path "$(Build.StagingDirectory)\drop" -Force | Out-Null; Copy-Item "$(Build.SourcesDirectory)\$(VsixName)" "$(Build.StagingDirectory)\drop\$(VsixName)" -Force; if (!(Test-Path "$(Build.StagingDirectory)\drop\$(VsixName)")) { Write-Error 'VSIX copy failed'; exit 1 }; Get-Item "$(Build.StagingDirectory)\drop\$(VsixName)" | Format-Table Name,Length,LastWriteTime -AutoSize - displayName: Copy VSIX into drop - - - script: npx vsce generate-manifest -i "$(Build.StagingDirectory)\drop\$(VsixName)" -o "$(Build.StagingDirectory)\drop\extension.manifest" - displayName: Generate extension manifest - - - task: PowerShell@2 - displayName: Pre-sign inspection - inputs: - targetType: inline - script: | - $wd = "${{ parameters.workingDirectory }}" - $vsixName = "${{ parameters.vsixName }}" - $manifestName = "${{ parameters.manifestName }}" - $signatureName = "${{ parameters.signatureName }}" - Write-Host "Pre-sign contents of working directory: $wd" - Get-ChildItem -Recurse $wd | Select-Object FullName,Length | Format-Table -AutoSize - $vsix = Join-Path $wd $vsixName - if (!(Test-Path $vsix)) { Write-Error "VSIX missing: $vsix"; exit 1 } - $manifest = Join-Path $wd $manifestName - if (!(Test-Path $manifest)) { Write-Error "Manifest missing: $manifest"; exit 1 } - $sig = Join-Path $wd $signatureName - if (!(Test-Path $sig)) { Write-Warning "Signature placeholder missing (will attempt signing anyway)." } - - # Deprecated prepareRoot step removed: we now sign directly in workingDirectory by overriding BaseOutputDirectory. - - - task: MSBuild@1 - displayName: Run signing (MSBuild) - inputs: - solution: '$(Build.SourcesDirectory)/build/sign.proj' - msbuildArguments: '/verbosity:detailed /bl:"${{ parameters.workingDirectory }}\\signing.binlog" /p:SignType=${{ parameters.signType }} /p:BaseOutputDirectory=${{ parameters.workingDirectory }} /p:OutDir=${{ parameters.workingDirectory }} /p:IntermediateOutputPath=${{ parameters.workingDirectory }}\\intermediate' - - # No copy-back needed; signing outputs now land directly in workingDirectory. - - - task: PowerShell@2 - displayName: Post-sign inspection - inputs: - targetType: inline - script: | - $wd = "${{ parameters.workingDirectory }}" - $signatureName = "${{ parameters.signatureName }}" - Write-Host "Post-sign file listing:" - Get-ChildItem $wd -File | Select-Object Name,Length | Format-Table -AutoSize - $sig = Join-Path $wd $signatureName - if (Test-Path $sig) { - Write-Host "Signature file present: $sig" - } else { - Write-Warning "Signature file NOT present after signing step."; exit 0 - } - - - task: PowerShell@2 - displayName: Validate signature differs from manifest (hash check) - inputs: - targetType: inline - script: | - $wd = "${{ parameters.workingDirectory }}" - $manifest = Join-Path $wd "${{ parameters.manifestName }}" - $signature = Join-Path $wd "${{ parameters.signatureName }}" - if (!(Test-Path $manifest)) { Write-Error "Manifest missing for hash comparison: $manifest"; exit 1 } - if (!(Test-Path $signature)) { Write-Error "Signature missing for hash comparison: $signature"; exit 1 } - $manifestHash = (Get-FileHash -Algorithm SHA256 $manifest).Hash - $signatureHash = (Get-FileHash -Algorithm SHA256 $signature).Hash - Write-Host "Manifest SHA256 : $manifestHash" - Write-Host "Signature SHA256: $signatureHash" - if ($manifestHash -eq $signatureHash) { - Write-Error "Signature file is identical to manifest (placeholder detected). Failing build."; exit 1 - } else { - Write-Host "Hashes differ ✅ (signature not a direct copy of manifest)" - } - - - ${{ if eq(parameters.verifySignature, true) }}: - - task: PowerShell@2 - displayName: Verify VSIX signature - inputs: - targetType: inline - script: | - $wd = "${{ parameters.workingDirectory }}" - $vsix = Join-Path $wd "${{ parameters.vsixName }}" - $manifest = Join-Path $wd "${{ parameters.manifestName }}" - $signature = Join-Path $wd "${{ parameters.signatureName }}" - Write-Host "Verifying signature:" - Write-Host " packagePath : $vsix" - Write-Host " manifestPath : $manifest" - Write-Host " signaturePath: $signature" - if (!(Test-Path $vsix)) { Write-Error "Missing VSIX: $vsix"; exit 1 } - if (!(Test-Path $manifest)) { Write-Error "Missing manifest: $manifest"; exit 1 } - if (!(Test-Path $signature)) { Write-Error "Missing signature file: $signature"; exit 1 } - npx vsce verify-signature --packagePath "$vsix" --manifestPath "$manifest" --signaturePath "$signature" - if ($LASTEXITCODE -ne 0) { - Write-Error "vsce verify-signature failed with exit code $LASTEXITCODE" - exit $LASTEXITCODE - } else { - Write-Host "vsce verify-signature succeeded ✅" - } diff --git a/l10n/bundle.l10n.cs.json b/l10n/bundle.l10n.cs.json deleted file mode 100644 index 1d912032..00000000 --- a/l10n/bundle.l10n.cs.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Připojit k místnímu procesu","Attach to a remote debug server":"Připojit ke vzdálenému ladicímu serveru","Attach to process":"Připojit k procesu","Attach using Process ID":"Připojit přes ID procesu","Browse Files...":"Procházet soubory...","Browse your file system to find a Python file.":"Vyhledejte soubor Pythonu procházením systému souborů.","Change Python Interpreter":"Změnit interpret Pythonu","Command Line Arguments":"Argumenty příkazového řádku","Debug Configuration":"Ladit konfiguraci","Debug Django":"Ladění Django","Debug FastAPI":"Ladit FastAPI","Debug Flask":"Ladit Flask","Debug Module":"Ladící modul","Debug Pyramid":"Ladit Pyramid","Debug Stopped":"Ladění zastaveno","Debug a Python module by invoking it with '-m'":"Ladit modul Python jeho vyvoláním přes '-m'","Debug the currently active Python file":"Ladit aktuálně aktivní soubor Python","Debug the currently active Python file with arguments":"Ladění aktuálně aktivního souboru Pythonu s argumenty","Django":"Django","Do not show again":"Už nezobrazovat","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Povolí použití [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, na terminálu.","Enter a Python module/package name":"Zadejte název modulu/balíčku Python","Enter a valid file path":"Zadejte platnou cestu k souboru","Enter a valid host name or IP address":"Zadejte platný název hostitele nebo IP adresu.","Enter a valid module name":"Zadejte platný název modulu","Enter a valid name":"Vložte platné jméno.","Enter a valid port number":"Zadejte platné číslo portu","Enter the command line arguments you want to pass to the program":"Zadejte argumenty příkazového řádku, které chcete programu předat.","Enter the path to app.py or select a file from the list.":"Zadejte cestu k app.py nebo vyberte soubor ze seznamu.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Zadejte cestu k development.ini ({0} odkazuje na kořen aktuální složky pracovního prostoru).","Enter the path to manage.py or select a file from the list.":"Zadejte cestu k manage.py nebo vyberte soubor ze seznamu.","Enter the path to the application, e.g. 'main.py' or 'main'":"Zadejte cestu k aplikaci, např. main.py nebo main","Enter the port number that the debug server is listening on":"Zadejte číslo portu, ve kterém naslouchá ladící server","Failed to launch debugger for child process {0}":"Spouštění ladicího programu pro podřízený proces {0} se nezdařilo","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Spustit a ladit webovou aplikaci Django","Launch and debug a FastAPI web application":"Spustit a ladit webovou aplikaci FastAPI","Launch and debug a Flask web application":"Spustit a ladit webovou aplikaci Flask","Launch and debug a Pyramid web application":"Spustit a ladit webovou aplikaci Pyramid","Module":"Modul","More Info":"Další informace","No process selected":"Nevybral se žádný proces.","No, I will do it later":"Ano, chci upozornit","Open launch.json":"Otevřít soubor launch.json","Operating system '{0}' not supported.":"Operační systém {0} se nepodporuje.","Pyramid":"Pyramida","Python Debugger":"Ladicí program Pythonu","Python Debugger extension loading...":"Načítá se rozšíření Ladicího programu Python...","Python Debugger: Attach using Process Id":"Ladicí program Pythonu: Připojit přes ID procesu","Python Debugger: Current File":"Ladicí program Pythonu: Aktuální soubor","Python Debugger: Current File with Arguments":"Ladicí program Pythonu: Aktuální soubor s argumenty","Python Debugger: Django":"Ladicí program Pythonu: Django","Python Debugger: FastAPI":"Ladicí program Pythonu: FastAPI","Python Debugger: Flask":"Ladicí program Pythonu: Flask","Python Debugger: Module":"Ladicí program Pythonu: Modul","Python Debugger: Pyramid Application":"Ladicí program Pythonu: Aplikace Pyramid","Python Debugger: Remote Attach":"Ladicí program Pythonu: Vzdálené připojení","Python File":"Soubor Python","Python File with Arguments":"Soubor Pythonu s argumenty","Refresh process list":"Aktualizovat seznam procesů","Remote Attach":"Vzdálené připojení","Remote Debugging":"Vzdálené ladění","Select File":"Vybrat soubor","Select Python File":"Vybrat soubor Pythonu","Select Python Interpreter":"Vybrat interpret Pythonu","Select a Python Debugger debug configuration":"Vyberte konfiguraci ladění pro ladicí program Pythonu","Select a debug configuration":"Vyberte konfiguraci ladění","Select the process to attach to":"Vyberte proces, ke kterému se má program připojit.","Show as Hex":"Zobrazit jako šestnáctkovou hodnotu","The minimum supported Python version for the debugger extension is 3.9.":"Minimální podporovaná verze Pythonu pro rozšíření ladicího programu je 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Všimli jsme si, že se připojujete k ptvsd (ladicí program Python), který je od 1. května 2020 zastaralý. Přejděte prosím na [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Než spustíte ladění, musíte vybrat interpret Pythonu.\n\nTip: Klikněte na „Vybrat interpret“ ve stavovém řádku.","cwd:":"cwd:","enter-your-module-name":"zadejte-svůj-název-modulu"} diff --git a/l10n/bundle.l10n.de.json b/l10n/bundle.l10n.de.json deleted file mode 100644 index ed0fd8b6..00000000 --- a/l10n/bundle.l10n.de.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"An einen lokalen Prozess anhängen","Attach to a remote debug server":"An einen Remote-Debug-Server anhängen","Attach to process":"An Prozess anhängen","Attach using Process ID":"Mit Prozess-ID anhängen","Browse Files...":"Dateien durchsuchen...","Browse your file system to find a Python file.":"Durchsuchen Sie Ihr Dateisystem nach einer Python-Datei.","Change Python Interpreter":"Python-Interpreter ändern","Command Line Arguments":"Befehlszeilenargumente","Debug Configuration":"Konfiguration debuggen","Debug Django":"Django debuggen","Debug FastAPI":"FastAPI debuggen","Debug Flask":"Flask debuggen","Debug Module":"Debuggen-Modul","Debug Pyramid":"Pyramide debuggen","Debug Stopped":"Debuggen beendet","Debug a Python module by invoking it with '-m'":"Debuggen Sie ein Python-Modul, indem Sie es mit „-m“ aufrufen.","Debug the currently active Python file":"Debuggen Sie die derzeit aktive Python-Datei","Debug the currently active Python file with arguments":"Debuggen Sie die derzeit aktive Python-Datei mit Argumenten.","Django":"Django","Do not show again":"Nicht mehr anzeigen","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Aktiviert die Verwendung von [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), \"debugpy \" im Terminal.","Enter a Python module/package name":"Geben Sie einen Python-Modul-/Paketnamen ein","Enter a valid file path":"Geben Sie einen gültigen Dateipfad ein","Enter a valid host name or IP address":"Geben Sie einen gültigen Hostnamen oder eine gültige IP-Adresse ein.","Enter a valid module name":"Geben Sie einen gültigen Modulnamen ein","Enter a valid name":"Geben Sie einen gültigen Namen ein","Enter a valid port number":"Geben Sie eine gültige Portnummer ein","Enter the command line arguments you want to pass to the program":"Geben Sie die Befehlszeilenargumente ein, die an das Programm übergeben werden.","Enter the path to app.py or select a file from the list.":"Geben Sie den Pfad zum app.py ein, oder wählen Sie eine Datei aus der Liste aus.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Geben Sie den Pfad zu development.ini ein ({0} zeigt auf das Stammverzeichnis des aktuellen Arbeitsbereichsordners)","Enter the path to manage.py or select a file from the list.":"Geben Sie den Pfad zum manage.py ein, oder wählen Sie eine Datei aus der Liste aus.","Enter the path to the application, e.g. 'main.py' or 'main'":"Geben Sie den Pfad zur Anwendung ein, z. 'main.py' oder 'main'","Enter the port number that the debug server is listening on":"Geben Sie die Portnummer ein, die der Debug-Server überwacht","Failed to launch debugger for child process {0}":"Fehler beim Starten des Debuggers für den untergeordneten Prozess {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Starten und debuggen Sie eine Django-Webanwendung","Launch and debug a FastAPI web application":"Starten und debuggen Sie eine FastAPI-Webanwendung","Launch and debug a Flask web application":"Starten und debuggen Sie eine Flask-Webanwendung","Launch and debug a Pyramid web application":"Starten und debuggen Sie eine Pyramid-Webanwendung","Module":"Modul","More Info":"Weitere Info","No process selected":"Kein Prozess ausgewählt","No, I will do it later":"Nein, mache ich später","Open launch.json":"launch.json öffnen","Operating system '{0}' not supported.":"Betriebssystem '{0}' wird nicht unterstützt.","Pyramid":"Pyramide","Python Debugger":"Python-Debugger","Python Debugger extension loading...":"Python-Debuggererweiterung wird geladen...","Python Debugger: Attach using Process Id":"Python-Debugger: Über Prozess-ID anfügen","Python Debugger: Current File":"Python-Debugger: Aktuelle Datei","Python Debugger: Current File with Arguments":"Python-Debugger: Aktuelle Datei mit Argumenten","Python Debugger: Django":"Python-Debugger: Django","Python Debugger: FastAPI":"Python-Debugger: FastAPI","Python Debugger: Flask":"Python-Debugger: Flask","Python Debugger: Module":"Python-Debugger: Modul","Python Debugger: Pyramid Application":"Python-Debugger: Pyramid-Anwendung","Python Debugger: Remote Attach":"Python-Debugger: Remoteanfügung","Python File":"Python-Datei","Python File with Arguments":"Python-Datei mit Argumenten","Refresh process list":"Prozessliste aktualisieren","Remote Attach":"Remoteanfügung","Remote Debugging":"Remotedebuggen","Select File":"Datei auswählen","Select Python File":"Python-Datei auswählen","Select Python Interpreter":"Python-Interpreter auswählen","Select a Python Debugger debug configuration":"Debugkonfiguration für Python-Debugger auswählen","Select a debug configuration":"Debugkonfiguration auswählen","Select the process to attach to":"Prozess auswählen, an den angefügt werden soll","Show as Hex":"Als Hex anzeigen","The minimum supported Python version for the debugger extension is 3.9.":"Die minimale unterstützte Python-Version für die Debuggererweiterung ist 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Wir haben festgestellt, dass Sie ptvsd (Python-Debugger) anhängen, das am 1. Mai 2020 veraltet ist. Bitte wechseln Sie zu [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Sie müssen einen Python-Interpreter auswählen, bevor Sie mit dem Debuggen beginnen.\n\nTipp: Klicken Sie in der Statusleiste auf „Interpreter auswählen“.","cwd:":"сwd:","enter-your-module-name":"Geben Sie Ihren Modulnamen ein"} diff --git a/l10n/bundle.l10n.es.json b/l10n/bundle.l10n.es.json deleted file mode 100644 index 90592111..00000000 --- a/l10n/bundle.l10n.es.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Asociar a un proceso emulador local","Attach to a remote debug server":"Asociar a un servidor de depuración remoto","Attach to process":"Asociar al proceso","Attach using Process ID":"Adjuntar mediante un id. de proceso","Browse Files...":"Examinar archivos...","Browse your file system to find a Python file.":"Examine el sistema de archivos para buscar un archivo de Python.","Change Python Interpreter":"Cambiar intérprete de Python","Command Line Arguments":"Argumentos de la línea de comandos","Debug Configuration":"Configuración de depuración","Debug Django":"Depurar Django","Debug FastAPI":"Depurar FastAPI","Debug Flask":"Depurar Flask","Debug Module":"Módulo de depuración","Debug Pyramid":"Depurar Pyramid","Debug Stopped":"Depuración detenida","Debug a Python module by invoking it with '-m'":"Depuración de un módulo de Python invocándolo con \\\"-m\\\"","Debug the currently active Python file":"Depurar el archivo de Python activo actualmente","Debug the currently active Python file with arguments":"Depurar el archivo de Python activo actualmente con argumentos","Django":"Django","Do not show again":"No volver a mostrar","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Habilita el uso de [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), 'debugpy ', en el terminal.","Enter a Python module/package name":"Escriba un nombre de módulo o paquete de Python","Enter a valid file path":"Escriba una ruta de acceso de archivo válida","Enter a valid host name or IP address":"Escribir un nombre o dirección IP de host válidos","Enter a valid module name":"Escriba un nombre de módulo válido","Enter a valid name":"Especifique un nombre válido","Enter a valid port number":"Escriba un número de puerto válido.","Enter the command line arguments you want to pass to the program":"Escriba los argumentos de la línea de comandos que desea pasar al programa","Enter the path to app.py or select a file from the list.":"Escriba la ruta de acceso a app.py o seleccione un archivo de la lista.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Escriba la ruta de acceso a development.ini ({0} apunta a la raíz de la carpeta del área de trabajo actual)","Enter the path to manage.py or select a file from the list.":"Escriba la ruta de acceso a manage.py o seleccione un archivo de la lista.","Enter the path to the application, e.g. 'main.py' or 'main'":"Escriba la ruta de acceso a la aplicación; por ejemplo, \\\"main.py\\\" o \\\"main\\\".","Enter the port number that the debug server is listening on":"Escriba el número de puerto en el que escucha el servidor de depuración.","Failed to launch debugger for child process {0}":"No se pudo iniciar el depurador para el {0} de procesos secundarios","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Inicio y depuración de una aplicación web Django","Launch and debug a FastAPI web application":"Iniciar y depurar una aplicación web FastAPI","Launch and debug a Flask web application":"Inicio y depuración de una aplicación web de Flask","Launch and debug a Pyramid web application":"Inicio y depuración de una aplicación web Pyramid","Module":"Módulo","More Info":"Más información","No process selected":"No se ha seleccionado ningún proceso","No, I will do it later":"No, lo haré más tarde","Open launch.json":"Abrir launch.json","Operating system '{0}' not supported.":"No se admite el sistema operativo \\\"{0}\\\".","Pyramid":"Pyramid","Python Debugger":"Depurador de Python","Python Debugger extension loading...":"Cargando la extensión del depurador de Python...","Python Debugger: Attach using Process Id":"Depurador de Python: Adjuntar mediante un id. de proceso","Python Debugger: Current File":"Depurador de Python: Archivo actual","Python Debugger: Current File with Arguments":"Depurador de Python: Archivo actual con argumentos","Python Debugger: Django":"Depurador de Python: Django","Python Debugger: FastAPI":"Depurador de Python: FastAPI","Python Debugger: Flask":"Depurador de Python: Flask","Python Debugger: Module":"Depurador de Python: Módulo","Python Debugger: Pyramid Application":"Depurador de Python: Aplicación Pyramid","Python Debugger: Remote Attach":"Depurador de Python: Conexión remota","Python File":"Archivo de Python","Python File with Arguments":"Archivo de Python con argumentos","Refresh process list":"Actualizar la lista de procesos","Remote Attach":"Conexión remota","Remote Debugging":"Depuración remota","Select File":"Seleccionar archivo","Select Python File":"Seleccionar archivo de Python","Select Python Interpreter":"Seleccionar un intérprete de Python","Select a Python Debugger debug configuration":"Seleccionar una configuración de depuración del depurador de Python","Select a debug configuration":"Seleccione una configuración de depuración","Select the process to attach to":"Seleccione el proceso al que debe asociarse","Show as Hex":"Mostrar como hexadecimal","The minimum supported Python version for the debugger extension is 3.9.":"La versión mínima admitida de Python para la extensión del depurador es la 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Hemos observado que está adjuntando a ptvsd (depurador de Python), que quedó en desuso el 1 de mayo de 2020. Cambie a [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Debe seleccionar un intérprete de Python antes de iniciar la depuración.\n\nSugerencia: haga clic en \"Seleccionar intérprete\" en la barra de estado.","cwd:":"cwd:","enter-your-module-name":"escriba-el-nombre-de-su-módulo"} diff --git a/l10n/bundle.l10n.fr.json b/l10n/bundle.l10n.fr.json deleted file mode 100644 index e89fbea8..00000000 --- a/l10n/bundle.l10n.fr.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Attacher à un processus local","Attach to a remote debug server":"Attacher à un serveur de débogage distant","Attach to process":"Attacher au processus","Attach using Process ID":"Attacher à l’aide de l’ID de processus","Browse Files...":"Parcourir les fichiers...","Browse your file system to find a Python file.":"Parcourez votre système de fichiers pour trouver un fichier Python.","Change Python Interpreter":"Modifier l’interpréteur Python","Command Line Arguments":"Arguments de la ligne de commande","Debug Configuration":"Configuration du débogage","Debug Django":"Déboguer l'application Django","Debug FastAPI":"Déboguer FastAPI","Debug Flask":"Déboguer Flask","Debug Module":"Déboguer le module","Debug Pyramid":"Déboguer Pyramid","Debug Stopped":"Débogage arrêté","Debug a Python module by invoking it with '-m'":"Déboguer un module Python en l’appelant avec '-m'","Debug the currently active Python file":"Déboguer le fichier Python actuellement actif","Debug the currently active Python file with arguments":"Déboguer le fichier Python actuellement actif avec des arguments","Django":"Django","Do not show again":"Ne plus afficher","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Permet d’activer l’utilisation du [débogage sans configuration](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, dans le terminal.","Enter a Python module/package name":"Entrer un nom de module/package Python","Enter a valid file path":"Entrez un chemin de fichier valide","Enter a valid host name or IP address":"Entrer un nom d’hôte ou une adresse IP valide","Enter a valid module name":"Entrez un nom de module valide","Enter a valid name":"Entrez un nom valide.","Enter a valid port number":"Entrez un numéro de port valide.","Enter the command line arguments you want to pass to the program":"Entrez les arguments de ligne de commande que vous souhaitez transmettre au programme","Enter the path to app.py or select a file from the list.":"Entrez le chemin d’accès à app.py ou sélectionnez un fichier dans la liste.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Entrez le chemin d’accès au fichier development.ini ({0} pointe vers la racine du dossier d’espace de travail actuel)","Enter the path to manage.py or select a file from the list.":"Entrez le chemin d’accès à manage.py ou sélectionnez un fichier dans la liste.","Enter the path to the application, e.g. 'main.py' or 'main'":"Entrez le chemin d’accès à l’application, par ex., « main.py » ou « main »","Enter the port number that the debug server is listening on":"Entrez le numéro de port sur lequel le serveur de débogage écoute","Failed to launch debugger for child process {0}":"Échec du lancement du débogueur pour le processus enfant {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Lancer et déboguer une application web Django","Launch and debug a FastAPI web application":"Lancer et déboguer une application web FastAPI","Launch and debug a Flask web application":"Lancer et déboguer une application web Flask","Launch and debug a Pyramid web application":"Lancer et déboguer une application web Pyramid","Module":"Module","More Info":"Informations supplémentaires","No process selected":"Aucun processus sélectionné","No, I will do it later":"Non, je le fais plus tard","Open launch.json":"Ouvrir launch.json","Operating system '{0}' not supported.":"Le système d’exploitation «{0}» n’est pas pris en charge.","Pyramid":"Pyramide","Python Debugger":"Débogueur Python","Python Debugger extension loading...":"Chargement de l’extension du débogueur Python...","Python Debugger: Attach using Process Id":"Débogueur Python : Joindre à l'aide de l'ID de processus","Python Debugger: Current File":"Débogueur Python : Fichier actuel","Python Debugger: Current File with Arguments":"Débogueur Python : Fichier actuel avec arguments","Python Debugger: Django":"Débogueur Python : Django","Python Debugger: FastAPI":"Débogueur Python : FastAPI","Python Debugger: Flask":"Débogueur Python : Flask","Python Debugger: Module":"Débogueur Python : Module","Python Debugger: Pyramid Application":"Débogueur Python : Application Pyramide","Python Debugger: Remote Attach":"Débogueur Python : Attachement à distance","Python File":"Fichier Python","Python File with Arguments":"Fichier Python avec arguments","Refresh process list":"Actualiser la liste des processus","Remote Attach":"Attachement distant","Remote Debugging":"Débogage distant","Select File":"Sélectionner un fichier","Select Python File":"Sélectionner un fichier Python","Select Python Interpreter":"Sélectionner l’interpréteur Python","Select a Python Debugger debug configuration":"Sélectionnez une configuration de débogage du débogueur Python","Select a debug configuration":"Sélectionnez une configuration de débogage","Select the process to attach to":"Sélectionner le processus à attacher","Show as Hex":"Afficher en tant que hexadécimal","The minimum supported Python version for the debugger extension is 3.9.":"La version minimale prise en charge par Python pour l’extension du débogueur est la 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Nous avons remarqué que vous vous attachiez à ptvsd (débogueur Python), qui a été déprécié le 1er mai 2020. Basculez vers [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Vous devez sélectionner un interpréteur Python avant de commencer le débogage. \n\nConseil : cliquez sur « Sélectionner un Interpréteur » dans la barre d’état.","cwd:":"cwd :","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.it.json b/l10n/bundle.l10n.it.json deleted file mode 100644 index 01d9e925..00000000 --- a/l10n/bundle.l10n.it.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Consente il collegamento a un processo locale","Attach to a remote debug server":"Consente il collegamento a un server di debug remoto","Attach to process":"Collega a processo","Attach using Process ID":"Collegare tramite ID processo","Browse Files...":"Sfoglia file...","Browse your file system to find a Python file.":"Esplora il file system per individuare un file Python.","Change Python Interpreter":"Modifica interprete Python","Command Line Arguments":"Argomenti della riga di comando","Debug Configuration":"Configurazione di debug","Debug Django":"Eseguire il debug di Django","Debug FastAPI":"Eseguire il debug di FastAPI","Debug Flask":"Esegui il debug di Flask","Debug Module":"Modulo di debug","Debug Pyramid":"Esegui il debug di Pyramid","Debug Stopped":"Debug interrotto","Debug a Python module by invoking it with '-m'":"Eseguire il debug di un modulo Python richiamandolo con '-m'","Debug the currently active Python file":"Eseguire il debug del file Python attivo al momento","Debug the currently active Python file with arguments":"Esegui il debug del file Python attualmente attivo con argomenti","Django":"Django","Do not show again":"Non visualizzare più","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Abilita l'uso di [debug senza configurazione](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), 'debugpy ' nel terminale.","Enter a Python module/package name":"Immettere un nome del modulo/pacchetto Python","Enter a valid file path":"Immettere un percorso di file valido","Enter a valid host name or IP address":"Immettere un nome host o un indirizzo IP valido","Enter a valid module name":"Immettere un nome del modulo valido","Enter a valid name":"Immettere un nome valido.","Enter a valid port number":"Immettere un numero di porta valido","Enter the command line arguments you want to pass to the program":"Immettere gli argomenti della riga di comando da passare al programma","Enter the path to app.py or select a file from the list.":"Immettere il percorso ad app.py o selezionare un file dall'elenco.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"`Immettere il percorso di development.ini ({0} punta alla radice della cartella dell'area di lavoro corrente)","Enter the path to manage.py or select a file from the list.":"Immettere il percorso a manage.py o selezionare un file dall'elenco.","Enter the path to the application, e.g. 'main.py' or 'main'":"Immettere il percorso dell'applicazione, ad esempio 'main.py' o 'main'","Enter the port number that the debug server is listening on":"Immettere il numero di porta di cui il server di debug è in ascolto","Failed to launch debugger for child process {0}":"Non è stato possibile avviare il debugger per il processo figlio {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Avviare ed eseguire il debug di un'applicazione Web Django","Launch and debug a FastAPI web application":"Avviare ed eseguire il debug di un'applicazione Web FastAPI","Launch and debug a Flask web application":"Avviare ed eseguire il debug di un'applicazione Web Flask","Launch and debug a Pyramid web application":"Avviare ed eseguire il debug di un'applicazione Web Pyramid","Module":"Modulo","More Info":"Altre informazioni","No process selected":"Non è stato selezionato alcun processo","No, I will do it later":"No, lo farò in seguito","Open launch.json":"Apri launch.json","Operating system '{0}' not supported.":"Il sistema operativo '{0}' non è supportato.","Pyramid":"Pyramid","Python Debugger":"Debugger Python","Python Debugger extension loading...":"Caricamento dell'estensione del debugger Python in corso...","Python Debugger: Attach using Process Id":"Debugger Python: Collegare tramite ID processo","Python Debugger: Current File":"Debugger Python: File corrente","Python Debugger: Current File with Arguments":"Debugger Python: File corrente con argomenti","Python Debugger: Django":"Debugger Python: Django","Python Debugger: FastAPI":"Debugger Python: FastAPI","Python Debugger: Flask":"Debugger Python: Flask","Python Debugger: Module":"Debugger Python: Modulo","Python Debugger: Pyramid Application":"Debugger Python: Applicazione Pyramid","Python Debugger: Remote Attach":"Debugger Python: Collegamento remoto","Python File":"File Python","Python File with Arguments":"File Python con argomenti","Refresh process list":"Aggiornare l'elenco dei processi","Remote Attach":"Collegamento remoto","Remote Debugging":"Debug remoto","Select File":"Seleziona file","Select Python File":"Seleziona file Python","Select Python Interpreter":"È possibile selezionare l'interprete Python","Select a Python Debugger debug configuration":"Selezionare una configurazione di debug per il debugger Python","Select a debug configuration":"Selezionare una configurazione di debug","Select the process to attach to":"Selezionare il processo a cui collegarsi","Show as Hex":"Mostra come valore esadecimale","The minimum supported Python version for the debugger extension is 3.9.":"La versione minima supportata di Python per l'estensione del debugger è la 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Abbiamo rilevato che si sta tentando il collegamento a ptvsd (debugger Python) che è stato deprecato il 1° maggio 2020. È consigliabile passare a [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"È necessario selezionare un interprete Python prima di avviare il debug.\n\nSuggerimento: fai clic su \"Seleziona interprete Python\" nella barra di stato.","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.ja.json b/l10n/bundle.l10n.ja.json deleted file mode 100644 index 1c57c5e2..00000000 --- a/l10n/bundle.l10n.ja.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"ローカル プロセスに接続する","Attach to a remote debug server":"リモート デバッグ サーバーに接続する","Attach to process":"プロセスに接続","Attach using Process ID":"プロセス ID を使用して接続する","Browse Files...":"ファイルの参照...","Browse your file system to find a Python file.":"ファイル システムを参照して Python ファイルを検索します。","Change Python Interpreter":"Python インタープリターの変更","Command Line Arguments":"コマンド ライン引数","Debug Configuration":"デバッグ構成","Debug Django":"Django をデバッグする","Debug FastAPI":"FastAPI をデバッグする","Debug Flask":"Flask をデバッグする","Debug Module":"モジュールをデバッグする","Debug Pyramid":"ピラミッドをデバッグ","Debug Stopped":"デバッグが停止しました","Debug a Python module by invoking it with '-m'":"Python モジュールを '-m' で呼び出してデバッグする","Debug the currently active Python file":"現在アクティブな Python ファイルをデバッグする","Debug the currently active Python file with arguments":"現在アクティブな引数を含む Python ファイルをデバッグします","Django":"Django","Do not show again":"今後表示しない","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"ターミナルで [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), 'debugpy ' の使用を有効にします。","Enter a Python module/package name":"Python モジュール/パッケージ名を入力する","Enter a valid file path":"有効なファイル パスを入力する","Enter a valid host name or IP address":"有効なホスト名または IP アドレスを入力する","Enter a valid module name":"有効なモジュール名を入力する","Enter a valid name":"有効な名前を入力してください。","Enter a valid port number":"有効なポート番号を入力してください。","Enter the command line arguments you want to pass to the program":"プログラムに渡すコマンド ライン引数を入力します","Enter the path to app.py or select a file from the list.":"app.py へのパスを入力するか、一覧からファイルを選択します。","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"development.ini へのパスを入力します ({0} は現在のワークスペース フォルダーのルートを指しています)","Enter the path to manage.py or select a file from the list.":"manage.py へのパスを入力するか、一覧からファイルを選択します。","Enter the path to the application, e.g. 'main.py' or 'main'":"アプリケーションへのパスを入力する (例: 'main.py'、'main')","Enter the port number that the debug server is listening on":"デバッグ サーバーがリッスンしているポート番号を入力する","Failed to launch debugger for child process {0}":"子プロセス {0} のデバッガーを起動できませんでした","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Django Web アプリケーションの起動とデバッグ","Launch and debug a FastAPI web application":"FastAPI Web アプリケーションの起動とデバッグ","Launch and debug a Flask web application":"Flask Web アプリケーションの起動とデバッグ","Launch and debug a Pyramid web application":"Pyramid Web アプリケーションの起動とデバッグ","Module":"モジュール","More Info":"詳細情報","No process selected":"プロセスが選択されていません","No, I will do it later":"いいえ。後で行います。","Open launch.json":"launch.json を開く","Operating system '{0}' not supported.":"オペレーティング システム '{0}' はサポートされていません。","Pyramid":"ピラミッド","Python Debugger":"Python デバッガー","Python Debugger extension loading...":"Python デバッガー拡張機能の読み込み中...","Python Debugger: Attach using Process Id":"Python デバッガー: プロセス ID を使用してアタッチする","Python Debugger: Current File":"Python デバッガー: 現在のファイル","Python Debugger: Current File with Arguments":"Python デバッガー: 引数を含む現在のファイル","Python Debugger: Django":"Python デバッガー: Django","Python Debugger: FastAPI":"Python デバッガー: FastAPI","Python Debugger: Flask":"Python デバッガー: Flask","Python Debugger: Module":"Python デバッガー: モジュール","Python Debugger: Pyramid Application":"Python デバッガー: ピラミッド アプリケーション","Python Debugger: Remote Attach":"Python デバッガー: リモートアタッチ","Python File":"Python ファイル","Python File with Arguments":"引数を含む Python ファイル","Refresh process list":"プロセスの一覧の更新","Remote Attach":"リモート接続","Remote Debugging":"リモート デバッグ","Select File":"ファイルの選択","Select Python File":"Python ファイルの選択","Select Python Interpreter":"Python インタープリターの選択","Select a Python Debugger debug configuration":"Python デバッグ構成を選択する","Select a debug configuration":"デバッグ構成を選択する","Select the process to attach to":"アタッチするプロセスを選択する","Show as Hex":"16 進数で表示","The minimum supported Python version for the debugger extension is 3.9.":"デバッガー拡張機能でサポートされている Python の最小バージョンは 3.9 です。","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"2020 年 5 月 1 日に非推奨となった ptvsd (Python デバッガー) に接続されていることをお知らせします。[debugpy](https://aka.ms/migrateToDebugpy) に切り替えてください。","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"デバッグを開始する前に Python インタープリターを選択する必要があります。\n\nヒント: ステータス バーの [インタープリターの選択] をクリックします。","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.ko.json b/l10n/bundle.l10n.ko.json deleted file mode 100644 index 835df7d9..00000000 --- a/l10n/bundle.l10n.ko.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"로컬 프로세스에 연결","Attach to a remote debug server":"원격 디버그 서버에 연결","Attach to process":"프로세스에 연결","Attach using Process ID":"프로세스 ID를 사용하여 연결","Browse Files...":"파일 찾아보기...","Browse your file system to find a Python file.":"파일 시스템을 찾아 Python 파일을 찾습니다.","Change Python Interpreter":"Python 인터프리터 변경","Command Line Arguments":"명령줄 인수","Debug Configuration":"디버그 구성","Debug Django":"Django 디버그","Debug FastAPI":"FastAPI 디버그","Debug Flask":"Flask 디버그","Debug Module":"디버그 모듈","Debug Pyramid":"Pyramid 디버그","Debug Stopped":"디버그 중지됨","Debug a Python module by invoking it with '-m'":"'-m'을 사용하여 Python 모듈을 호출하여 디버그","Debug the currently active Python file":"현재 활성 Python 파일 디버그","Debug the currently active Python file with arguments":"인수를 사용하는 현재 활성 Python 파일 디버그","Django":"Django","Do not show again":"다시 표시 안 함","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"터미널에서 [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), 'debugpy '을 사용하도록 설정합니다.","Enter a Python module/package name":"Python 모듈/패키지 이름 입력","Enter a valid file path":"올바른 파일 경로를 입력하세요.","Enter a valid host name or IP address":"올바른 호스트 이름 또는 IP 주소 입력","Enter a valid module name":"올바른 모듈 이름 입력","Enter a valid name":"올바른 이름을 입력하세요.","Enter a valid port number":"올바른 포트 번호를 입력하세요.","Enter the command line arguments you want to pass to the program":"프로그램에 전달하려는 명령줄 인수 입력","Enter the path to app.py or select a file from the list.":"app.py 경로를 입력하거나 목록에서 파일을 선택하세요.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"development.ini의 경로를 입력하세요({0}은(는) 현재 작업 영역 폴더의 루트를 가리킴)","Enter the path to manage.py or select a file from the list.":"manage.py 경로를 입력하거나 목록에서 파일을 선택하세요.","Enter the path to the application, e.g. 'main.py' or 'main'":"애플리케이션의 경로(예: 'main.py' 또는 'main')를 입력합니다.","Enter the port number that the debug server is listening on":"디버그 서버가 수신 대기 중인 포트 번호를 입력합니다.","Failed to launch debugger for child process {0}":"하위 프로세스 {0}에 대한 디버거를 시작하지 못했습니다.","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Django 웹 애플리케이션 시작 및 디버그","Launch and debug a FastAPI web application":"FastAPI 웹 애플리케이션 시작 및 디버그","Launch and debug a Flask web application":"Flask 웹 애플리케이션 시작 및 디버그","Launch and debug a Pyramid web application":"피라미드 웹 애플리케이션 시작 및 디버그","Module":"모듈","More Info":"추가 정보","No process selected":"선택한 프로세스가 없음","No, I will do it later":"아니요, 나중에 수행하겠습니다.","Open launch.json":"launch.json 열기","Operating system '{0}' not supported.":"운영 체제 '{0}'은(는) 지원되지 않습니다.","Pyramid":"피라미드형","Python Debugger":"Python 디버거","Python Debugger extension loading...":"Python 디버거 확장 로드 중...","Python Debugger: Attach using Process Id":"Python 디버거: 프로세스 ID를 사용하여 연결","Python Debugger: Current File":"Python 디버거: 현재 파일","Python Debugger: Current File with Arguments":"Python 디버거: 인수가 있는 현재 파일","Python Debugger: Django":"Python 디버거: Django","Python Debugger: FastAPI":"Python 디버거: FastAPI","Python Debugger: Flask":"Python 디버거: Flask","Python Debugger: Module":"Python 디버거: 모듈","Python Debugger: Pyramid Application":"Python 디버거: 피라미드형 애플리케이션","Python Debugger: Remote Attach":"Python 디버거: 원격 연결","Python File":"Python 파일","Python File with Arguments":"인수를 사용하는 Python 파일","Refresh process list":"프로세스 목록형 새로 고침","Remote Attach":"원격 연결","Remote Debugging":"원격 디버깅","Select File":"파일 선택","Select Python File":"Python 파일 선택","Select Python Interpreter":"Python 인터프리터 선택","Select a Python Debugger debug configuration":"Python 디버거 디버그 구성 선택","Select a debug configuration":"디버그 구성 선택","Select the process to attach to":"연결할 프로세스 선택","Show as Hex":"16진수로 표시","The minimum supported Python version for the debugger extension is 3.9.":"디버거 확장에 대한 최소 지원 Python 버전은 3.9입니다.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"2020년 5월 1일자로 더 이상 사용되지 않는 ptvsd(Python 디버거)에 연결하고 있는 것으로 나타났습니다. [debugpy](https://aka.ms/migrateToDebugpy)로 전환하세요.","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"디버깅을 시작하기 전에 Python 인터프리터를 선택해야 합니다.\n\n팁: 상태 표시줄에서 \"인터프리터 선택\"을 클릭하세요.","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.pl.json b/l10n/bundle.l10n.pl.json deleted file mode 100644 index 2a89fc28..00000000 --- a/l10n/bundle.l10n.pl.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Dołącz do procesu lokalnego","Attach to a remote debug server":"Dołączanie do zdalnego serwera debugowania","Attach to process":"Dołącz do procesu","Attach using Process ID":"Dołącz przy użyciu identyfikatora procesu","Browse Files...":"Przeglądaj pliki...","Browse your file system to find a Python file.":"Przeglądaj system plików, aby znaleźć plik w języku Python.","Change Python Interpreter":"Zmień interpreter języka Python","Command Line Arguments":"Argumenty wiersza polecenia","Debug Configuration":"Konfiguracja debugowania","Debug Django":"Debugowanie struktury Django","Debug FastAPI":"Debuguj FastAPI","Debug Flask":"Debuguj strukturę Flask","Debug Module":"Moduł debugowania","Debug Pyramid":"Debuguj aplikację Piramida","Debug Stopped":"Zatrzymano debugowanie","Debug a Python module by invoking it with '-m'":"Debugowanie modułu języka Python przez wywołanie go za pomocą polecenia „-m”","Debug the currently active Python file":"Debugowanie aktualnie aktywnego pliku języka Python","Debug the currently active Python file with arguments":"Debugowanie aktualnie aktywnego pliku języka Python z argumentami","Django":"Django","Do not show again":"Nie pokazuj ponownie","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Umożliwia korzystanie z [debugowania bez konfiguracji](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy ` w terminalu.","Enter a Python module/package name":"Wprowadź nazwę modułu/pakietu języka Python","Enter a valid file path":"Wprowadź prawidłową ścieżkę pliku","Enter a valid host name or IP address":"Wprowadź prawidłową nazwę hosta lub prawidłowy adres IP","Enter a valid module name":"Wprowadź prawidłową nazwę modułu","Enter a valid name":"Wprowadź prawidłową nazwę","Enter a valid port number":"Wprowadź prawidłowy numer portu","Enter the command line arguments you want to pass to the program":"Wprowadź argumenty wiersza polecenia, które chcesz przekazać do programu","Enter the path to app.py or select a file from the list.":"Wprowadź ścieżkę do app.py lub wybierz plik z listy.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Wprowadź ścieżkę do pliku development.ini ({0} wskazuje katalog główny bieżącego folderu obszaru roboczego)","Enter the path to manage.py or select a file from the list.":"Wprowadź ścieżkę do manage.py lub wybierz plik z listy.","Enter the path to the application, e.g. 'main.py' or 'main'":"Wprowadź ścieżkę do aplikacji, np. „main.py” lub „main”","Enter the port number that the debug server is listening on":"Wprowadź numer portu, na który nasłuchuje serwer debugowania","Failed to launch debugger for child process {0}":"Nie można uruchomić debugera dla procesu podrzędnego {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Uruchamianie i debugowanie aplikacji internetowej Django","Launch and debug a FastAPI web application":"Uruchamianie i debugowanie aplikacji internetowej FastAPI","Launch and debug a Flask web application":"Uruchom i debuguj aplikację internetową Flask","Launch and debug a Pyramid web application":"Uruchamianie i debugowanie aplikacji internetowej Pyramid","Module":"Moduł","More Info":"Więcej informacji","No process selected":"Nie wybrano żadnego procesu","No, I will do it later":"Nie, zrobię to później","Open launch.json":"Otwórz plik launch.json","Operating system '{0}' not supported.":"System operacyjny „{0}” nie jest obsługiwany.","Pyramid":"Piramida","Python Debugger":"Debuger języka Python","Python Debugger extension loading...":"Ładowanie rozszerzenia debuggera języka Python...","Python Debugger: Attach using Process Id":"Debuger języka Python: Dołącz przy użyciu identyfikatora procesu","Python Debugger: Current File":"Debuger języka Python: Current File","Python Debugger: Current File with Arguments":"Debuger języka Python: Debugpy: bieżący plik z argumentami","Python Debugger: Django":"Debuger języka Python: Django","Python Debugger: FastAPI":"Debuger języka Python: FastAPI","Python Debugger: Flask":"Debuger języka Python: Flask","Python Debugger: Module":"Debuger języka Python: Moduł","Python Debugger: Pyramid Application":"Debuger języka Python: Aplikacja Piramida","Python Debugger: Remote Attach":"Debuger języka Python: Dołączanie zdalne","Python File":"Plik języka Python","Python File with Arguments":"Plik języka Python z argumentami","Refresh process list":"Odśwież listę procesów","Remote Attach":"Dołączanie zdalne","Remote Debugging":"Debugowanie zdalne","Select File":"Wybierz plik","Select Python File":"Wybierz plik języka Python","Select Python Interpreter":"Wybierz interpreter języka Python","Select a Python Debugger debug configuration":"Wybierz konfigurację debugowania dla debugera języka Python","Select a debug configuration":"Wybierz konfigurację debugowania","Select the process to attach to":"Wybierz docelowy proces dołączania","Show as Hex":"Pokaż jako szesnastkowy","The minimum supported Python version for the debugger extension is 3.9.":"Minimalna wersja języka Python obsługiwana przez rozszerzenie debugera to 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Zauważyliśmy, że dołączasz do narzędzia ptvsd (debuger języka Python), który został wycofany 1 maja 2020 r. Przełącz się na [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Przed rozpoczęciem debugowania musisz wybrać interpreter języka Python.\n\nPorada: kliknij pozycję „Select Interpreter” (Wybierz interpreter) na pasku stanu.","cwd:":"Cwd:","enter-your-module-name":"wprowadź nazwę modułu"} diff --git a/l10n/bundle.l10n.pt-br.json b/l10n/bundle.l10n.pt-br.json deleted file mode 100644 index 6893bdd9..00000000 --- a/l10n/bundle.l10n.pt-br.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Anexar a um processo local","Attach to a remote debug server":"Anexar a um servidor de depuração remoto","Attach to process":"Anexar ao processo","Attach using Process ID":"Anexar usando a ID do Processo","Browse Files...":"Procurar arquivos...","Browse your file system to find a Python file.":"Navegue pelo sistema de arquivos para localizar um arquivo Python.","Change Python Interpreter":"Alterar o Interpretador Python","Command Line Arguments":"Argumentos de Linha de Comando","Debug Configuration":"Configuração da Depuração","Debug Django":"Depurar Django","Debug FastAPI":"Depurar FastAPI","Debug Flask":"Depurar Flask","Debug Module":"Módulo de Depuração","Debug Pyramid":"Depurar Pyramid","Debug Stopped":"Depuração Interrompida","Debug a Python module by invoking it with '-m'":"Depurar um módulo Python invocando-o com '-m'","Debug the currently active Python file":"Depurar o arquivo Python ativo no momento","Debug the currently active Python file with arguments":"Depurar o arquivo Python ativo no momento com argumentos","Django":"Django","Do not show again":"Não mostrar novamente","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Habilita o uso de [depuração sem configuração](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, no terminal.","Enter a Python module/package name":"Insira um nome para o módulo/pacote Python","Enter a valid file path":"Insira um caminho do arquivo válido.","Enter a valid host name or IP address":"Insira um nome de host válido ou endereço IP","Enter a valid module name":"Insira um nome de módulo válido","Enter a valid name":"Insira um nome válido.","Enter a valid port number":"Insira um número de porta válido.","Enter the command line arguments you want to pass to the program":"Insira os argumentos de linha de comando que você deseja passar para o programa","Enter the path to app.py or select a file from the list.":"Insira o caminho para app.py ou selecione um arquivo da lista.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Digite o caminho para development.ini ({0} aponta para a raiz da pasta do espaço de trabalho atual)","Enter the path to manage.py or select a file from the list.":"Insira o caminho para manage.py ou selecione um arquivo da lista.","Enter the path to the application, e.g. 'main.py' or 'main'":"Insira o caminho para o aplicativo, por exemplo, 'main.py' ou 'main'","Enter the port number that the debug server is listening on":"Insira o número da porta que o servidor de depuração está escutando","Failed to launch debugger for child process {0}":"Falha ao iniciar o depurador para o processo filho {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Iniciar e depurar um aplicativo Web Django","Launch and debug a FastAPI web application":"Iniciar e depurar um aplicativo Web FastAPI","Launch and debug a Flask web application":"Iniciar e depurar um aplicativo Web Flask","Launch and debug a Pyramid web application":"Iniciar e depurar um aplicativo Web Pyramid","Module":"Módulo","More Info":"Mais Informações","No process selected":"Nenhum processo selecionado","No, I will do it later":"Não, farei isso mais tarde","Open launch.json":"Abrir launch.json","Operating system '{0}' not supported.":"O sistema operacional '{0}' não é suportado.","Pyramid":"Pyramid","Python Debugger":"Depurador do Python","Python Debugger extension loading...":"Carregando a extensão do Depurador do Python...","Python Debugger: Attach using Process Id":"Depurador do Python: Anexar usando o ID do Processo","Python Debugger: Current File":"Depurador do Python: Arquivo Atual","Python Debugger: Current File with Arguments":"Depurador do Python: Arquivo atual com argumentos","Python Debugger: Django":"Depurador do Python: Django","Python Debugger: FastAPI":"Depurador do Python: FastAPI","Python Debugger: Flask":"Depurador do Python: Flask","Python Debugger: Module":"Depurador do Python: Módulo","Python Debugger: Pyramid Application":"Depurador do Python: Aplicativo Pyramid","Python Debugger: Remote Attach":"Depurador do Python: Anexação Remota","Python File":"Arquivo Python","Python File with Arguments":"Arquivo Python com Argumentos","Refresh process list":"Atualizar a lista de processos","Remote Attach":"Anexação Remota","Remote Debugging":"Depuração Remota","Select File":"Selecionar Arquivo","Select Python File":"Selecionar Arquivo Python","Select Python Interpreter":"Selecionar Interpretador do Python","Select a Python Debugger debug configuration":"Selecione uma configuração de depuração do Python Debugger","Select a debug configuration":"Selecionar uma configuração de depuração","Select the process to attach to":"Selecione o processo ao qual anexar","Show as Hex":"Mostrar como Hexadecimal","The minimum supported Python version for the debugger extension is 3.9.":"A versão mínima suportada do Python para a extensão do depurador é 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Notamos que você está anexando ao ptvsd (depurador do Python), que foi preterido em 1º de maio de 2020. Mude para [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Você precisa selecionar um interpretador Python antes de iniciar a depuração.\n\nDica: clique em “Selecionar Interpretador” na barra de status.","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.qps-ploc.json b/l10n/bundle.l10n.qps-ploc.json deleted file mode 100644 index ae0001bd..00000000 --- a/l10n/bundle.l10n.qps-ploc.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Ættæçh tø æ løçæl prøçëss","Attach to a remote debug server":"Ættæçh tø æ rëmøtë ðëþµg sërvër","Attach to process":"Ættæçh tø prøçëss","Attach using Process ID":"Ættæçh µsïñg Prøçëss ÏÐ","Browse Files...":"ßrøwsë Fïlës...","Browse your file system to find a Python file.":"ßrøwsë ÿøµr fïlë sÿstëm tø fïñð æ Pÿthøñ fïlë.","Change Python Interpreter":"Çhæñgë Pÿthøñ Ïñtërprëtër","Command Line Arguments":"Çømmæñð £ïñë Ærgµmëñts","Debug Configuration":"Ðëþµg Çøñfïgµrætïøñ","Debug Django":"Ðëþµg Ðjæñgø","Debug FastAPI":"Ðëþµg FæstÆPÏ","Debug Flask":"Ðëþµg Flæsk","Debug Module":"Ðëþµg Møðµlë","Debug Pyramid":"Ðëþµg Pÿræmïð","Debug Stopped":"Ðëþµg §tøppëð","Debug a Python module by invoking it with '-m'":"Ðëþµg æ Pÿthøñ møðµlë þÿ ïñvøkïñg ït wïth '-m'","Debug the currently active Python file":"Ðëþµg thë çµrrëñtlÿ æçtïvë Pÿthøñ fïlë","Debug the currently active Python file with arguments":"Ðëþµg thë çµrrëñtlÿ æçtïvë Pÿthøñ fïlë wïth ærgµmëñts","Django":"Ðjæñgø","Do not show again":"Ðø ñøt shøw ægæïñ","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Ëñæþlës µsë øf [ñø-çøñfïg ðëþµggïñg](https://gïthµþ.çøm/mïçrøsøft/vsçøðë-pÿthøñ-ðëþµggër/wïkï/Ñø%Ë2%80%90Çøñfïg-Ðëþµggïñg), `ðëþµgpÿ `, ïñ thë tërmïñæl.","Enter a Python module/package name":"Ëñtër æ Pÿthøñ møðµlë/pæçkægë ñæmë","Enter a valid file path":"Ëñtër æ vælïð fïlë pæth","Enter a valid host name or IP address":"Ëñtër æ vælïð høst ñæmë ør ÏP æððrëss","Enter a valid module name":"Ëñtër æ vælïð møðµlë ñæmë","Enter a valid name":"Ëñtër æ vælïð ñæmë","Enter a valid port number":"Ëñtër æ vælïð pørt ñµmþër","Enter the command line arguments you want to pass to the program":"Ëñtër thë çømmæñð lïñë ærgµmëñts ÿøµ wæñt tø pæss tø thë prøgræm","Enter the path to app.py or select a file from the list.":"Ëñtër thë pæth tø æpp.pÿ ør sëlëçt æ fïlë frøm thë lïst.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Ëñtër thë pæth tø ðëvëløpmëñt.ïñï ({0} pøïñts tø thë røøt øf thë çµrrëñt wørkspæçë følðër)","Enter the path to manage.py or select a file from the list.":"Ëñtër thë pæth tø mæñægë.pÿ ør sëlëçt æ fïlë frøm thë lïst.","Enter the path to the application, e.g. 'main.py' or 'main'":"Ëñtër thë pæth tø thë æpplïçætïøñ, ë.g. 'mæïñ.pÿ' ør 'mæïñ'","Enter the port number that the debug server is listening on":"Ëñtër thë pørt ñµmþër thæt thë ðëþµg sërvër ïs lïstëñïñg øñ","Failed to launch debugger for child process {0}":"Fæïlëð tø læµñçh ðëþµggër før çhïlð prøçëss {0}","FastAPI":"FæstÆPÏ","Flask":"Flæsk","Launch and debug a Django web application":"£æµñçh æñð ðëþµg æ Ðjæñgø wëþ æpplïçætïøñ","Launch and debug a FastAPI web application":"£æµñçh æñð ðëþµg æ FæstÆPÏ wëþ æpplïçætïøñ","Launch and debug a Flask web application":"£æµñçh æñð ðëþµg æ Flæsk wëþ æpplïçætïøñ","Launch and debug a Pyramid web application":"£æµñçh æñð ðëþµg æ Pÿræmïð wëþ æpplïçætïøñ","Module":"Møðµlë","More Info":"Mørë Ïñfø","No process selected":"Ñø prøçëss sëlëçtëð","No, I will do it later":"Ñø, Ï wïll ðø ït lætër","Open launch.json":"Øpëñ læµñçh.jsøñ","Operating system '{0}' not supported.":"Øpërætïñg sÿstëm '{0}' ñøt sµppørtëð.","Pyramid":"Pÿræmïð","Python Debugger":"Pÿthøñ Ðëþµggër","Python Debugger extension loading...":"Pÿthøñ Ðëþµggër ëxtëñsïøñ løæðïñg...","Python Debugger: Attach using Process Id":"Pÿthøñ Ðëþµggër: Ættæçh µsïñg Prøçëss Ïð","Python Debugger: Current File":"Pÿthøñ Ðëþµggër: ǵrrëñt Fïlë","Python Debugger: Current File with Arguments":"Pÿthøñ Ðëþµggër: ǵrrëñt Fïlë wïth Ærgµmëñts","Python Debugger: Django":"Pÿthøñ Ðëþµggër: Ðjæñgø","Python Debugger: FastAPI":"Pÿthøñ Ðëþµggër: FæstÆPÏ","Python Debugger: Flask":"Pÿthøñ Ðëþµggër: Flæsk","Python Debugger: Module":"Pÿthøñ Ðëþµggër: Møðµlë","Python Debugger: Pyramid Application":"Pÿthøñ Ðëþµggër: Pÿræmïð Æpplïçætïøñ","Python Debugger: Remote Attach":"Pÿthøñ Ðëþµggër: Rëmøtë Ættæçh","Python File":"Pÿthøñ Fïlë","Python File with Arguments":"Pÿthøñ Fïlë wïth Ærgµmëñts","Refresh process list":"Rëfrësh prøçëss lïst","Remote Attach":"Rëmøtë Ættæçh","Remote Debugging":"Rëmøtë Ðëþµggïñg","Select File":"§ëlëçt Fïlë","Select Python File":"§ëlëçt Pÿthøñ Fïlë","Select Python Interpreter":"§ëlëçt Pÿthøñ Ïñtërprëtër","Select a Python Debugger debug configuration":"§ëlëçt æ Pÿthøñ Ðëþµggër ðëþµg çøñfïgµrætïøñ","Select a debug configuration":"§ëlëçt æ ðëþµg çøñfïgµrætïøñ","Select the process to attach to":"§ëlëçt thë prøçëss tø ættæçh tø","Show as Hex":"§høw æs Hëx","The minimum supported Python version for the debugger extension is 3.9.":"Thë mïñïmµm sµppørtëð Pÿthøñ vërsïøñ før thë ðëþµggër ëxtëñsïøñ ïs 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Wë ñøtïçëð ÿøµ ærë ættæçhïñg tø ptvsð (Pÿthøñ ðëþµggër), whïçh wæs ðëprëçætëð øñ Mæÿ 1st, 2020. Plëæsë swïtçh tø [ðëþµgpÿ](https://ækæ.ms/mïgrætëTøÐëþµgpÿ).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Ýøµ ñëëð tø sëlëçt æ Pÿthøñ ïñtërprëtër þëførë ÿøµ stært ðëþµggïñg.\n\nTïp: çlïçk øñ \"§ëlëçt Ïñtërprëtër\" ïñ thë stætµs þær.","cwd:":"çwð:","enter-your-module-name":"ëñtër-ÿøµr-møðµlë-ñæmë"} diff --git a/l10n/bundle.l10n.ru.json b/l10n/bundle.l10n.ru.json deleted file mode 100644 index 6960c0c3..00000000 --- a/l10n/bundle.l10n.ru.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Подключить к локальному процессу","Attach to a remote debug server":"Присоединение к удаленному серверу отладки","Attach to process":"Присоединиться к процессу","Attach using Process ID":"Подключить с помощью идентификатора процесса","Browse Files...":"Обзор файлов...","Browse your file system to find a Python file.":"Просмотрите файловую систему, чтобы найти файл Python.","Change Python Interpreter":"Изменить интерпретатор Python","Command Line Arguments":"Аргументы командной строки","Debug Configuration":"Конфигурация отладки","Debug Django":"Отладка Django","Debug FastAPI":"Отладка FastAPI","Debug Flask":"Отладка Flask","Debug Module":"Модуль отладки","Debug Pyramid":"Пирамида отладки","Debug Stopped":"Отладка остановлена","Debug a Python module by invoking it with '-m'":"Отладка модуля Python путем его вызова с помощью «-m»","Debug the currently active Python file":"Отладка текущего активного файла Python","Debug the currently active Python file with arguments":"Отладка текущего активного файла Python с аргументами","Django":"Django","Do not show again":"Больше не показывать","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Включает использование [отладки без конфигурации](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging) \"debugpy \" в терминале.","Enter a Python module/package name":"Введите имя модуля или пакета Python","Enter a valid file path":"Введите допустимый путь к файлу","Enter a valid host name or IP address":"Ввод допустимого имени или IP-адреса узла","Enter a valid module name":"Введите допустимое имя модуля","Enter a valid name":"Введите допустимое имя","Enter a valid port number":"Введите допустимый номер порта","Enter the command line arguments you want to pass to the program":"Введите аргументы командной строки, которые вы хотите передать программе.","Enter the path to app.py or select a file from the list.":"Введите путь к app.py или выберите файл из списка.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Введите путь к development.ini ({0}указывает на корень папки текущей рабочей области)","Enter the path to manage.py or select a file from the list.":"Введите путь к manage.py или выберите файл из списка.","Enter the path to the application, e.g. 'main.py' or 'main'":"Введите путь к приложению, например «main.py» или «main»","Enter the port number that the debug server is listening on":"Введите номер порта, который прослушивает сервер отладки","Failed to launch debugger for child process {0}":"Не удалось запустить отладчик для дочернего процесса {0}","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Запуск и отладка веб-приложения Django","Launch and debug a FastAPI web application":"Запуск и отладка веб-приложения FastAPI","Launch and debug a Flask web application":"Запуск и отладка веб-приложения Flask","Launch and debug a Pyramid web application":"Запуск и отладка веб-приложения Pyramid","Module":"Модуль","More Info":"Дополнительные сведения","No process selected":"Процесс не выбран","No, I will do it later":"Нет, выполню позже","Open launch.json":"Открыть launch.json","Operating system '{0}' not supported.":"Операционная система «{0}» не поддерживается.","Pyramid":"Пирамида","Python Debugger":"Отладчик Python","Python Debugger extension loading...":"Загрузка расширения отладчика Python...","Python Debugger: Attach using Process Id":"Отладчик Python: Подключить с помощью идентификатора процесса","Python Debugger: Current File":"Отладчик Python: Текущий файл","Python Debugger: Current File with Arguments":"Отладчик Python: Текущий файл с аргументами","Python Debugger: Django":"Отладчик Python: Django","Python Debugger: FastAPI":"Отладчик Python: FastAPI","Python Debugger: Flask":"Отладчик Python: Flask","Python Debugger: Module":"Отладчик Python: Модуль","Python Debugger: Pyramid Application":"Отладчик Python: Приложение Pyramid","Python Debugger: Remote Attach":"Отладчик Python: Удаленное подключение","Python File":"Файл Python","Python File with Arguments":"Файл Python с аргументами","Refresh process list":"Обновить список процессов","Remote Attach":"Удаленное подключение","Remote Debugging":"Удаленная отладка","Select File":"Выберите файл","Select Python File":"Выбор файла Python","Select Python Interpreter":"Выбор интерпретатора Python","Select a Python Debugger debug configuration":"Выберите конфигурацию отладки отладчика Python","Select a debug configuration":"Выбрать конфигурацию отладки","Select the process to attach to":"Выберите процесс, к которому нужно выполнить подключение","Show as Hex":"Показать как шестнадцатеричный","The minimum supported Python version for the debugger extension is 3.9.":"Минимально поддерживаемая версия Python для расширения отладчика — 3.9.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"Мы заметили, что вы подключаетесь к ptvsd (отладчику Python), который устарел 1 мая 2020 года. Переключитесь на [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Перед началом отладки необходимо выбрать интерпретатор Python.\n\nСовет: нажмите \"Выбор интерпретатора\" в строке состояния.","cwd:":"Cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.tr.json b/l10n/bundle.l10n.tr.json deleted file mode 100644 index adcdd2ad..00000000 --- a/l10n/bundle.l10n.tr.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"Yerel işleme ekle","Attach to a remote debug server":"Uzaktan hata ayıklama sunucusuna ekle","Attach to process":"İşleme ekle","Attach using Process ID":"İşlem Kimliği kullanarak ekle","Browse Files...":"Dosyalara Göz At...","Browse your file system to find a Python file.":"Python dosyasını bulmak için dosya sisteminize göz atın.","Change Python Interpreter":"Python Yorumlayıcısını Değiştir","Command Line Arguments":"Komut Satırı Bağımsız Değişkenleri","Debug Configuration":"Hata Ayıklama Yapılandırması","Debug Django":"Django’da Hata Ayıkla","Debug FastAPI":"FastAPI'da Hata Ayıkla","Debug Flask":"Flask'te Hata Ayıkla","Debug Module":"Hata Ayıklama Modülü","Debug Pyramid":"Pyramid’de Hata Ayıklama","Debug Stopped":"Hata Ayıklama Durduruldu","Debug a Python module by invoking it with '-m'":"Python modülünü '-m' ile çağırarak hata ayıklayın","Debug the currently active Python file":"Şu anda etkin olan Python dosyasında hata ayıkla","Debug the currently active Python file with arguments":"Şu anda etkin olan ve bağımsız değişkenler içeren Python dosyasında hata ayıklayın","Django":"Django","Do not show again":"Tekrar gösterme","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"Terminalde [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), 'debugpy ' kullanımına izin ver.","Enter a Python module/package name":"Python modülü/paketi adını girin","Enter a valid file path":"Geçerli bir dosya yolu girin","Enter a valid host name or IP address":"Geçerli bir ana bilgisayar adı veya IP adresi girin","Enter a valid module name":"Geçerli bir modül adı girin","Enter a valid name":"Geçerli bir ad girin","Enter a valid port number":"Geçerli bir bağlantı noktası numarası girin","Enter the command line arguments you want to pass to the program":"Programa geçirmek istediğiniz komut satırı bağımsız değişkenlerini girin","Enter the path to app.py or select a file from the list.":"app.py dosyasının yolunu girin veya listeden bir dosya seçin.","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"Development.ini yolunu girin ({0}, geçerli çalışma alanı klasörünün kökünü belirtir)","Enter the path to manage.py or select a file from the list.":"manage.py dosyasının yolunu girin veya listeden bir dosya seçin.","Enter the path to the application, e.g. 'main.py' or 'main'":"Uygulamanın yolunu girin, örneğin 'main.py' veya 'main'","Enter the port number that the debug server is listening on":"Hata ayıklama sunucusunun dinlediği bağlantı noktasının numarasını girin","Failed to launch debugger for child process {0}":"Alt işlem {0} için hata ayıklayıcısı başlatılamadı","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"Django web uygulamasını başlat ve hata ayıkla","Launch and debug a FastAPI web application":"FastAPI web uygulamasını başlat ve hata ayıkla","Launch and debug a Flask web application":"Flask web uygulamasını başlat ve hata ayıkla","Launch and debug a Pyramid web application":"Pyramid web uygulamasını başlat ve hata ayıkla","Module":"Modül","More Info":"Daha Fazla Bilgi","No process selected":"İşlem seçilmedi","No, I will do it later":"Hayır, daha sonra yapacağım","Open launch.json":"launch.json dosyasını aç","Operating system '{0}' not supported.":"‘{0}’ işletim sistemi desteklenmiyor.","Pyramid":"Piramit","Python Debugger":"Python Hata Ayıklayıcısı","Python Debugger extension loading...":"Python Hata Ayıklayıcı uzantısı yükleniyor...","Python Debugger: Attach using Process Id":"Python Hata Ayıklayıcısı: İşlem Kimliği kullanarak ekle","Python Debugger: Current File":"Python Hata Ayıklayıcısı: Geçerli Dosya","Python Debugger: Current File with Arguments":"Python Hata Ayıklayıcısı: Bağımsız Değişkenler içeren Geçerli Dosya","Python Debugger: Django":"Python Hata Ayıklayıcısı: Django","Python Debugger: FastAPI":"Python Hata Ayıklayıcısı: FastAPI","Python Debugger: Flask":"Python Hata Ayıklayıcısı: Flask","Python Debugger: Module":"Python Hata Ayıklayıcısı: Modül","Python Debugger: Pyramid Application":"Python Hata Ayıklayıcısı: Piramit Uygulaması","Python Debugger: Remote Attach":"Python Hata Ayıklayıcısı: Uzaktan Ekleme","Python File":"Python Dosyası","Python File with Arguments":"Bağımsız Değişkenler içeren Python Dosyası","Refresh process list":"İşlem listesini yenile","Remote Attach":"Uzaktan Ekleme","Remote Debugging":"Uzaktan Hata Ayıklama","Select File":"Dosya Seç","Select Python File":"Python Dosyası Seç","Select Python Interpreter":"Python Yorumlayıcısını seçin","Select a Python Debugger debug configuration":"Python Hata Ayıklayıcısı hata ayıklama yapılandırması seçin","Select a debug configuration":"Bir hata ayıklama yapılandırması seçin","Select the process to attach to":"Eklenilecek işlemi seçin","Show as Hex":"Onaltılık olarak göster","The minimum supported Python version for the debugger extension is 3.9.":"Hata ayıklayıcı uzantısı için desteklenen en düşük Python sürümü 3.9'dur.","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"1 Mayıs 2020'de kullanım dışı bırakılan ptvsd'ye (Python hata ayıklayıcısı) eklediğinizi algıladık. Lütfen [debugpy](https://aka.ms/migrateToDebugpy)’a geçiş yapın.","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"Hata ayıklamaya başlamadan önce bir Python yorumlayıcısı seçmeniz gerekir.\n\nİpucu: durum çubuğunda \"Yorumlayıcı Seç\"e tıklayın.","cwd:":"cwd:","enter-your-module-name":"modül adınızı girin"} diff --git a/l10n/bundle.l10n.zh-cn.json b/l10n/bundle.l10n.zh-cn.json deleted file mode 100644 index 63361be2..00000000 --- a/l10n/bundle.l10n.zh-cn.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"附加到本地进程","Attach to a remote debug server":"附加到远程调试服务器","Attach to process":"附加到进程","Attach using Process ID":"使用进程 ID 进行附加","Browse Files...":"浏览文件...","Browse your file system to find a Python file.":"浏览文件系统以查找 Python 文件。","Change Python Interpreter":"更改 Python 解释器","Command Line Arguments":"命令行参数","Debug Configuration":"调试配置","Debug Django":"调试 Django 应用程序","Debug FastAPI":"调试 FastAPI","Debug Flask":"调试 Flask","Debug Module":"调试模块","Debug Pyramid":"调试 Pyramid","Debug Stopped":"调试已停止","Debug a Python module by invoking it with '-m'":"通过使用 \\\"-m\\\" 调用 Python 模块来调试它","Debug the currently active Python file":"调试当前正在运行的 Python 文件","Debug the currently active Python file with arguments":"使用参数调试当前活动的 Python 文件","Django":"Django","Do not show again":"不再显示","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"允许在终端中使用 [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), “debugpy ”。","Enter a Python module/package name":"输入 Python 模块/包名称","Enter a valid file path":"输入有效的文件路径","Enter a valid host name or IP address":"输入有效主机名或 IP 地址","Enter a valid module name":"输入有效的模块名称","Enter a valid name":"输入有效名称","Enter a valid port number":"请输入一个有效的端口号。","Enter the command line arguments you want to pass to the program":"输入要传递给程序的命令行参数","Enter the path to app.py or select a file from the list.":"输入 app.py 的路径或从列表中选择文件。","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"输入 development.ini 的路径({0} 指向当前工作区文件夹的根目录)","Enter the path to manage.py or select a file from the list.":"输入 manage.py 的路径或从列表中选择文件。","Enter the path to the application, e.g. 'main.py' or 'main'":"请输入应用程序的路径,例如 \\\"main.py\\\" 或 \\\"main\\\"","Enter the port number that the debug server is listening on":"输入调试服务器正在侦听的端口号","Failed to launch debugger for child process {0}":"无法为子进程 {0} 启动调试器","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"启动和调试 Django Web 应用程序","Launch and debug a FastAPI web application":"启动和调试 FastAPI Web 应用程序","Launch and debug a Flask web application":"启动和调试 Flask Web 应用程序","Launch and debug a Pyramid web application":"启动和调试 Pyramid Web 应用程序","Module":"模块","More Info":"详细信息","No process selected":"未选择进程","No, I will do it later":"否,我将稍后执行此操作","Open launch.json":"打开 launch.json","Operating system '{0}' not supported.":"不支持操作系统“{0}”。","Pyramid":"Pyramid","Python Debugger":"Python 调试程序","Python Debugger extension loading...":"正在加载 Python 调试器扩展...","Python Debugger: Attach using Process Id":"Python 调试程序: 使用进程 ID 附加","Python Debugger: Current File":"Python 调试程序: 当前文件","Python Debugger: Current File with Arguments":"Python 调试程序: 包含参数的当前文件","Python Debugger: Django":"Python 调试程序: Django","Python Debugger: FastAPI":"Python 调试程序: FastAPI","Python Debugger: Flask":"Python 调试程序: Flask","Python Debugger: Module":"Python 调试程序: 模块","Python Debugger: Pyramid Application":"Python 调试程序: Pyramid 应用程序","Python Debugger: Remote Attach":"Python 调试程序: 远程附加","Python File":"Python 文件","Python File with Arguments":"带有参数的 Python 文件","Refresh process list":"刷新进程列表","Remote Attach":"远程附加","Remote Debugging":"远程调试","Select File":"选择文件","Select Python File":"选择 Python 文件","Select Python Interpreter":"选择 Python 解释器","Select a Python Debugger debug configuration":"选择 Python 调试程序调试配置","Select a debug configuration":"选择调试配置","Select the process to attach to":"选择要附加到的进程","Show as Hex":"显示为十六进制","The minimum supported Python version for the debugger extension is 3.9.":"调试器扩展支持的最低 Python 版本是 3.9。","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"我们注意到你正在连接已于 2020 年 5 月 1 日被弃用的 ptvsd (Python 调试器)。请切换到 [debugpy](https://aka.ms/migrateToDebugpy)。","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"在开始调试之前,需要选择 Python 解释器。\n\n提示: 单击状态栏中的“选择解释器”。","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/l10n/bundle.l10n.zh-tw.json b/l10n/bundle.l10n.zh-tw.json deleted file mode 100644 index bde1a0ba..00000000 --- a/l10n/bundle.l10n.zh-tw.json +++ /dev/null @@ -1 +0,0 @@ -{"Attach to a local process":"附加到本機處理序","Attach to a remote debug server":"連結到遠端偵錯伺服器","Attach to process":"附加至處理序","Attach using Process ID":"使用處理程式識別碼附加","Browse Files...":"瀏覽檔案...","Browse your file system to find a Python file.":"瀏覽您的檔案系統以尋找 Python 檔案。","Change Python Interpreter":"變更 Python 解譯器","Command Line Arguments":"命令列的引數","Debug Configuration":"偵錯設定","Debug Django":"為 Django 進行偵錯","Debug FastAPI":"為 FastAPI 進行偵錯","Debug Flask":"為 Flask 進行偵錯","Debug Module":"為模組進行偵錯","Debug Pyramid":"為 Pyramid 進行偵錯","Debug Stopped":"偵錯已停止","Debug a Python module by invoking it with '-m'":"使用 '-m' 叫用 Python 模組來對其偵錯","Debug the currently active Python file":"偵錯目前使用中的 Python 檔案","Debug the currently active Python file with arguments":"使用引數對目前使用中的 Python 檔案進行偵錯","Django":"Django","Do not show again":"不要再顯示","Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging), `debugpy `, in the terminal.":"啟用在終端機中使用 [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging)、`debugpy `。","Enter a Python module/package name":"輸入 Python 模組/套件名稱","Enter a valid file path":"輸入有效的檔案路徑","Enter a valid host name or IP address":"輸入有效的主機名稱或 IP 位址","Enter a valid module name":"輸入有效的模組名稱","Enter a valid name":"請輸入有效的名稱。","Enter a valid port number":"請輸入有效的連接埠號碼。","Enter the command line arguments you want to pass to the program":"輸入您要傳遞給程式的命令列引數","Enter the path to app.py or select a file from the list.":"輸入要 app.py 的路徑,或從清單中選取檔案。","Enter the path to development.ini ({0} points to the root of the current workspace folder)":"輸入 development.ini 的路徑 ({0} 指向目前工作區資料夾的根目錄)","Enter the path to manage.py or select a file from the list.":"輸入要 manage.py 的路徑,或從清單中選取檔案。","Enter the path to the application, e.g. 'main.py' or 'main'":"輸入應用程式的路徑,例如 'main.py' 或 'main'","Enter the port number that the debug server is listening on":"輸入偵錯伺服器正在接聽的連接埠號碼","Failed to launch debugger for child process {0}":"無法為子處理序 {0} 啟動偵錯工具","FastAPI":"FastAPI","Flask":"Flask","Launch and debug a Django web application":"啟動 Django Web 應用程式並對其偵錯","Launch and debug a FastAPI web application":"啟動 FastAPI Web 應用程式並對其偵錯","Launch and debug a Flask web application":"啟動 Flask Web 應用程式並對其偵錯","Launch and debug a Pyramid web application":"啟動 Pyramid Web 應用程式並對其偵錯","Module":"模組","More Info":"更多資訊","No process selected":"未選取任何處理序","No, I will do it later":"否,我稍後會執行","Open launch.json":"開啟 launch.json","Operating system '{0}' not supported.":"不支援作業系統 '{0}'。","Pyramid":"Pyramid","Python Debugger":"Python 偵錯工具","Python Debugger extension loading...":"Python 偵錯工具延伸模載入中...","Python Debugger: Attach using Process Id":"Python 偵錯工具: 使用處理程式識別碼附加","Python Debugger: Current File":"Python 偵錯工具: 目前檔案","Python Debugger: Current File with Arguments":"Python 偵錯工具: 帶引數的目前檔案","Python Debugger: Django":"Python 偵錯工具: Django","Python Debugger: FastAPI":"Python 偵錯工具: FastAPI","Python Debugger: Flask":"Python 偵錯工具: Flask","Python Debugger: Module":"Python 偵錯工具: 模組","Python Debugger: Pyramid Application":"Python 偵錯工具: Pyramid Application","Python Debugger: Remote Attach":"Python 偵錯工具: 遠端附加","Python File":"Python 檔案","Python File with Arguments":"具有引數的 Python 檔案","Refresh process list":"重新整理處理序清單","Remote Attach":"遠端附加","Remote Debugging":"遠端偵錯","Select File":"選取檔案","Select Python File":"選取 Python 檔案","Select Python Interpreter":"選取 Python 解譯器","Select a Python Debugger debug configuration":"選取 Python 偵錯工具偵錯設定","Select a debug configuration":"選取偵錯設定","Select the process to attach to":"選取要附加至的目標處理序","Show as Hex":"顯示為十六進位","The minimum supported Python version for the debugger extension is 3.9.":"偵測工具擴充功能的最低支援 Python 版本為 3.9。","We noticed you are attaching to ptvsd (Python debugger), which was deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).":"我們注意到您正在附加到 ptvsd (Python 偵錯工具),已於 2020 年 5 月 1 日淘汰。請切換到 [debugpy](https://aka.ms/migrateToDebugpy).","You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Interpreter\" in the status bar.":"您必須先選取 Python 解譯器,才能開始偵錯。\n\n提示: 按一下狀態列中的 [選取解譯器]。","cwd:":"cwd:","enter-your-module-name":"enter-your-module-name"} diff --git a/package.json b/package.json index d52b1564..83484a55 100644 --- a/package.json +++ b/package.json @@ -645,8 +645,7 @@ "format-check": "prettier --check 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'", "format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'", "test": "node ./out/test/runTest.js", - "vsce-package": "npx @vscode/vsce package -o python-debugger.vsix", - "vsce-package-pre": "vsce package -o python-debugger.vsix --pre-release" + "vsce-package": "npx @vscode/vsce package -o python-debugger.vsix" }, "devDependencies": { "@types/chai": "^4.1.2", diff --git a/package.nls.cs.json b/package.nls.cs.json deleted file mode 100644 index 6c8ba379..00000000 --- a/package.nls.cs.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Vymazat okno Mezipaměti a Znovu načíst","debugpy.command.debugInTerminal.title":"Ladicí program Pythonu: Ladit soubor Pythonu","debugpy.command.debugUsingLaunchConfig.title":"Ladicí program Pythonu: Ladit pomocí souboru launch.json","debugpy.command.reportIssue.title":"Nahlásit problém…","debugpy.command.viewOutput.title":"Zobrazit výstup","debugpy.debugJustMyCode.description":"Při ladění proveďte krokování s vnořením pouze do uživatelem napsaného kódu. Pokud chcete povolit krokování s vnořením do kódu knihovny, tuto možnost zakažte.","debugpy.showPythonInlineValues.description":"Určuje, jestli se mají při ladění zobrazovat vložené hodnoty v editoru."} diff --git a/package.nls.de.json b/package.nls.de.json deleted file mode 100644 index 6efd1a65..00000000 --- a/package.nls.de.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Fenster \"Cache löschen und neu laden\"","debugpy.command.debugInTerminal.title":"Python-Debugger: Python-Datei debuggen","debugpy.command.debugUsingLaunchConfig.title":"Python-Debugger: Debuggen mithilfe von launch.json","debugpy.command.reportIssue.title":"Problem melden...","debugpy.command.viewOutput.title":"Ausgabe Anzeigen","debugpy.debugJustMyCode.description":"Beim Debuggen nur vom Benutzer geschriebenen Code durchlaufen. Deaktivieren Sie diese Option, um das Durchlaufen von Bibliothekscode zuzulassen.","debugpy.showPythonInlineValues.description":"Gibt an, ob beim Debuggen Inlinewerte im Editor angezeigt werden sollen."} diff --git a/package.nls.es.json b/package.nls.es.json deleted file mode 100644 index eba8a457..00000000 --- a/package.nls.es.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Borrar la caché y volver a cargar la ventana","debugpy.command.debugInTerminal.title":"Depurador de Python: depurar archivo de Python","debugpy.command.debugUsingLaunchConfig.title":"Depurador de Python: depurar mediante launch.json","debugpy.command.reportIssue.title":"Notificar problema...","debugpy.command.viewOutput.title":"Mostrar salida","debugpy.debugJustMyCode.description":"Al depurar, solo recorrer el código escrito por el usuario. Deshabilite esta opción para permitir recorrer el código de biblioteca.","debugpy.showPythonInlineValues.description":"Si se desean mostrar los valores en línea en el editor durante la depuración."} diff --git a/package.nls.fr.json b/package.nls.fr.json deleted file mode 100644 index dbf12b8e..00000000 --- a/package.nls.fr.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Effacer le cache et recharger la fenêtre","debugpy.command.debugInTerminal.title":"Débogueur Python : déboguer un fichier Python","debugpy.command.debugUsingLaunchConfig.title":"Débogueur Python : déboguer à l’aide de launch.json","debugpy.command.reportIssue.title":"Signaler un problème...","debugpy.command.viewOutput.title":"Afficher la sortie","debugpy.debugJustMyCode.description":"Lors du débogage, parcourez uniquement le code écrit par l'utilisateur. Désactivez cette option pour permettre d'accéder au code de la bibliothèque.","debugpy.showPythonInlineValues.description":"Indique s’il faut afficher les valeurs inline dans l’éditeur pendant le débogage."} diff --git a/package.nls.it.json b/package.nls.it.json deleted file mode 100644 index e8b6ffca..00000000 --- a/package.nls.it.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Cancella la cache e ricarica la finestra","debugpy.command.debugInTerminal.title":"Debugger Python: esegui il debug di un file Python","debugpy.command.debugUsingLaunchConfig.title":"Debugger Python: esegui il debug con launch.json","debugpy.command.reportIssue.title":"Segnala problema...","debugpy.command.viewOutput.title":"Mostra output","debugpy.debugJustMyCode.description":"Durante il debug, eseguire solo il codice scritto dall'utente. Disabilitare questa opzione per consentire l'esecuzione di istruzioni nel codice della libreria.","debugpy.showPythonInlineValues.description":"Indica se visualizzare i valori inline nell'editor durante il debug."} diff --git a/package.nls.ja.json b/package.nls.ja.json deleted file mode 100644 index b6ade88d..00000000 --- a/package.nls.ja.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"キャッシュのクリアとウィンドウの再読み込み","debugpy.command.debugInTerminal.title":"Python デバッガー: Python ファイルのデバッグ","debugpy.command.debugUsingLaunchConfig.title":"Python デバッガー: launch.json を使用したデバッグ","debugpy.command.reportIssue.title":"問題の報告...","debugpy.command.viewOutput.title":"出力の表示","debugpy.debugJustMyCode.description":"ユーザーが作成したコードを使ったステップのみをデバッグする場合。これを無効にすると、ライブラリ コードにステップ インできるようになります。","debugpy.showPythonInlineValues.description":"デバッグ中にエディターにインライン値を表示するかどうか。"} diff --git a/package.nls.ko.json b/package.nls.ko.json deleted file mode 100644 index 5da06477..00000000 --- a/package.nls.ko.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"캐시 지우기 및 창 다시 로드","debugpy.command.debugInTerminal.title":"Python 디버거: Python 파일 디버그","debugpy.command.debugUsingLaunchConfig.title":"Python 디버거: launch.json을 사용하여 디버그","debugpy.command.reportIssue.title":"문제 보고...","debugpy.command.viewOutput.title":"출력 표시","debugpy.debugJustMyCode.description":"디버깅할 때 사용자가 작성한 코드만 단계별로 실행합니다. 라이브러리 코드를 한 단계씩 실행할 수 있게 하려면 이 기능을 비활성화하세요.","debugpy.showPythonInlineValues.description":"디버깅하는 동안 편집기에서 인라인 값을 표시할지 여부를 지정합니다."} diff --git a/package.nls.pl.json b/package.nls.pl.json deleted file mode 100644 index 46763fe7..00000000 --- a/package.nls.pl.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Wyczyść pamięć podręczną i załaduj ponownie okno","debugpy.command.debugInTerminal.title":"Debuger języka Python: debugowanie pliku języka Python","debugpy.command.debugUsingLaunchConfig.title":"Debuger języka Python: debugowanie przy użyciu pliku launch.json","debugpy.command.reportIssue.title":"Zgłoś problem...","debugpy.command.viewOutput.title":"Pokaż dane wyjściowe","debugpy.debugJustMyCode.description":"Podczas debugowania przejdź przez kod napisany przez użytkownika. Wyłącz tę opcję, aby umożliwić przechodzenie do kodu biblioteki.","debugpy.showPythonInlineValues.description":"Określa, czy wyświetlać wartości śródwierszowe w edytorze podczas debugowania."} diff --git a/package.nls.pt-br.json b/package.nls.pt-br.json deleted file mode 100644 index 16c193ae..00000000 --- a/package.nls.pt-br.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Limpar Cache e Recarregar Janela","debugpy.command.debugInTerminal.title":"Depurador do Python: Depurar Arquivo Python","debugpy.command.debugUsingLaunchConfig.title":"Depurador do Python: depurar usando launch.json","debugpy.command.reportIssue.title":"Relatar um Problema...","debugpy.command.viewOutput.title":"Mostrar Saída","debugpy.debugJustMyCode.description":"Ao depurar, apenas percorra o código escrito pelo usuário. Desabilite isso para permitir a entrada no código da biblioteca.","debugpy.showPythonInlineValues.description":"Se desejar exibir valores em linha no editor durante a depuração."} diff --git a/package.nls.qps-ploc.json b/package.nls.qps-ploc.json deleted file mode 100644 index 36943fd7..00000000 --- a/package.nls.qps-ploc.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Çlëær Çæçhë æñð Rëløæð Wïñðøw","debugpy.command.debugInTerminal.title":"Pÿthøñ Ðëþµggër: Ðëþµg Pÿthøñ Fïlë","debugpy.command.debugUsingLaunchConfig.title":"Pÿthøñ Ðëþµggër: Ðëþµg µsïñg læµñçh.jsøñ","debugpy.command.reportIssue.title":"Rëpørt Ïssµë...","debugpy.command.viewOutput.title":"§høw صtpµt","debugpy.debugJustMyCode.description":"Whëñ ðëþµggïñg øñlÿ stëp thrøµgh µsër-wrïttëñ çøðë. Ðïsæþlë thïs tø ælløw stëppïñg ïñtø lïþrærÿ çøðë.","debugpy.showPythonInlineValues.description":"Whëthër tø ðïsplæÿ ïñlïñë vælµës ïñ thë ëðïtør whïlë ðëþµggïñg."} diff --git a/package.nls.ru.json b/package.nls.ru.json deleted file mode 100644 index dfb27fb3..00000000 --- a/package.nls.ru.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Очистить кэш и перезагрузить окно","debugpy.command.debugInTerminal.title":"Отладчик Python: отладка файла Python","debugpy.command.debugUsingLaunchConfig.title":"Отладчик Python: отладка с помощью launch.json","debugpy.command.reportIssue.title":"Сообщить о проблеме…","debugpy.command.viewOutput.title":"Показать выходные данные","debugpy.debugJustMyCode.description":"При отладке выполнять только обход написанного пользователем кода. Отключите этот параметр, чтобы разрешить обход кода библиотеки.","debugpy.showPythonInlineValues.description":"Следует ли отображать встроенные значения в редакторе при отладке."} diff --git a/package.nls.tr.json b/package.nls.tr.json deleted file mode 100644 index a5f9e2fe..00000000 --- a/package.nls.tr.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"Önbelleği Temizleme ve Pencereyi Yeniden Yükleme","debugpy.command.debugInTerminal.title":"Python Hata Ayıklayıcı: Python Dosyasında Hata Ayıklama","debugpy.command.debugUsingLaunchConfig.title":"Python Hata Ayıklayıcı: launch.json kullanarak hata ayıklama","debugpy.command.reportIssue.title":"Sorun Bildir...","debugpy.command.viewOutput.title":"Çıkışı Göster","debugpy.debugJustMyCode.description":"Hata ayıklama sırasında yalnızca kullanıcı tarafından yazılan kod adımlarını izleyin. Kitaplık kodu adımlarını izlemeye izin vermek için bunu devre dışı bırakın.","debugpy.showPythonInlineValues.description":"Hata ayıklama sırasında satır içi değerlerin düzenleyicide gösterilip gösterilmeyeceğini belirler."} diff --git a/package.nls.zh-cn.json b/package.nls.zh-cn.json deleted file mode 100644 index 7e315c0f..00000000 --- a/package.nls.zh-cn.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"清除缓存并重新加载窗口","debugpy.command.debugInTerminal.title":"Python 调试程序: 调试 Python 文件","debugpy.command.debugUsingLaunchConfig.title":"Python 调试程序: 使用 launch.json 进行调试","debugpy.command.reportIssue.title":"报告问题...","debugpy.command.viewOutput.title":"显示输出","debugpy.debugJustMyCode.description":"调试时,仅单步执行用户编写的代码。禁用此选项可允许单步执行库代码。","debugpy.showPythonInlineValues.description":"调试时是否在编辑器中显示内联值。"} diff --git a/package.nls.zh-tw.json b/package.nls.zh-tw.json deleted file mode 100644 index 6c69a2e3..00000000 --- a/package.nls.zh-tw.json +++ /dev/null @@ -1 +0,0 @@ -{"debugpy.command.clearCacheAndReload.title":"清除快取並重新載入視窗","debugpy.command.debugInTerminal.title":"Python 偵錯工具: 偵錯 Python 檔案","debugpy.command.debugUsingLaunchConfig.title":"Python 偵錯工具: 使用 launch.json 進行偵錯","debugpy.command.reportIssue.title":"回報問題...","debugpy.command.viewOutput.title":"顯示輸出","debugpy.debugJustMyCode.description":"偵錯時,僅逐步執行使用者寫入的程式碼。停用此選項以允許逐步執行程式庫程式碼。","debugpy.showPythonInlineValues.description":"是否要在偵錯時於編輯器中顯示內嵌值。"} diff --git a/packages.config b/packages.config deleted file mode 100644 index 6055d985..00000000 --- a/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/telemetry.json b/telemetry.json deleted file mode 100644 index 4a5c7e34..00000000 --- a/telemetry.json +++ /dev/null @@ -1 +0,0 @@ -{"events":{"ms-python.debugpydebug.success_activation":{"codeloadingtime":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"errorname":{"classification":"CallstackOrException","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"}},"ms-python.debugpydebug_in_terminal_button":{"owner":"eleanorjboyd"},"ms-python.debugpydebug_using_launch_config_button":{"owner":"eleanorjboyd"},"ms-python.debugpydebug_adapter.using_wheels_path":{"usingwheels":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"}},"ms-python.debugpydebug_session.start":{"duration":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"trigger":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"},"console":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"}},"ms-python.debugpydebug_session.error":{"duration":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"trigger":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"},"console":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"}},"ms-python.debugpydebug_session.stop":{"duration":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"trigger":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"},"console":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"}},"ms-python.debugpydebug_session.user_code_running":{"duration":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"trigger":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"},"console":{"classification":"SystemMetaData","purpose":"PerformanceAndHealth","owner":"eleanorjboyd"}},"ms-python.debugpydebugger":{"trigger":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"console":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"hasenvvars":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"hasargs":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"django":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"fastapi":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"flask":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"jinja":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"islocalhost":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"ismodule":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"issudo":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"stoponentry":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"showreturnvalue":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"pyramid":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"subprocess":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"watson":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"pyspark":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"gevent":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"scrapy":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"}},"ms-python.debugpydebugger.attach_to_child_process":{"duration":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd","isMeasurement":true}},"ms-python.debugpydebugger.attach_to_local_process":{"owner":"eleanorjboyd"},"ms-python.debugpydebugger.configuration.prompts":{"configurationtype":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"autodetecteddjangomanagepypath":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"autodetectedpyramidinipath":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"autodetectedfastapimainpypath":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"autodetectedflaskapppypath":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"manuallyenteredavalue":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"},"browsefilevalue":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"}},"ms-python.debugpydebugger.configuration.prompts.in.launch.json":{"owner":"eleanorjboyd"},"ms-python.debugpyenvfile_variable_substitution":{"owner":"karthiknadig"},"ms-python.debugpyuse_report_issue_command":{"owner":"eleanorjboyd"},"ms-python.debugpydebugger_dynamic_config":{"owner":"eleanorjboyd"},"ms-python.debugpyDEBUGGER_PYTHON_37_DEPRECATED":{"owner":"eleanorjboyd"},"ms-python.debugpyDEBUGGER_SHOW_PYTHON_INLINE_VALUES":{"owner":"eleanorjboyd"},"ms-python.debugpydeprecated_code_path_usage":{"codepath":{"classification":"SystemMetaData","purpose":"FeatureInsight","owner":"eleanorjboyd"}}},"commonProperties":{}}