Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0b950a1d71b982bf980252a0c947621cc77d5a70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
################################################################################
# Copyright (c) 2014, 2018 Red Hat.
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#     Red Hat - Initial Contribution
###############################################################################

BuildDockerImageLaunchConfiguration.error.incomplete=Launch configuration to build Docker image is incomplete.

BuildDockerImageLaunchConfigurationMainTab.name=Main
BuildDockerImageLaunchConfigurationMainTab.connection.group.label=Docker Connection
BuildDockerImageLaunchConfigurationMainTab.connection.group.tooltip=The docker daemon that will be used to build the image
BuildDockerImageLaunchConfigurationMainTab.connection.missing=Docker Connection is missing or invalid
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.group.label=Build Context Path:
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.missing=Build Context Path is missing or invalid
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.missingDockerfile=Build Context Path does not contain a Dockerfile
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.browseworkspace.button.label=Browse Workspace...
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.browseworkspace.dialog.title=Browse Workspace...
BuildDockerImageLaunchConfigurationMainTab.buildContextPath.browsefilesystem.button.label=Browse File System...
BuildDockerImageLaunchConfigurationMainTab.dockerfileName.label=Dockerfile name
BuildDockerImageLaunchConfigurationMainTab.dockerfilePath.group.label=Dockerfile Path:
BuildDockerImageLaunchConfigurationMainTab.repoName.label=Repository name (and optional tag)
BuildDockerImageLaunchConfigurationMainTab.repoName.missing=A repository name is recommended
BuildDockerImageLaunchConfigurationMainTab.options.group.label=Options
BuildDockerImageLaunchConfigurationMainTab.options.quiet.button.label=Suppress the verbose output generated by the containers
BuildDockerImageLaunchConfigurationMainTab.options.noCache.button.label=Do not use cache when building the image
BuildDockerImageLaunchConfigurationMainTab.options.rm.button.label=Remove intermediate containers after a successful build
BuildDockerImageLaunchConfigurationMainTab.options.forceRM.button.label=Always remove intermediate containers

BuildDockerImageShortcut.launchconfig.error=Unable to find the launch configuration to build the Docker image from the selected Dockerfile.
BuildDockerImageShortcut.no.connections.msg=No Docker connection exists
BuildDockerImageShortcut.no.connections.desc=Built images must be stored under a particular Docker Daemon, \
but there are no existing docker connections to select. Do you wish to create a new Docker Daemon connection ?

ImageBuildShortcut.error.msg=Error while building Docker Image
ImageBuildShortcutConfigSelection.title=Launch Configuration Selection
ImageBuildShortcutChooseLaunch.msg=Choose a launch configuration to run
ImageBuildShortcutConnectionSelection.title=Launch Configuration Selection
ImageBuildShortcutChooseConnection.msg=Choose the Docker Connection to use

MissingConnectionError.msg=No Docker connection named ''{0}'' exists.

RunDockerImageLaunchConfiguration.creation.failure=Failed to save launch configuration for the image to run
RunDockerImageLaunchConfiguration.load.failure=Failed to load launch configuration

RunMainTab.name=Main
RunMainTabSelectConnection.tooltip=Select the Docker Connection to use
RunVolumesTab.name=Volumes
RunPortsTab.name=Ports
RunLinksTab.name=Links
RunResourcesTab.name=Resources
RunEnvTab.name=Environment
RunLabelsTab.name=Labels
RunNetworkTab.name=Network

NoConnectionError.msg=No Docker connection exists

UpdateLaunchConfiguration.named.error=Failed to update launch configuration named ''{0}'' after connection name changed
UpdateLaunchConfiguration.error=Failed to retrieve launch configurations after connection name changed

DockerComposeUpShortcut.launchconfig.error=Unable to find the launch configuration to run Docker Compose from the selected file.
DockerComposeUpShortcut.no.connections.msg=No Docker connection exists
DockerComposeUpShortcut.no.connections.desc=Docker Compose must be executed on a particular Docker Daemon, \
but there are no existing docker connections to select. Do you wish to create a new Docker Daemon connection ?

DockerComposeUpLaunchConfigurationMainTab.name=Main
DockerComposeUpLaunchConfigurationMainTab.connection.group.label=Docker Connection
DockerComposeUpLaunchConfigurationMainTab.connection.group.tooltip=The docker daemon that will be used to run the 'docker-compose up' command
DockerComposeUpLaunchConfigurationMainTab.connection.missing=Docker Connection is missing or invalid
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.group.label=Docker Compose Working Directory:
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.missing=Docker Compose working directory is missing or invalid
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.missingDockerComposeFile=Docker Compose working directory does not contain a 'docker-compose.yml' file
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.browseworkspace.button.label=Browse Workspace...
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.browseworkspace.dialog.title=Browse Workspace...
DockerComposeUpLaunchConfigurationMainTab.dockerComposePath.browsefilesystem.button.label=Browse File System...
DockerComposeUpShortcutConfigSelection.title=Docker Compose Configuration
DockerComposeUpShortcutChooseLaunch.msg=Select the launch configuration to run 'docker-compose'

LaunchShortcut.error=Error
LaunchShortcut.error.msg=The selection is not a valid resource 

ContainerNotFinished.msg=Container {0} not finished
ContainerLoggingNotResponding.msg=Container {0} logging job is not responding after finish, canceling...


Back to the top