vscode-docker/package.nls.json

336 строки
37 KiB
JSON

{
"vscode-docker.debug.containerName": "Name of the container used for debugging.",
"vscode-docker.debug.dockerServerReadyAction.description": "Options for launching a browser to the Docker container. Similar to serverReadyAction, but replaces container ports with host ports.",
"vscode-docker.debug.dockerServerReadyAction.action": "The action to take when the pattern is found.",
"vscode-docker.debug.dockerServerReadyAction.containerName": "The container name to match the host port.",
"vscode-docker.debug.dockerServerReadyAction.pattern": "The regex pattern to look for in Debug console output.",
"vscode-docker.debug.dockerServerReadyAction.uriFormat": "The URI format to launch.",
"vscode-docker.debug.dockerServerReadyAction.webRoot": "The root folder from which web pages are served.",
"vscode-docker.debug.removeContainerAfterDebug": "Whether to remove the debug container after debugging.",
"vscode-docker.debug.platform": "The target platform for the application.",
"vscode-docker.debug.netCore.description": "Options for debugging .NET projects in Docker.",
"vscode-docker.debug.netCore.appProject": "The .NET project (.csproj, .fsproj, etc.) to debug.",
"vscode-docker.debug.node.description": "Options for debugging Node.js projects in Docker.",
"vscode-docker.debug.node.port": "The debug port to use.",
"vscode-docker.debug.node.address": "TCP/IP address of the debug port.",
"vscode-docker.debug.node.sourceMaps": "Enable source maps by setting this to `true`.",
"vscode-docker.debug.node.outFiles": "Array of glob patterns for locating generated JavaScript files.",
"vscode-docker.debug.node.autoAttachChildProcesses": "Track all subprocesses of debuggee and automatically attach to those that are launched in debug mode.",
"vscode-docker.debug.node.timeout": "When restarting a session, give up after this number of milliseconds.",
"vscode-docker.debug.node.stopOnEntry": "Break immediately when the program launches.",
"vscode-docker.debug.node.localRoot": "VS Code's root directory.",
"vscode-docker.debug.node.package": "The path to the package.json for the application.",
"vscode-docker.debug.node.remoteRoot": "Node's root directory within the Docker container.",
"vscode-docker.debug.node.smartStep": "Try to automatically step over code that doesn't map to source files.",
"vscode-docker.debug.node.skipFiles": "Automatically skip files covered by these glob patterns.",
"vscode-docker.debug.node.trace": "Enable diagnostic output.",
"vscode-docker.debug.python.description": "Options for debugging Python applications in Docker.",
"vscode-docker.debug.python.host": "The host for remote debugging.",
"vscode-docker.debug.python.port": "The port for remote debugging.",
"vscode-docker.debug.python.pathMappings.localRoot": "The host path.",
"vscode-docker.debug.python.pathMappings.remoteRoot": "The container path.",
"vscode-docker.debug.python.justMyCode": "Debug only user-written code.",
"vscode-docker.debug.python.django": "Django debugging.",
"vscode-docker.debug.python.fastapi": "FastAPI debugging.",
"vscode-docker.debug.python.jinja": "Jinja template debugging (e.g. Flask).",
"vscode-docker.debug.python.projectType": "Type of the Python app.",
"vscode-docker.debug.python.args": "Arguments passed to the Python app.",
"vscode-docker.debug.attach.containerName": "The container name to attach to. If not specified, then user will be prompted to pick a container.",
"vscode-docker.debug.attach.processName": "The process name to attach to. If this is used, 'processId' should not be used.",
"vscode-docker.debug.attach.processIdString": "The process id to attach to. Use \"${command:pickProcess}\" to get a list of running processes to attach to. If 'processId' used, 'processName' should not be used.",
"vscode-docker.debug.attach.processIdInteger": "The process id to attach to. Use \"${command:pickProcess}\" to get a list of running processes to attach to. If 'processId' used, 'processName' should not be used.",
"vscode-docker.debug.attach.platform": "The target platform for the application.",
"vscode-docker.debug.attach.sourceFileMap": "Optional source file mappings passed to the debug engine. Example: '{ \"/src\":\"${workspaceFolder}\" }'",
"vscode-docker.debug.attach.netCore.description": "Options for debugging .NET projects in Docker.",
"vscode-docker.debug.attach.netCore.debuggerPath": "The path for the debugger in the target container, for example `/remote_debugger/vsdbg`.",
"vscode-docker.tasks.options.description": "Additional command options",
"vscode-docker.tasks.options.cwd.description": "The current working directory of the executed program or script. If omitted Code's current workspace root is used.",
"vscode-docker.tasks.options.env.description": "The environment of the executed program or shell. If omitted the parent process' environment is used.",
"vscode-docker.tasks.docker-build.dockerBuild.description": "Options for building the Docker image used for debugging. Learn more at https://aka.ms/vscode-docker-build-task",
"vscode-docker.tasks.docker-build.dockerBuild.buildArgs": "Build arguments applied to the Docker image used for debugging.",
"vscode-docker.tasks.docker-build.dockerBuild.context": "Path to the Docker build context.",
"vscode-docker.tasks.docker-build.dockerBuild.dockerfile": "Path to the Dockerfile used for the build.",
"vscode-docker.tasks.docker-build.dockerBuild.labels.description": "Labels applied to the Docker image used for debugging.",
"vscode-docker.tasks.docker-build.dockerBuild.labels.includeDefaults": "Whether to include the default set of labels defined by the Docker extension",
"vscode-docker.tasks.docker-build.dockerBuild.platform": "Target platform for the image build",
"vscode-docker.tasks.docker-build.dockerBuild.platform.architecture": "CPU architecture of the target image platform.",
"vscode-docker.tasks.docker-build.dockerBuild.platform.os": "OS of the target image platform.",
"vscode-docker.tasks.docker-build.dockerBuild.tag": "Tag applied to the Docker image used for debugging.",
"vscode-docker.tasks.docker-build.dockerBuild.target": "Docker build target (stage) used for debugging.",
"vscode-docker.tasks.docker-build.dockerBuild.pull": "Whether or not to pull new base images before building.",
"vscode-docker.tasks.docker-build.dockerBuild.customOptions": "Any other options to add to the `docker build` command.",
"vscode-docker.tasks.docker-build.platform": "The target platform for the application.",
"vscode-docker.tasks.docker-build.netCore.description": "Options for building .NET projects in Docker.",
"vscode-docker.tasks.docker-build.netCore.appProject": "The .NET project (.csproj, .fsproj, etc.) to build.",
"vscode-docker.tasks.docker-build.node.description": "Options for building Node.js applications in Docker.",
"vscode-docker.tasks.docker-build.node.package": "The path to the package.json for the application.",
"vscode-docker.tasks.docker-build.python.description": "Options for building Python applications in Docker.",
"vscode-docker.tasks.docker-run.dockerRun.description": "Options for running the Docker container used for debugging. Learn more at https://aka.ms/vscode-docker-run-task",
"vscode-docker.tasks.docker-run.dockerRun.command": "The command to run upon starting the container.",
"vscode-docker.tasks.docker-run.dockerRun.containerName": "Name of the container used for debugging.",
"vscode-docker.tasks.docker-run.dockerRun.entrypoint": "The entrypoint to use when starting the container.",
"vscode-docker.tasks.docker-run.dockerRun.env": "Environment variables applied to the Docker container used for debugging.",
"vscode-docker.tasks.docker-run.dockerRun.envFiles": "Files of environment variables read in and applied to the Docker container used for debugging.",
"vscode-docker.tasks.docker-run.dockerRun.image": "The image to run.",
"vscode-docker.tasks.docker-run.dockerRun.labels.description": "Labels applied to the Docker container used for debugging.",
"vscode-docker.tasks.docker-run.dockerRun.labels.includeDefaults": "Whether to include the default set of labels defined by the Docker extension",
"vscode-docker.tasks.docker-run.dockerRun.network": "The network to which the container will be connected.",
"vscode-docker.tasks.docker-run.dockerRun.networkAlias": "The network-scoped alias to assign to the container.",
"vscode-docker.tasks.docker-run.dockerRun.os": "The container operating system.",
"vscode-docker.tasks.docker-run.dockerRun.ports.description": "Ports that are going to be mapped on the host.",
"vscode-docker.tasks.docker-run.dockerRun.ports.hostPort": "Port number to be bound on the host.",
"vscode-docker.tasks.docker-run.dockerRun.ports.containerPort": "Port number of the container to be bound.",
"vscode-docker.tasks.docker-run.dockerRun.ports.protocol": "Specific protocol for the binding (`tcp | udp`).",
"vscode-docker.tasks.docker-run.dockerRun.portsPublishAll": "Whether to publish all exposed container ports to random ports on the host.",
"vscode-docker.tasks.docker-run.dockerRun.remove": "Whether to clean up the container and remove the file system when the container exits.",
"vscode-docker.tasks.docker-run.dockerRun.extraHosts.description": "Hosts to be added to the container's `hosts` file for DNS resolution.",
"vscode-docker.tasks.docker-run.dockerRun.extraHosts.hostname": "Hostname for dns resolution.",
"vscode-docker.tasks.docker-run.dockerRun.extraHosts.ip": "IP associated to the hostname.",
"vscode-docker.tasks.docker-run.dockerRun.volumes.description": "Volumes that are going to be mapped to the container.",
"vscode-docker.tasks.docker-run.dockerRun.volumes.localPath": "Path on local machine that will be mapped. The folder will be created if it does not exist.",
"vscode-docker.tasks.docker-run.dockerRun.volumes.containerPath": "Path where the volume will be mapped within the container. The folder will be created if it does not exist.",
"vscode-docker.tasks.docker-run.dockerRun.volumes.permissions": "Permissions for the container for the mapped volume, `rw` for read-write or `ro` for read-only.",
"vscode-docker.tasks.docker-run.dockerRun.customOptions": "Any other options to add to the `docker run` command.",
"vscode-docker.tasks.docker-run.platform": "The target platform for the application.",
"vscode-docker.tasks.docker-run.netCore.description": "Options for running .NET projects in Docker.",
"vscode-docker.tasks.docker-run.netCore.appProject": "The .NET project (.csproj, .fsproj, etc.) to build.",
"vscode-docker.tasks.docker-run.netCore.enableDebugging": "Whether to enable debugging within the container.",
"vscode-docker.tasks.docker-run.netCore.configureSsl": "Whether to configure certificate and other settings to enable SSL on ASP.NET Core web services.",
"vscode-docker.tasks.docker-run.node.description": "Options for running Node.js applications in Docker.",
"vscode-docker.tasks.docker-run.node.enableDebugging": "Whether to enable debugging within the container.",
"vscode-docker.tasks.docker-run.node.inspectMode": "Whether debugging should break immediately upon application start.",
"vscode-docker.tasks.docker-run.node.inspectPort": "The port on which debugging should occur.",
"vscode-docker.tasks.docker-run.node.package": "The path to the package.json for the application.",
"vscode-docker.tasks.docker-run.python.description": "Options for running Python applications in Docker.",
"vscode-docker.tasks.docker-run.python.file": "The Python file to run. Cannot be combined with `module`.",
"vscode-docker.tasks.docker-run.python.module": "The Python module to run. Cannot be combined with `file`.",
"vscode-docker.tasks.docker-run.python.args": "Arguments passed to the Python app.",
"vscode-docker.tasks.docker-run.python.wait": "Whether to wait for debugger to attach.",
"vscode-docker.tasks.docker-run.python.debugPort": "The port that the debugger will listen on.",
"vscode-docker.tasks.docker-compose.dockerCompose.description": "Options for the `docker-compose` command.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.description": "Options for the `docker-compose up` command. Cannot be combined with `down`.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.detached": "Whether or not to run detached.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.build": "Whether or not to build.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.scale": "The scale for each service.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.services": "A subset of services to start. Cannot be combined with `profiles`.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.profiles": "A subset of profiles to start. Cannot be combined with `services`.",
"vscode-docker.tasks.docker-compose.dockerCompose.up.customOptions": "Any other options to add to the `docker-compose up` command.",
"vscode-docker.tasks.docker-compose.dockerCompose.down.description": "Options for the `docker-compose down` command.",
"vscode-docker.tasks.docker-compose.dockerCompose.down.removeImages": "Images to remove.",
"vscode-docker.tasks.docker-compose.dockerCompose.down.removeVolumes": "Whether or not to remove named and anonymous volumes.",
"vscode-docker.tasks.docker-compose.dockerCompose.down.customOptions": "Any other options to add to the `docker-compose down` command. Cannot be combined with `up`.",
"vscode-docker.tasks.docker-compose.dockerCompose.envFiles.description": "(DEPRECATED) Use `envFile` instead.",
"vscode-docker.tasks.docker-compose.dockerCompose.envFile.description": "File of environment variables read in and applied to the Docker containers.",
"vscode-docker.tasks.docker-compose.dockerCompose.files.description": "The docker-compose files to include, in order.",
"vscode-docker.tasks.docker-compose.dockerCompose.projectName.description": "Alternate project name to use when naming and labeling Docker objects. If using an alternate project name when composing up, the same project name must be specified when composing down.",
"vscode-docker.tasks.dotnet-container-sdk.dockerRun.description": "Options for running the Docker container used for debugging.",
"vscode-docker.tasks.dotnet-container-sdk.dockerRun.containerName": "Name of the container used for debugging.",
"vscode-docker.config.docker.promptForRegistryWhenPushingImages": "Prompt for registry selection if the image is not explicitly tagged.",
"vscode-docker.config.template.build.template": "The command template.",
"vscode-docker.config.template.build.label": "The label displayed to the user.",
"vscode-docker.config.template.build.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.",
"vscode-docker.config.template.build.description": "Command template(s) for `docker build` commands.",
"vscode-docker.config.template.run.template": "The command template.",
"vscode-docker.config.template.run.label": "The label displayed to the user.",
"vscode-docker.config.template.run.match": "The regular expression for choosing the right template. Checked against image name, etc.",
"vscode-docker.config.template.run.description": "Command templates for `docker run` commands.",
"vscode-docker.config.template.runInteractive.template": "The command template.",
"vscode-docker.config.template.runInteractive.label": "The label displayed to the user.",
"vscode-docker.config.template.runInteractive.match": "The regular expression for choosing the right template. Checked against image name, etc.",
"vscode-docker.config.template.runInteractive.description": "Command templates for `docker run -it` (interactive) commands.",
"vscode-docker.config.template.attach.template": "The command template.",
"vscode-docker.config.template.attach.label": "The label displayed to the user.",
"vscode-docker.config.template.attach.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.",
"vscode-docker.config.template.attach.description": "Command templates for `docker attach` / `docker exec -it` commands.",
"vscode-docker.config.template.logs.template": "The command template.",
"vscode-docker.config.template.logs.label": "The label displayed to the user.",
"vscode-docker.config.template.logs.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.",
"vscode-docker.config.template.logs.description": "Command templates for `docker logs` commands.",
"vscode-docker.config.template.composeUp.template": "The command template.",
"vscode-docker.config.template.composeUp.label": "The label displayed to the user.",
"vscode-docker.config.template.composeUp.match": "The regular expression for choosing the right template. Checked against docker-compose YAML files, folder name, etc.",
"vscode-docker.config.template.composeUp.description": "Command templates for `docker-compose up` commands.",
"vscode-docker.config.template.composeUpSubset.template": "The command template.",
"vscode-docker.config.template.composeUpSubset.label": "The label displayed to the user.",
"vscode-docker.config.template.composeUpSubset.match": "The regular expression for choosing the right template. Checked against docker-compose YAML files, folder name, etc.",
"vscode-docker.config.template.composeUpSubset.description": "Command templates for `docker-compose up <subset>` commands.",
"vscode-docker.config.template.composeDown.template": "The command template.",
"vscode-docker.config.template.composeDown.label": "The label displayed to the user.",
"vscode-docker.config.template.composeDown.match": "The regular expression for choosing the right template. Checked against docker-compose YAML files, folder name, etc.",
"vscode-docker.config.template.composeDown.description": "Command templates for `docker-compose down` commands.",
"vscode-docker.config.docker.containers.groupBy": "The property to use to group containers in Docker view: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, Tag, or None",
"vscode-docker.config.docker.containers.groupByLabel": "The items will be grouped by the value of this container label (e.g. `com.microsoft.created-by`)",
"vscode-docker.config.docker.containers.description": "Any secondary properties to display for a container (an array). Possible elements include: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, and Tag",
"vscode-docker.config.docker.containers.label": "The primary property to display for a container: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, or Tag",
"vscode-docker.config.docker.containers.sortBy": "The property to use to sort containers in Docker view: CreatedTime or Label",
"vscode-docker.config.docker.contexts.description": "Any secondary properties to display for a Docker context (an array). Possible elements include: Name, Description and DockerEndpoint",
"vscode-docker.config.docker.contexts.label": "The primary property to display for a Docker context: Name, Description or DockerEndpoint",
"vscode-docker.config.docker.contexts.showInStatusBar": "Show current Docker context in the status bar",
"vscode-docker.config.docker.images.groupBy": "The property to use to group images in Docker view: CreatedTime, FullTag, ImageId, None, Registry, Repository, RepositoryName, RepositoryNameAndTag, or Tag",
"vscode-docker.config.docker.images.description": "Any secondary properties to display for a image (an array). Possible elements include: CreatedTime, FullTag, ImageId, Registry, Repository, RepositoryName, RepositoryNameAndTag, Tag, and Size",
"vscode-docker.config.docker.images.label": "The primary property to display for a image: CreatedTime, FullTag, ImageId, Registry, Repository, RepositoryName, RepositoryNameAndTag, Tag, or Size",
"vscode-docker.config.docker.images.sortBy": "The property to use to sort images in Docker view: CreatedTime, Label, or Size",
"vscode-docker.config.docker.images.checkForOutdatedImages": "Check for outdated base images once per Visual Studio Code session",
"vscode-docker.config.docker.networks.groupBy": "The property to use to group networks in Docker view: CreatedTime, NetworkDriver, NetworkId, NetworkName, or None",
"vscode-docker.config.docker.networks.description": "Any secondary properties to display for a Docker network (an array). Possible elements include CreatedTime, NetworkDriver, NetworkId, and NetworkName",
"vscode-docker.config.docker.networks.label": "The primary property to display for a Docker network: CreatedTime, NetworkDriver, NetworkId, or NetworkName",
"vscode-docker.config.docker.networks.sortBy": "The property to use to sort networks in Docker view: CreatedTime or Label",
"vscode-docker.config.docker.networks.showBuiltIn": "Show the built-in networks in the explorer.",
"vscode-docker.config.docker.volumes.groupBy": "The property to use to group volumes in Docker view: CreatedTime, VolumeName, or None",
"vscode-docker.config.docker.volumes.description": "Any secondary properties to display for a Docker volume (an array). Possible values include CreatedTime and VolumeName",
"vscode-docker.config.docker.volumes.label": "The primary property to display for a Docker volume: CreatedTime or VolumeName",
"vscode-docker.config.docker.volumes.sortBy": "The property to use to sort volumes in Docker view: CreatedTime or Label",
"vscode-docker.config.docker.imageBuildContextPath": "Build context PATH to pass to Docker build command.",
"vscode-docker.config.docker.truncateLongRegistryPaths": "Set to true to truncate long image and container registry paths in Docker view",
"vscode-docker.config.docker.truncateMaxLength": "Maximum length of a registry paths displayed in Docker view, including ellipsis. The truncateLongRegistryPaths setting must be set to true for truncateMaxLength setting to be effective.",
"vscode-docker.config.docker.environment": "Environment variables that will be applied to all VS Code terminals and to all background processes started by the Docker extension. Use for variables like `DOCKER_HOST`, etc.",
"vscode-docker.config.docker.languageserver.diagnostics.deprecatedMaintainer": "Controls the diagnostic severity for the deprecated MAINTAINER instruction",
"vscode-docker.config.docker.languageserver.diagnostics.emptyContinuationLine": "Controls the diagnostic severity for flagging empty continuation lines found in instructions that span multiple lines",
"vscode-docker.config.docker.languageserver.diagnostics.directiveCasing": "Controls the diagnostic severity for parser directives that are not written in lowercase",
"vscode-docker.config.docker.languageserver.diagnostics.instructionCasing": "Controls the diagnostic severity for instructions that are not written in uppercase",
"vscode-docker.config.docker.languageserver.diagnostics.instructionCmdMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple CMD instructions",
"vscode-docker.config.docker.languageserver.diagnostics.instructionEntrypointMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple ENTRYPOINT instructions",
"vscode-docker.config.docker.languageserver.diagnostics.instructionHealthcheckMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple HEALTHCHECK instructions",
"vscode-docker.config.docker.languageserver.diagnostics.instructionJsonInSingleQuotes": "Controls the diagnostic severity for JSON instructions that are written incorrectly with single quotes",
"vscode-docker.config.docker.languageserver.diagnostics.instructionWorkdirRelative": "Controls the diagnostic severity for WORKDIR instructions that do not point to an absolute path",
"vscode-docker.config.docker.languageserver.formatter.ignoreMultilineInstructions": "Controls whether the Dockerfile formatter should ignore instructions that span multiple lines when formatting",
"vscode-docker.config.docker.dockerComposeBuild": "Set to true to include --build option when docker-compose command is invoked",
"vscode-docker.config.docker.dockerComposeDetached": "Set to true to include --d (detached) option when docker-compose command is invoked",
"vscode-docker.config.docker.showRemoteWorkspaceWarning": "Set to true to prompt to switch from \"UI\" extension mode to \"Workspace\" extension mode if an operation is not supported in UI mode.",
"vscode-docker.config.docker.scaffolding.templatePath": "The path to use for scaffolding templates.",
"vscode-docker.config.docker.dockerPath": "Absolute path to Docker client executable (`docker` command). If the path contains whitespace, it needs to be quoted appropriately.",
"vscode-docker.config.docker.composeCommand": "Command to use for Docker Compose actions (e.g. `docker-compose`, `docker compose`, etc.). If the executable path contains whitespace, it needs to be quoted appropriately. If unset, the extension will attempt to auto-detect the command to use.",
"vscode-docker.config.docker.enableDockerComposeLanguageService": "Whether or not to enable the preview Docker Compose Language Service. Changing requires restart to take effect.",
"vscode-docker.config.deprecated": "This setting has been deprecated and will be removed in a future release.",
"vscode-docker.commands.compose.down": "Compose Down",
"vscode-docker.commands.compose.restart": "Compose Restart",
"vscode-docker.commands.compose.up": "Compose Up",
"vscode-docker.commands.compose.up.subset": "Compose Up - Select Services",
"vscode-docker.commands.configure": "Add Docker Files to Workspace...",
"vscode-docker.commands.configureCompose": "Add Docker Compose Files to Workspace...",
"vscode-docker.commands.containers.attachShell": "Attach Shell",
"vscode-docker.commands.containers.browse": "Open in Browser",
"vscode-docker.commands.containers.configureExplorer": "Configure Explorer...",
"vscode-docker.commands.containers.downloadFile": "Download...",
"vscode-docker.commands.containers.inspect": "Inspect",
"vscode-docker.commands.containers.openFile": "Open",
"vscode-docker.commands.containers.prune": "Prune...",
"vscode-docker.commands.containers.refresh": "Refresh",
"vscode-docker.commands.containers.remove": "Remove...",
"vscode-docker.commands.containers.group.remove": "Remove...",
"vscode-docker.commands.containers.restart": "Restart",
"vscode-docker.commands.containers.select": "Select container",
"vscode-docker.commands.containers.start": "Start",
"vscode-docker.commands.containers.stop": "Stop",
"vscode-docker.commands.containers.stats": "Stats",
"vscode-docker.commands.containers.viewLogs": "View Logs",
"vscode-docker.commands.containers.composeGroup.logs": "Compose Logs",
"vscode-docker.commands.containers.composeGroup.start": "Compose Start",
"vscode-docker.commands.containers.composeGroup.stop": "Compose Stop",
"vscode-docker.commands.containers.composeGroup.restart": "Compose Restart",
"vscode-docker.commands.containers.composeGroup.down": "Compose Down",
"vscode-docker.commands.debugging.initializeForDebugging": "Initialize for Docker debugging",
"vscode-docker.commands.help": "Docker Help",
"vscode-docker.commands.help.reportIssue": "Report Issue",
"vscode-docker.commands.help.openWalkthrough": "Open Docker Extension Walkthrough",
"vscode-docker.commands.images.build": "Build Image...",
"vscode-docker.commands.images.configureExplorer": "Configure Explorer...",
"vscode-docker.commands.images.inspect": "Inspect",
"vscode-docker.commands.images.showDangling": "Show dangling images",
"vscode-docker.commands.images.hideDangling": "Hide dangling images",
"vscode-docker.commands.images.prune": "Prune...",
"vscode-docker.commands.images.pull": "Pull",
"vscode-docker.commands.images.push": "Push...",
"vscode-docker.commands.images.refresh": "Refresh",
"vscode-docker.commands.images.remove": "Remove...",
"vscode-docker.commands.images.group.remove": "Remove...",
"vscode-docker.commands.images.run": "Run",
"vscode-docker.commands.images.runAzureCli": "Run Azure CLI",
"vscode-docker.commands.images.runInteractive": "Run Interactive",
"vscode-docker.commands.images.tag": "Tag...",
"vscode-docker.commands.images.copyFullTag": "Copy Full Tag",
"vscode-docker.commands.openDockerDownloadPage": "Learn More About Installing Docker Desktop",
"vscode-docker.commands.networks.configureExplorer": "Configure Explorer...",
"vscode-docker.commands.networks.create": "Create...",
"vscode-docker.commands.networks.inspect": "Inspect",
"vscode-docker.commands.networks.prune": "Prune...",
"vscode-docker.commands.networks.refresh": "Refresh",
"vscode-docker.commands.networks.remove": "Remove...",
"vscode-docker.commands.pruneSystem": "Prune System...",
"vscode-docker.commands.registries.azure.buildImage": "Build Image in Azure...",
"vscode-docker.commands.registries.azure.createRegistry": "Create Registry...",
"vscode-docker.commands.registries.azure.deleteRegistry": "Delete Registry...",
"vscode-docker.commands.registries.azure.deleteRepository": "Delete Repository...",
"vscode-docker.commands.registries.azure.openInPortal": "Open in Portal",
"vscode-docker.commands.registries.azure.selectSubscriptions": "Select Subscriptions...",
"vscode-docker.commands.registries.azure.untagImage": "Untag Image...",
"vscode-docker.commands.registries.azure.viewProperties": "View Properties",
"vscode-docker.commands.registries.connect": "Connect Registry...",
"vscode-docker.commands.registries.reconnectRegistry": "Re-enter credentials",
"vscode-docker.commands.registries.copyImageDigest": "Copy Image Digest",
"vscode-docker.commands.registries.inspectRemoteImageManifest": "Inspect Image Manifest",
"vscode-docker.commands.registries.copyRemoteFullTag": "Copy Full Tag",
"vscode-docker.commands.registries.deleteImage": "Delete Image...",
"vscode-docker.commands.registries.deployImageToAzure": "Deploy Image to Azure App Service...",
"vscode-docker.commands.registries.deployImageToAca": "Deploy Image to Azure Container Apps...",
"vscode-docker.commands.registries.disconnectRegistry": "Disconnect",
"vscode-docker.commands.registries.genericV2.removeTrackedRegistry": "Disconnect from Generic Docker Registry",
"vscode-docker.commands.registries.genericV2.addTrackedRegistry": "Connect to Generic Docker Registry...",
"vscode-docker.commands.registries.dockerHub.openInBrowser": "Open in Browser",
"vscode-docker.commands.registries.help": "Registries Help",
"vscode-docker.commands.registries.logInToDockerCli": "Log In to Docker CLI",
"vscode-docker.commands.registries.logOutOfDockerCli": "Log Out of Docker CLI",
"vscode-docker.commands.registries.pullImage": "Pull Image",
"vscode-docker.commands.registries.pullRepository": "Pull Repository",
"vscode-docker.commands.registries.refresh": "Refresh",
"vscode-docker.commands.volumes.configureExplorer": "Configure Explorer...",
"vscode-docker.commands.volumes.inspect": "Inspect",
"vscode-docker.commands.volumes.prune": "Prune...",
"vscode-docker.commands.volumes.refresh": "Refresh",
"vscode-docker.commands.volumes.remove": "Remove...",
"vscode-docker.commands.contexts.use": "Use",
"vscode-docker.commands.contexts.inspect": "Inspect",
"vscode-docker.commands.contexts.remove": "Remove...",
"vscode-docker.commands.contexts.configureExplorer": "Configure Explorer...",
"vscode-docker.commands.contexts.refresh": "Refresh",
"vscode-docker.commands.contexts.help": "Docker Context Help",
"vscode-docker.commands.activateRegistryProviders": "Activate Registry Providers...",
"vscode-docker.commands.category.docker": "Docker",
"vscode-docker.commands.category.dockerContainers": "Docker Containers",
"vscode-docker.commands.category.dockerImages": "Docker Images",
"vscode-docker.commands.category.dockerNetworks": "Docker Networks",
"vscode-docker.commands.category.azureContainerRegistry": "Azure Container Registry",
"vscode-docker.commands.category.dockerRegistries": "Docker Registries",
"vscode-docker.commands.category.dockerHub": "Docker Hub",
"vscode-docker.commands.category.dockerVolumes": "Docker Volumes",
"vscode-docker.commands.category.contexts": "Docker Contexts",
"vscode-docker.views.dockerContainers": "Containers",
"vscode-docker.views.activityBar": "Docker",
"vscode-docker.views.dockerImages": "Images",
"vscode-docker.views.dockerRegistries": "Registries",
"vscode-docker.views.dockerNetworks": "Networks",
"vscode-docker.views.dockerVolumes": "Volumes",
"vscode-docker.views.dockerContexts": "Contexts",
"vscode-docker.views.help": "Help and Feedback",
"vscode-docker.workspaceTrust.description": "Workspace must be trusted in order to perform relevant Docker actions.",
"vscode-docker.walkthrough.dockerStart.title": "Getting Started with Docker",
"vscode-docker.walkthrough.dockerStart.description": "Learn about Docker and the Docker extension for Visual Studio Code",
"vscode-docker.walkthrough.dockerStart.openFolder.title": "Open a Workspace Folder",
"vscode-docker.walkthrough.dockerStart.openFolder.description": "Open a workspace folder to get started with Docker extension features.\n[Open Folder](command:workbench.action.files.openFolder)",
"vscode-docker.walkthrough.dockerStart.openFolderMac.description": "Open a workspace folder to get started with Docker extension features.\n[Open Folder](command:workbench.action.files.openFileFolder)",
"vscode-docker.walkthrough.dockerStart.scaffold.title": "Add Docker Files to Workspace",
"vscode-docker.walkthrough.dockerStart.scaffold.description": "A Dockerfile contains the instructions to assemble an image containing your app and its dependencies. Using this image to run your app in a container creates a production-like, reproducible runtime environment.\n\nIntelliSense support for authoring your Dockerfile is provided.\n[Add Docker Files](command:vscode-docker.configure)",
"vscode-docker.walkthrough.dockerStart.buildImage.title": "Build an Image",
"vscode-docker.walkthrough.dockerStart.buildImage.description": "The Docker extension makes it simple to build your image.\n[Build Image](command:vscode-docker.images.build)",
"vscode-docker.walkthrough.dockerStart.runContainer.title": "Run a Container",
"vscode-docker.walkthrough.dockerStart.runContainer.description": "You can run any image on your system including those you've built with a Dockerfile.\n[Run Image](command:vscode-docker.images.run)",
"vscode-docker.walkthrough.dockerStart.dockerExplorer.title": "Use the Docker Explorer",
"vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)",
"vscode-docker.walkthrough.dockerStart.pushImage.title": "Push an Image to a Container Registry",
"vscode-docker.walkthrough.dockerStart.pushImage.description": "The Docker Extension allows you to push your Docker image to Docker Hub, Azure Container Registries and other registry providers.\n[Push an Image](command:vscode-docker.images.push)",
"vscode-docker.walkthrough.dockerStart.azDeploy.title": "Deploy to Azure App Service",
"vscode-docker.walkthrough.dockerStart.azDeploy.description": "The Docker extension helps you deploy your containerized applications and take advantage of a fully-managed platform using Azure App Service. Prior to deployment, the image must be uploaded to either Azure Container Registry or Docker Hub.\n\nAfter a successful deployment, select **Open Site** in the notification. Your container is running in Azure!\n[Deploy](command:vscode-docker.registries.deployImageToAzure)",
"vscode-docker.walkthrough.dockerStart.learn.title": "Learn More",
"vscode-docker.walkthrough.dockerStart.learn.description": "Great job! You've now completed Getting Started with Docker. But don't stop here! There are plenty of ways to become more proficient building containerized applications using the Docker extension.\n\nFor example, you can [debug a container](https://code.visualstudio.com/docs/containers/debug-common), or [run multiple containers](https://code.visualstudio.com/docs/containers/docker-compose) at once using Docker Compose.\n\nCheck out our [documentation](https://code.visualstudio.com/docs/containers/overview) to make the most of the Docker extension for VS Code!"
}