foreman_docker 2.0.1 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_docker/image_step.js +17 -16
- data/app/assets/stylesheets/foreman_docker/autocomplete.css.scss +2 -2
- data/app/controllers/api/v2/containers_controller.rb +23 -15
- data/app/controllers/containers/steps_controller.rb +3 -3
- data/app/controllers/containers_controller.rb +17 -19
- data/app/helpers/container_steps_helper.rb +5 -1
- data/app/helpers/containers_helper.rb +5 -7
- data/app/models/concerns/fog_extensions/fogdocker/server.rb +1 -1
- data/app/models/docker_registry.rb +16 -4
- data/app/models/foreman_docker/docker.rb +2 -1
- data/app/models/service/containers.rb +1 -1
- data/app/overrides/remove_docker_from_compute_profiles.rb +14 -0
- data/app/overrides/rename_virtual_machines_containers.rb +10 -0
- data/app/services/foreman_docker/container_remover.rb +20 -0
- data/app/views/containers/index.html.erb +4 -7
- data/app/views/containers/show.html.erb +2 -2
- data/app/views/containers/steps/_image_hub_tab.html.erb +41 -40
- data/app/views/foreman_docker/common_parameters/_dns_entry.html.erb +2 -2
- data/app/views/foreman_docker/common_parameters/_environment_variable.html.erb +2 -2
- data/app/views/foreman_docker/common_parameters/_exposed_port.html.erb +1 -1
- data/app/views/registries/index.html.erb +7 -7
- data/config/routes.rb +1 -1
- data/db/migrate/20141209182008_remove_docker_tables.rb +8 -2
- data/lib/foreman_docker/engine.rb +1 -0
- data/lib/foreman_docker/version.rb +1 -1
- data/locale/Makefile +58 -4
- data/locale/de/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/de/foreman_docker.edit.po +631 -0
- data/locale/de/foreman_docker.po +110 -78
- data/locale/de/foreman_docker.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/es/foreman_docker.edit.po +631 -0
- data/locale/es/foreman_docker.po +110 -78
- data/locale/es/foreman_docker.po.time_stamp +0 -0
- data/locale/foreman_docker.pot +414 -219
- data/locale/fr/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/fr/foreman_docker.edit.po +632 -0
- data/locale/fr/foreman_docker.po +111 -84
- data/locale/fr/foreman_docker.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/it/foreman_docker.edit.po +630 -0
- data/locale/it/foreman_docker.po +110 -82
- data/locale/it/foreman_docker.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/ja/foreman_docker.edit.po +634 -0
- data/locale/ja/foreman_docker.po +109 -64
- data/locale/ja/foreman_docker.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/ko/foreman_docker.edit.po +629 -0
- data/locale/ko/foreman_docker.po +108 -65
- data/locale/ko/foreman_docker.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/pt_BR/foreman_docker.edit.po +631 -0
- data/locale/pt_BR/foreman_docker.po +109 -74
- data/locale/pt_BR/foreman_docker.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/ru/foreman_docker.edit.po +630 -0
- data/locale/ru/foreman_docker.po +110 -72
- data/locale/ru/foreman_docker.po.time_stamp +0 -0
- data/locale/zanata.xml +3 -3
- data/locale/zh_CN/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/zh_CN/foreman_docker.edit.po +628 -0
- data/locale/zh_CN/foreman_docker.po +108 -64
- data/locale/zh_CN/foreman_docker.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_docker.mo +0 -0
- data/locale/zh_TW/foreman_docker.edit.po +628 -0
- data/locale/zh_TW/foreman_docker.po +108 -65
- data/locale/zh_TW/foreman_docker.po.time_stamp +0 -0
- data/test/factories/docker_registry.rb +4 -0
- data/test/functionals/api/v2/containers_controller_test.rb +18 -4
- data/test/functionals/api/v2/registries_controller_test.rb +2 -0
- data/test/functionals/containers_controller_test.rb +56 -8
- data/test/integration/container_steps_test.rb +1 -1
- data/test/integration/container_test.rb +1 -1
- data/test/units/container_remover_test.rb +31 -0
- data/test/units/container_test.rb +6 -0
- data/test/units/containers_service_test.rb +2 -0
- data/test/units/docker_registry_test.rb +20 -3
- data/test/units/foreman_docker/docker_test.rb +10 -0
- metadata +57 -6
@@ -64,7 +64,7 @@
|
|
64
64
|
<%= dns %><br/>
|
65
65
|
<% end %>
|
66
66
|
</td>
|
67
|
-
</tr>
|
67
|
+
</tr>
|
68
68
|
<tr>
|
69
69
|
<td><%= _('Environment Variables') %></td>
|
70
70
|
<td>
|
@@ -169,7 +169,7 @@
|
|
169
169
|
<div class="form-group">
|
170
170
|
<%= label_tag "commit[author]", _("Author"), :class=>"col-sm-2 control-label" %>
|
171
171
|
<%= text_field :commit, :author, { :class => "col-sm-8",
|
172
|
-
:placeholder => _('Foreman user <foremaner@
|
172
|
+
:placeholder => _('Foreman user <foremaner@example.org>') } %>
|
173
173
|
</div>
|
174
174
|
<div class="form-group">
|
175
175
|
<%= label_tag "commit[comment]", _("Comment"), :class=>"col-sm-2 control-label" %>
|
@@ -1,53 +1,54 @@
|
|
1
1
|
<%- model = model_for(registry) %>
|
2
2
|
<%= form_for model, :namespace => registry,
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
:class => 'form-horizontal',
|
4
|
+
:url => wizard_path,
|
5
|
+
:method => :put,
|
6
|
+
:html => {:data => {:registry => registry}} do |f| %>
|
7
7
|
<% if registry == "registry" -%>
|
8
8
|
<div class="input-group col-md-6">
|
9
9
|
<%= select_registry f %>
|
10
10
|
</div>
|
11
11
|
<% end -%>
|
12
12
|
|
13
|
-
<div>
|
14
|
-
<div class=
|
15
|
-
|
16
|
-
|
13
|
+
<div class="form-group">
|
14
|
+
<div class='row'>
|
15
|
+
<% help_type = f.object.errors[:repository_name].present? ? :help_block : :help_inline %>
|
16
|
+
<%= text_f(
|
17
|
+
f,
|
18
|
+
:repository_name,
|
19
|
+
:label => _('Search'),
|
20
|
+
:size => 'col-md-6',
|
21
|
+
:'data-url' => auto_complete_repository_name_image_search_path(model.compute_resource_id),
|
22
|
+
:value => f.object.repository_name.present? ? f.object.repository_name : '',
|
23
|
+
:'data-registry' => registry,
|
24
|
+
:'data-search' => true,
|
25
|
+
:focus_on_load => true,
|
26
|
+
:placeholder => _('Find your favorite container, e.g. centos'),
|
27
|
+
help_type => link_to_function(
|
28
|
+
icon_text('search', ''),
|
29
|
+
'searchRepo(this)',
|
30
|
+
:class => 'btn btn-default',
|
31
|
+
:id => "search_repository_#{registry}",
|
32
|
+
:'data-registry' => registry,
|
33
|
+
:'data-url' => search_repository_image_search_path(model.compute_resource_id)
|
34
|
+
) + content_tag(:span, '', :id => 'image-confirmation').html_safe) %>
|
35
|
+
</div>
|
36
|
+
<div class='row'>
|
37
|
+
<%= text_f f, :tag,
|
38
|
+
:'data-registry' => registry,
|
39
|
+
:'data-tag' => true,
|
40
|
+
:'data-url' => auto_complete_image_tag_image_search_path(model.compute_resource_id) %>
|
41
|
+
</div>
|
42
|
+
</div>
|
17
43
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
:focus_on_load => true,
|
24
|
-
:placeholder => _('Find your favorite container, e.g: centos')) %>
|
25
|
-
<span class="input-group-addon glyphicon" data-search-addon=true></span>
|
26
|
-
<span class="input-group-btn">
|
27
|
-
<%= button_tag(:class => 'btn btn-default',
|
28
|
-
:type => 'button',
|
29
|
-
:id => "search_repository_#{registry}",
|
30
|
-
:'data-registry' => registry,
|
31
|
-
:'data-url' => search_repository_image_search_path(model.compute_resource_id),
|
32
|
-
:onclick => 'searchRepo(this)') do %>
|
33
|
-
<span class="glyphicon glyphicon-search"></span>
|
34
|
-
<% end %>
|
35
|
-
</span>
|
36
|
-
</div>
|
44
|
+
<div class="col-md-12">
|
45
|
+
<div data-search-spinner=true class='col-md-offset-3 hide'>
|
46
|
+
<span data-wait-text=true>
|
47
|
+
</span>
|
48
|
+
<%= spinner('', :id => "loading_repositories_indicator_#{registry}") %>
|
37
49
|
</div>
|
38
|
-
|
39
|
-
:'data-registry' => registry,
|
40
|
-
:'data-tag' => true,
|
41
|
-
:'data-url' => auto_complete_image_tag_image_search_path(model.compute_resource_id) %>
|
42
|
-
<div class="col-md-12">
|
43
|
-
<div data-search-spinner=true class='col-md-offset-3 hide'>
|
44
|
-
<span data-wait-text=true>
|
45
|
-
</span>
|
46
|
-
<%= spinner('', :id => "loading_repositories_indicator_#{registry}") %>
|
47
|
-
</div>
|
48
|
-
<div data-repository-search-results=true >
|
49
|
-
</div>
|
50
|
+
<div data-repository-search-results=true >
|
50
51
|
</div>
|
51
|
-
<%= render :partial => 'form_buttons', locals: { :registry => registry} %>
|
52
52
|
</div>
|
53
|
+
<%= render :partial => 'form_buttons', locals: { :registry => registry} %>
|
53
54
|
<% end -%>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<tr class="fields form-group <%= 'has-error' if f.object.errors.any? %>">
|
2
2
|
<td><%= f.text_field(:name, :class => "form-control",
|
3
|
-
:placeholder => _("DNS e.g
|
3
|
+
:placeholder => _("DNS e.g. 8.8.8.8")) %></td>
|
4
4
|
<td style='vertical-align: middle' class='text-center'>
|
5
5
|
<span class="help-block">
|
6
6
|
<%= link_to_remove_fields('', f) %>
|
@@ -9,4 +9,4 @@
|
|
9
9
|
<span class="help-block">
|
10
10
|
<%= f.object.errors.full_messages.to_sentence %>
|
11
11
|
</span>
|
12
|
-
</tr>
|
12
|
+
</tr>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<tr class="fields form-group <%= 'error' if f.object.errors.any? %>">
|
2
2
|
<td><%= f.text_field(:name, :class => "form-control",
|
3
|
-
:placeholder => _("Name, e.g
|
3
|
+
:placeholder => _("Name, e.g. PING_HOST")) %></td>
|
4
4
|
<td><%= f.text_field(:value, :class => "form-control",
|
5
|
-
:placeholder => _("Value, e.g
|
5
|
+
:placeholder => _("Value, e.g. example.org")) %></td>
|
6
6
|
<td style='vertical-align: middle' class='text-center'>
|
7
7
|
<span class="help-block">
|
8
8
|
<%= link_to_remove_fields('', f) %>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<tr class="fields form-group <%= 'has-error' if f.object.errors.any? %>">
|
2
2
|
<td><%= f.text_field(:name, :class => "form-control",
|
3
|
-
:placeholder => _("Port
|
3
|
+
:placeholder => _("Port number e.g. 22")) %></td>
|
4
4
|
<td><%= f.select :value, [['TCP','tcp'],['UDP','udp']] %></td>
|
5
5
|
<td style='vertical-align: middle' class='text-center'>
|
6
6
|
<span class="help-block">
|
@@ -1,17 +1,14 @@
|
|
1
1
|
<% title _("Registries") %>
|
2
2
|
|
3
|
-
|
4
|
-
<% title_actions button_group(link_to_if_authorized _("New Registry"), hash_for_new_registry_path,
|
5
|
-
:class => 'btn-success' ) %>
|
6
|
-
<% end %>
|
3
|
+
<%= title_actions(new_link(_("New registry"))) %>
|
7
4
|
|
8
5
|
<table class="table table-bordered table-striped table-condensed" data-table="inline">
|
9
6
|
</thead>
|
10
7
|
<tr>
|
11
8
|
<th class="text-center"><%= sort :name, :as => _("Name") %></th>
|
12
|
-
<th class="hidden-tablet hidden-xs text-center"><%= sort :url, :as => _("
|
9
|
+
<th class="hidden-tablet hidden-xs text-center"><%= sort :url, :as => _("URL") %></th>
|
13
10
|
<th class="hidden-tablet hidden-xs text-center"><%= _("Description") %></th>
|
14
|
-
<th
|
11
|
+
<th><%= _('Actions') %></th>
|
15
12
|
</tr>
|
16
13
|
</thead>
|
17
14
|
|
@@ -20,7 +17,10 @@
|
|
20
17
|
<td><%= link_to_if_authorized trunc_with_tooltip(r.name), hash_for_edit_registry_path(:id => r).merge(:auth_object => r, :authorizer => authorizer) %></td>
|
21
18
|
<td class="hidden-tablet hidden-xs text-center"><%= trunc_with_tooltip(r.url) %></td>
|
22
19
|
<td class="hidden-tablet hidden-xs text-center"><%= trunc_with_tooltip(r.description) %></td>
|
23
|
-
<td><%=
|
20
|
+
<td><%= action_buttons(
|
21
|
+
display_delete_if_authorized hash_for_registry_path(:id => r).
|
22
|
+
merge(:auth_object => r, :authorizer => authorizer),
|
23
|
+
:confirm => _("Delete %s?") % r.name) %></td>
|
24
24
|
</tr>
|
25
25
|
<% end %>
|
26
26
|
</table>
|
data/config/routes.rb
CHANGED
@@ -20,7 +20,7 @@ Rails.application.routes.draw do
|
|
20
20
|
|
21
21
|
resources :registries, :except => [:show]
|
22
22
|
|
23
|
-
scope :
|
23
|
+
scope path: '/docker', as: :foreman_docker do
|
24
24
|
namespace :api, :defaults => { :format => 'json' } do
|
25
25
|
scope "(:apiv)", :module => :v2, :defaults => { :apiv => 'v2' }, :apiv => /v2/,
|
26
26
|
:constraints => ApiConstraints.new(:version => 2) do
|
@@ -20,8 +20,14 @@ class RemoveDockerTables < ActiveRecord::Migration
|
|
20
20
|
tag = DockerTag.find(container.docker_tag_id)
|
21
21
|
container.update_attribute(:tag, tag.tag)
|
22
22
|
end
|
23
|
-
|
24
|
-
|
23
|
+
|
24
|
+
if foreign_key_exists?(:containers, :name => :containers_docker_image_id_fk)
|
25
|
+
remove_foreign_key :containers, :name => :containers_docker_image_id_fk
|
26
|
+
end
|
27
|
+
if foreign_key_exists?(:containers, :name => :containers_docker_tag_id_fk)
|
28
|
+
remove_foreign_key :containers, :name => :containers_docker_tag_id_fk
|
29
|
+
end
|
30
|
+
|
25
31
|
remove_column :containers, :docker_image_id
|
26
32
|
remove_column :containers, :docker_tag_id
|
27
33
|
|
data/locale/Makefile
CHANGED
@@ -1,6 +1,60 @@
|
|
1
1
|
#
|
2
|
-
# Makefile for PO merging and MO generation.
|
3
|
-
# locale/README in the Foreman Core.
|
2
|
+
# Makefile for PO merging and MO generation. More info in the README.
|
4
3
|
#
|
5
|
-
|
6
|
-
|
4
|
+
# make all-mo (default) - generate MO files
|
5
|
+
# make check - check translations using translate-tool
|
6
|
+
# make tx-update - download and merge translations from Transifex
|
7
|
+
# make clean - clean everything
|
8
|
+
#
|
9
|
+
DOMAIN = foreman_docker
|
10
|
+
VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load(Dir.glob("../*.gemspec")[0]);puts spec.version')
|
11
|
+
POTFILE = $(DOMAIN).pot
|
12
|
+
MOFILE = $(DOMAIN).mo
|
13
|
+
POFILES = $(shell find . -name '$(DOMAIN).po')
|
14
|
+
MOFILES = $(patsubst %.po,%.mo,$(POFILES))
|
15
|
+
POXFILES = $(patsubst %.po,%.pox,$(POFILES))
|
16
|
+
EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))
|
17
|
+
|
18
|
+
%.mo: %.po
|
19
|
+
mkdir -p $(shell dirname $@)/LC_MESSAGES
|
20
|
+
msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
|
21
|
+
|
22
|
+
# Generate MO files from PO files
|
23
|
+
all-mo: $(MOFILES)
|
24
|
+
|
25
|
+
# Check for malformed strings
|
26
|
+
%.pox: %.po
|
27
|
+
msgfmt -c $<
|
28
|
+
pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
|
29
|
+
-t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
|
30
|
+
cat $@
|
31
|
+
! grep -q msgid $@
|
32
|
+
|
33
|
+
%.edit.po:
|
34
|
+
touch $@
|
35
|
+
|
36
|
+
check: $(POXFILES)
|
37
|
+
|
38
|
+
# Unify duplicate translations
|
39
|
+
uniq-po:
|
40
|
+
for f in $(shell find ./ -name "*.po") ; do \
|
41
|
+
msguniq $$f -o $$f ; \
|
42
|
+
done
|
43
|
+
|
44
|
+
tx-pull: $(EDITFILES)
|
45
|
+
tx pull -f
|
46
|
+
for f in $(EDITFILES) ; do \
|
47
|
+
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
48
|
+
done
|
49
|
+
|
50
|
+
tx-update: tx-pull
|
51
|
+
@echo
|
52
|
+
@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation, then make -C locale mo-files to finish
|
53
|
+
@echo
|
54
|
+
|
55
|
+
mo-files: $(MOFILES)
|
56
|
+
git add $(POFILES) $(POTFILE) ../locale/*/LC_MESSAGES
|
57
|
+
git commit -m "i18n - pulling from tx"
|
58
|
+
@echo
|
59
|
+
@echo Changes commited!
|
60
|
+
@echo
|
Binary file
|
@@ -0,0 +1,631 @@
|
|
1
|
+
# hpeters <hpeters@redhat.com>, 2015. #zanata
|
2
|
+
# jdimanos <jdimanos@redhat.com>, 2015. #zanata
|
3
|
+
msgid ""
|
4
|
+
msgstr ""
|
5
|
+
"Project-Id-Version: version 0.0.1\n"
|
6
|
+
"Report-Msgid-Bugs-To: \n"
|
7
|
+
"PO-Revision-Date: 2015-04-27 11:49+0000\n"
|
8
|
+
"Last-Translator: hpeters <hpeters@redhat.com>\n"
|
9
|
+
"Language-Team: German\n"
|
10
|
+
"MIME-Version: 1.0\n"
|
11
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12
|
+
"Content-Transfer-Encoding: 8bit\n"
|
13
|
+
"Language: de\n"
|
14
|
+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
15
|
+
"X-Generator: Zanata 3.6.0\n"
|
16
|
+
|
17
|
+
#: ../app/controllers/api/v2/containers_controller.rb:13
|
18
|
+
msgid "List all containers"
|
19
|
+
msgstr "Alle Container auflisten"
|
20
|
+
|
21
|
+
#: ../app/controllers/api/v2/containers_controller.rb:15
|
22
|
+
msgid "List all containers on a compute resource"
|
23
|
+
msgstr ""
|
24
|
+
|
25
|
+
#: ../app/controllers/api/v2/containers_controller.rb:29
|
26
|
+
msgid "Show a container"
|
27
|
+
msgstr "Container anzeigen"
|
28
|
+
|
29
|
+
#: ../app/controllers/api/v2/containers_controller.rb:31
|
30
|
+
msgid "Show container on a compute resource"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
#: ../app/controllers/api/v2/containers_controller.rb:43
|
34
|
+
msgid "Registry this container will have to use to get the image"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
#: ../app/controllers/api/v2/containers_controller.rb:46
|
38
|
+
msgid "Name of the repository to use to create the container. e.g. centos"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
#: ../app/controllers/api/v2/containers_controller.rb:49
|
42
|
+
msgid "Tag to use to create the container. e.g. latest"
|
43
|
+
msgstr ""
|
44
|
+
|
45
|
+
#: ../app/controllers/api/v2/containers_controller.rb:60
|
46
|
+
msgid "The capsule this container will have to use to get the image. Relevant for images retrieved from katello registry."
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
#: ../app/controllers/api/v2/containers_controller.rb:66
|
50
|
+
msgid "Create a container"
|
51
|
+
msgstr "Container erstellen"
|
52
|
+
|
53
|
+
#: ../app/controllers/api/v2/containers_controller.rb:68
|
54
|
+
msgid "Create container on a compute resource"
|
55
|
+
msgstr ""
|
56
|
+
|
57
|
+
#: ../app/controllers/api/v2/containers_controller.rb:84
|
58
|
+
msgid "Wrong attributes: %s"
|
59
|
+
msgstr "Fehlerhafte Attribute: %s"
|
60
|
+
|
61
|
+
#: ../app/controllers/api/v2/containers_controller.rb:88
|
62
|
+
msgid "Delete a container"
|
63
|
+
msgstr "Container löschen"
|
64
|
+
|
65
|
+
#: ../app/controllers/api/v2/containers_controller.rb:90
|
66
|
+
msgid "Delete container on a compute resource"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
#: ../app/controllers/api/v2/containers_controller.rb:98
|
70
|
+
msgid "Show container logs"
|
71
|
+
msgstr "Container-Protokolle anzeigen"
|
72
|
+
|
73
|
+
#: ../app/controllers/api/v2/containers_controller.rb:100
|
74
|
+
msgid "Show logs from a container on a compute resource"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
#: ../app/controllers/api/v2/containers_controller.rb:105
|
78
|
+
msgid "Number of lines to tail. Default: 100"
|
79
|
+
msgstr "Anzahl der anzuzeigenden Zeilen. Standard: 100"
|
80
|
+
|
81
|
+
#: ../app/controllers/api/v2/containers_controller.rb:114
|
82
|
+
msgid "Run power operation on a container"
|
83
|
+
msgstr "Stromoperation auf einem Container ausführen"
|
84
|
+
|
85
|
+
#: ../app/controllers/api/v2/containers_controller.rb:116
|
86
|
+
msgid "Run power operation on a container on a compute resource"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
#: ../app/controllers/api/v2/containers_controller.rb:121
|
90
|
+
msgid "power action, valid actions are (start), (stop), (status)"
|
91
|
+
msgstr "Stromaktion, gültige Aktionen sind (start), (stop), (status)"
|
92
|
+
|
93
|
+
#: ../app/controllers/api/v2/containers_controller.rb:134
|
94
|
+
msgid "Unknown method: available power operations are %s"
|
95
|
+
msgstr "Unbekannte Methode: verfügbare Stromoperationen sind %s"
|
96
|
+
|
97
|
+
#: ../app/controllers/api/v2/registries_controller.rb:22
|
98
|
+
msgid "List all docker registries"
|
99
|
+
msgstr ""
|
100
|
+
|
101
|
+
#: ../app/controllers/api/v2/registries_controller.rb:29
|
102
|
+
msgid "Show a docker registry"
|
103
|
+
msgstr ""
|
104
|
+
|
105
|
+
#: ../app/controllers/api/v2/registries_controller.rb:34
|
106
|
+
msgid "Create a docker registry"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
#: ../app/controllers/api/v2/registries_controller.rb:41
|
110
|
+
msgid "Update a docker registry"
|
111
|
+
msgstr ""
|
112
|
+
|
113
|
+
#: ../app/controllers/api/v2/registries_controller.rb:48
|
114
|
+
msgid "Delete a docker registry"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
#: ../app/controllers/containers_controller.rb:25
|
118
|
+
msgid "Container %s is being deleted."
|
119
|
+
msgstr "Container %s wird gelöscht."
|
120
|
+
|
121
|
+
#: ../app/controllers/containers_controller.rb:44
|
122
|
+
msgid "%{container} commit was successful"
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
#: ../app/controllers/containers_controller.rb:47
|
126
|
+
msgid "Failed to commit %{container}: %{e}"
|
127
|
+
msgstr "Festschreiben von %{container} fehlgeschlagen: %{e}"
|
128
|
+
|
129
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author hpeters
|
130
|
+
#: ../app/controllers/containers_controller.rb:60
|
131
|
+
msgid "%{vm} is now %{vm_state}"
|
132
|
+
msgstr "%{vm} ist jetzt %{vm_state}"
|
133
|
+
|
134
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author hpeters
|
135
|
+
#: ../app/controllers/containers_controller.rb:64
|
136
|
+
msgid "failed to %{action} %{vm}"
|
137
|
+
msgstr "Fehler beim %{action} von %{vm}"
|
138
|
+
|
139
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
140
|
+
#: ../app/controllers/containers_controller.rb:69
|
141
|
+
msgid "Error - %{message}"
|
142
|
+
msgstr "Fehler - %{message}"
|
143
|
+
|
144
|
+
#: ../app/controllers/image_search_controller.rb:62
|
145
|
+
msgid "An error occured during repository search: '%s'"
|
146
|
+
msgstr "Ein Fehler ist während der Repository-Suche aufgetreten: \"%s\""
|
147
|
+
|
148
|
+
#: ../app/helpers/container_steps_helper.rb:12 ../app/views/registries/_form.html.erb:4
|
149
|
+
msgid "Registry"
|
150
|
+
msgstr "Registry"
|
151
|
+
|
152
|
+
#: ../app/helpers/container_steps_helper.rb:16
|
153
|
+
msgid "Select a registry"
|
154
|
+
msgstr "Registry wählen"
|
155
|
+
|
156
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
157
|
+
#: ../app/helpers/container_steps_helper.rb:22 ../app/views/compute_resources_vms/form/_docker.html.erb:6 ../app/views/compute_resources_vms/index/_docker.html.erb:5 ../app/views/containers/_list.html.erb:6
|
158
|
+
msgid "Image"
|
159
|
+
msgstr "Image"
|
160
|
+
|
161
|
+
#: ../app/helpers/container_steps_helper.rb:22
|
162
|
+
msgid "Environment"
|
163
|
+
msgstr ""
|
164
|
+
|
165
|
+
#: ../app/helpers/container_steps_helper.rb:22
|
166
|
+
msgid "Configuration"
|
167
|
+
msgstr ""
|
168
|
+
|
169
|
+
#: ../app/helpers/container_steps_helper.rb:22
|
170
|
+
msgid "Preliminary"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
#: ../app/helpers/containers_helper.rb:34
|
174
|
+
msgid "Commit"
|
175
|
+
msgstr "Festschreiben"
|
176
|
+
|
177
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
178
|
+
#: ../app/helpers/containers_helper.rb:43 ../app/views/containers/_list.html.erb:36 ../app/views/registries/index.html.erb:23
|
179
|
+
msgid "Delete %s?"
|
180
|
+
msgstr "%s löschen?"
|
181
|
+
|
182
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
183
|
+
#: ../app/helpers/containers_helper.rb:71
|
184
|
+
msgid "Are you sure you want to power %{act} %{vm}?"
|
185
|
+
msgstr "Sind Sie sicher, dass Sie %{vm} %{act} möchten?"
|
186
|
+
|
187
|
+
#: ../app/models/concerns/fog_extensions/fogdocker/server.rb:39
|
188
|
+
msgid "%{cores} cores and %{memory} memory"
|
189
|
+
msgstr ""
|
190
|
+
|
191
|
+
#: ../app/models/container.rb:61
|
192
|
+
msgid "Docker/Container"
|
193
|
+
msgstr "Docker/Container"
|
194
|
+
|
195
|
+
#: ../app/models/docker_registry.rb:39
|
196
|
+
msgid "Docker/Registry"
|
197
|
+
msgstr "Docker/Registry"
|
198
|
+
|
199
|
+
#: ../app/models/docker_registry.rb:50
|
200
|
+
msgid "Unable to log in to this Docker Registry - %s"
|
201
|
+
msgstr ""
|
202
|
+
|
203
|
+
#: ../app/models/foreman_docker/docker.rb:140
|
204
|
+
msgid "Error creating communicating with Docker. Check the Foreman logs: %s"
|
205
|
+
msgstr "Fehler bei der Kommunikation mit Docker. Prüfen Sie die Foreman-Protokolle: %s"
|
206
|
+
|
207
|
+
#: ../app/models/service/containers.rb:101
|
208
|
+
msgid "Could not start container"
|
209
|
+
msgstr ""
|
210
|
+
|
211
|
+
#: ../app/views/compute_resources/form/_docker.html.erb:1
|
212
|
+
msgid "e.g. https://docker.example.com:4243 or unix:///var/run/docker.sock"
|
213
|
+
msgstr "z. B. https://docker.example.com:4243 oder unix:///var/run/docker.sock"
|
214
|
+
|
215
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
216
|
+
#: ../app/views/compute_resources/form/_docker.html.erb:7
|
217
|
+
msgid "Test Connection"
|
218
|
+
msgstr "Verbindung testen"
|
219
|
+
|
220
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
221
|
+
#: ../app/views/compute_resources/show/_docker.html.erb:2 ../app/views/registries/index.html.erb:9
|
222
|
+
msgid "URL"
|
223
|
+
msgstr "URL"
|
224
|
+
|
225
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
226
|
+
#: ../app/views/compute_resources_vms/form/_docker.html.erb:10
|
227
|
+
msgid "Cores"
|
228
|
+
msgstr "Kerne"
|
229
|
+
|
230
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
231
|
+
#: ../app/views/compute_resources_vms/form/_docker.html.erb:11 ../app/views/compute_resources_vms/index/_docker.html.erb:7 ../app/views/compute_resources_vms/show/_docker.html.erb:22 ../app/views/containers/show.html.erb:39 ../app/views/containers/steps/configuration.html.erb:15
|
232
|
+
msgid "Memory"
|
233
|
+
msgstr "Speicher"
|
234
|
+
|
235
|
+
# translation auto-copied from project nautilus, version 3.8.2, document nautilus
|
236
|
+
#: ../app/views/compute_resources_vms/form/_docker.html.erb:13 ../app/views/compute_resources_vms/show/_docker.html.erb:26 ../app/views/containers/_list.html.erb:7 ../app/views/containers/show.html.erb:43
|
237
|
+
msgid "Command"
|
238
|
+
msgstr "Befehl"
|
239
|
+
|
240
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
241
|
+
#: ../app/views/compute_resources_vms/form/_docker.html.erb:15
|
242
|
+
msgid "Power ON this machine"
|
243
|
+
msgstr "System starten"
|
244
|
+
|
245
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
246
|
+
#: ../app/views/compute_resources_vms/form/_docker.html.erb:15
|
247
|
+
msgid "Start"
|
248
|
+
msgstr "Start"
|
249
|
+
|
250
|
+
# translation auto-copied from project Satellite6 Katello, version 6.1, document katello
|
251
|
+
#: ../app/views/compute_resources_vms/index/_docker.html.erb:4 ../app/views/compute_resources_vms/show/_docker.html.erb:6 ../app/views/containers/_list.html.erb:4 ../app/views/containers/show.html.erb:11 ../app/views/registries/index.html.erb:8
|
252
|
+
msgid "Name"
|
253
|
+
msgstr "Name"
|
254
|
+
|
255
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
256
|
+
#: ../app/views/compute_resources_vms/index/_docker.html.erb:6
|
257
|
+
msgid "CPUs"
|
258
|
+
msgstr "CPUs"
|
259
|
+
|
260
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
261
|
+
#: ../app/views/compute_resources_vms/index/_docker.html.erb:8 ../app/views/containers/_list.html.erb:5
|
262
|
+
msgid "Status"
|
263
|
+
msgstr "Status"
|
264
|
+
|
265
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
266
|
+
#: ../app/views/compute_resources_vms/index/_docker.html.erb:9
|
267
|
+
msgid "Power"
|
268
|
+
msgstr "Strom"
|
269
|
+
|
270
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
271
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:4 ../app/views/containers/show.html.erb:9
|
272
|
+
msgid "Properties"
|
273
|
+
msgstr "Eigenschaften"
|
274
|
+
|
275
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
276
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:10 ../app/views/containers/show.html.erb:23
|
277
|
+
msgid "IP Address"
|
278
|
+
msgstr "IP-Adresse"
|
279
|
+
|
280
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:14 ../app/views/containers/show.html.erb:27 ../app/views/containers/steps/configuration.html.erb:12
|
281
|
+
msgid "CPU shares"
|
282
|
+
msgstr "CPU-Anteile"
|
283
|
+
|
284
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
285
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:18 ../app/views/containers/show.html.erb:35
|
286
|
+
msgid "UUID"
|
287
|
+
msgstr "UUID"
|
288
|
+
|
289
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:30 ../app/views/containers/show.html.erb:47
|
290
|
+
msgid "Exposed ports"
|
291
|
+
msgstr "Offene Ports"
|
292
|
+
|
293
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
294
|
+
#: ../app/views/compute_resources_vms/show/_docker.html.erb:35 ../app/views/containers/_list.html.erb:9 ../app/views/containers/show.html.erb:89
|
295
|
+
msgid "Running on"
|
296
|
+
msgstr "Läuft auf"
|
297
|
+
|
298
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/database/StringResource
|
299
|
+
#: ../app/views/containers/_list.html.erb:8
|
300
|
+
msgid "Uptime"
|
301
|
+
msgstr "Betriebszeit"
|
302
|
+
|
303
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
304
|
+
#: ../app/views/containers/_list.html.erb:10
|
305
|
+
msgid "Managed"
|
306
|
+
msgstr "Verwaltet"
|
307
|
+
|
308
|
+
#: ../app/views/containers/_list.html.erb:11
|
309
|
+
msgid "Action"
|
310
|
+
msgstr ""
|
311
|
+
|
312
|
+
# translation auto-copied from project Satellite6 Katello, version 6.1, document katello, author jdimanos
|
313
|
+
#: ../app/views/containers/_list.html.erb:27
|
314
|
+
msgid "No"
|
315
|
+
msgstr "Nein"
|
316
|
+
|
317
|
+
# translation auto-copied from project Satellite6 Katello, version 6.1, document katello, author jdimanos
|
318
|
+
#: ../app/views/containers/_list.html.erb:27
|
319
|
+
msgid "Yes"
|
320
|
+
msgstr "Ja"
|
321
|
+
|
322
|
+
#: ../app/views/containers/index.html.erb:1 ../lib/foreman_docker/engine.rb:47
|
323
|
+
msgid "Containers"
|
324
|
+
msgstr "Container"
|
325
|
+
|
326
|
+
#: ../app/views/containers/index.html.erb:3 ../app/views/containers/steps/_title.html.erb:1 ../lib/foreman_docker/engine.rb:52
|
327
|
+
msgid "New container"
|
328
|
+
msgstr "Neuer Container"
|
329
|
+
|
330
|
+
#: ../app/views/containers/index.html.erb:27
|
331
|
+
msgid "Error connecting with the compute resource: <strong> %s </strong>"
|
332
|
+
msgstr "Fehler beim Verbinden mit der Rechnerressource: <strong> %s </strong>"
|
333
|
+
|
334
|
+
#: ../app/views/containers/show.html.erb:15
|
335
|
+
msgid "Image Repository"
|
336
|
+
msgstr "Image-Repository"
|
337
|
+
|
338
|
+
#: ../app/views/containers/show.html.erb:19
|
339
|
+
msgid "Image Tag"
|
340
|
+
msgstr "Image-Tag"
|
341
|
+
|
342
|
+
#: ../app/views/containers/show.html.erb:31
|
343
|
+
msgid "CPU set"
|
344
|
+
msgstr ""
|
345
|
+
|
346
|
+
#: ../app/views/containers/show.html.erb:61 ../app/views/containers/steps/environment.html.erb:16
|
347
|
+
msgid "DNS"
|
348
|
+
msgstr ""
|
349
|
+
|
350
|
+
#: ../app/views/containers/show.html.erb:69
|
351
|
+
msgid "Environment Variables"
|
352
|
+
msgstr "Umgebungsvariablen"
|
353
|
+
|
354
|
+
# translation auto-copied from project gnome-system-monitor, version 3.8.2.1, document gnome-system-monitor
|
355
|
+
#: ../app/views/containers/show.html.erb:103
|
356
|
+
msgid "Processes"
|
357
|
+
msgstr "Prozesse"
|
358
|
+
|
359
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
360
|
+
#: ../app/views/containers/show.html.erb:107
|
361
|
+
msgid "Logs"
|
362
|
+
msgstr "Protokolle"
|
363
|
+
|
364
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
365
|
+
#: ../app/views/containers/show.html.erb:139
|
366
|
+
msgid "Notice"
|
367
|
+
msgstr "Hinweis"
|
368
|
+
|
369
|
+
#: ../app/views/containers/show.html.erb:141
|
370
|
+
msgid "Your container is stopped."
|
371
|
+
msgstr "Ihr Container ist gestoppt."
|
372
|
+
|
373
|
+
#: ../app/views/containers/show.html.erb:142
|
374
|
+
msgid "Please turn on your container to see processes running, logs, and more."
|
375
|
+
msgstr "Bitte schalten Sie Ihren Container an, um laufende Prozesse, Protokolle und mehr zu sehen."
|
376
|
+
|
377
|
+
#: ../app/views/containers/show.html.erb:153
|
378
|
+
msgid "Commit this container state"
|
379
|
+
msgstr "Diesen Container-Status festschreiben"
|
380
|
+
|
381
|
+
#: ../app/views/containers/show.html.erb:160
|
382
|
+
msgid "Repo"
|
383
|
+
msgstr "Repository"
|
384
|
+
|
385
|
+
#: ../app/views/containers/show.html.erb:162
|
386
|
+
msgid "docker/my-committed-image"
|
387
|
+
msgstr "docker/my-committed-image"
|
388
|
+
|
389
|
+
# translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
|
390
|
+
#: ../app/views/containers/show.html.erb:165
|
391
|
+
msgid "Tag"
|
392
|
+
msgstr "Tag"
|
393
|
+
|
394
|
+
#: ../app/views/containers/show.html.erb:167
|
395
|
+
msgid "latest"
|
396
|
+
msgstr "neueste"
|
397
|
+
|
398
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
399
|
+
#: ../app/views/containers/show.html.erb:170
|
400
|
+
msgid "Author"
|
401
|
+
msgstr "Autor"
|
402
|
+
|
403
|
+
#: ../app/views/containers/show.html.erb:172
|
404
|
+
msgid "Foreman user <foremaner@example.org>"
|
405
|
+
msgstr ""
|
406
|
+
|
407
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
408
|
+
#: ../app/views/containers/show.html.erb:175
|
409
|
+
msgid "Comment"
|
410
|
+
msgstr "Kommentar"
|
411
|
+
|
412
|
+
#: ../app/views/containers/show.html.erb:177
|
413
|
+
msgid "Description of the commit"
|
414
|
+
msgstr "Beschreibung der Festschreibung"
|
415
|
+
|
416
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
417
|
+
#: ../app/views/containers/show.html.erb:180 ../app/views/containers/steps/_form_buttons.html.erb:4
|
418
|
+
msgid "Cancel"
|
419
|
+
msgstr "Abbrechen"
|
420
|
+
|
421
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
422
|
+
#: ../app/views/containers/show.html.erb:182 ../app/views/containers/steps/_form_buttons.html.erb:14
|
423
|
+
msgid "Submit"
|
424
|
+
msgstr "Absenden"
|
425
|
+
|
426
|
+
# translation auto-copied from project Satellite6 Foreman Bootdisk, version 6.1, document foreman_bootdisk
|
427
|
+
#: ../app/views/containers/steps/_form_buttons.html.erb:8
|
428
|
+
msgid "Back"
|
429
|
+
msgstr "Zurück"
|
430
|
+
|
431
|
+
# translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author jdimanos
|
432
|
+
#: ../app/views/containers/steps/_form_buttons.html.erb:16
|
433
|
+
msgid "Next"
|
434
|
+
msgstr "Weiter"
|
435
|
+
|
436
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
437
|
+
#: ../app/views/containers/steps/_image_hub_tab.html.erb:15
|
438
|
+
msgid "Search"
|
439
|
+
msgstr "Suche"
|
440
|
+
|
441
|
+
#: ../app/views/containers/steps/_image_hub_tab.html.erb:24
|
442
|
+
msgid "Find your favorite container, e.g. centos"
|
443
|
+
msgstr ""
|
444
|
+
|
445
|
+
#: ../app/views/containers/steps/configuration.html.erb:3
|
446
|
+
msgid "Basic options"
|
447
|
+
msgstr "Grundlegende Optionen"
|
448
|
+
|
449
|
+
#: ../app/views/containers/steps/configuration.html.erb:8
|
450
|
+
msgid "Compute options"
|
451
|
+
msgstr "Rechenoptionen"
|
452
|
+
|
453
|
+
#: ../app/views/containers/steps/configuration.html.erb:9
|
454
|
+
msgid "CPU sets"
|
455
|
+
msgstr "CPU-Gruppen"
|
456
|
+
|
457
|
+
#: ../app/views/containers/steps/configuration.html.erb:11
|
458
|
+
msgid "learn more about CPU sets"
|
459
|
+
msgstr "Mehr Informationen über CPU-Gruppen"
|
460
|
+
|
461
|
+
#: ../app/views/containers/steps/configuration.html.erb:14
|
462
|
+
msgid "learn more about CPU shares"
|
463
|
+
msgstr "Mehr Informationen über CPU-Anteile"
|
464
|
+
|
465
|
+
# translation auto-copied from project RHEL Deployment Guide, version 6.2, document Managing_Users_and_Groups
|
466
|
+
#: ../app/views/containers/steps/environment.html.erb:5
|
467
|
+
msgid "Shell"
|
468
|
+
msgstr "Shell"
|
469
|
+
|
470
|
+
# translation auto-copied from project gnome-contacts, version 3.8.2, document gnome-contacts
|
471
|
+
#: ../app/views/containers/steps/environment.html.erb:6
|
472
|
+
msgid "TTY"
|
473
|
+
msgstr "TTY"
|
474
|
+
|
475
|
+
#: ../app/views/containers/steps/environment.html.erb:6
|
476
|
+
msgid "Allocate a pseudo-tty"
|
477
|
+
msgstr "Pseudo-TTY zuweisen"
|
478
|
+
|
479
|
+
#: ../app/views/containers/steps/environment.html.erb:7
|
480
|
+
msgid "Attach STDIN"
|
481
|
+
msgstr "Standardeingabe anfügen"
|
482
|
+
|
483
|
+
#: ../app/views/containers/steps/environment.html.erb:8
|
484
|
+
msgid "Attach STDOUT"
|
485
|
+
msgstr "Standardausgabe anfügen"
|
486
|
+
|
487
|
+
#: ../app/views/containers/steps/environment.html.erb:9
|
488
|
+
msgid "Attach STDERR"
|
489
|
+
msgstr "Standardfehlerausgabe anfügen"
|
490
|
+
|
491
|
+
#: ../app/views/containers/steps/environment.html.erb:12
|
492
|
+
msgid "Environment variables"
|
493
|
+
msgstr "Umgebungsvariablen"
|
494
|
+
|
495
|
+
#: ../app/views/containers/steps/environment.html.erb:14
|
496
|
+
msgid "Exposed Ports"
|
497
|
+
msgstr ""
|
498
|
+
|
499
|
+
#: ../app/views/containers/steps/environment.html.erb:22
|
500
|
+
msgid "Run?"
|
501
|
+
msgstr ""
|
502
|
+
|
503
|
+
#: ../app/views/containers/steps/environment.html.erb:23
|
504
|
+
msgid "If selected, the container will start after it is created"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
#: ../app/views/containers/steps/image.html.erb:9
|
508
|
+
msgid "Content View"
|
509
|
+
msgstr ""
|
510
|
+
|
511
|
+
#: ../app/views/containers/steps/image.html.erb:15
|
512
|
+
msgid "Docker hub"
|
513
|
+
msgstr "Docker-Hub"
|
514
|
+
|
515
|
+
#: ../app/views/containers/steps/image.html.erb:19
|
516
|
+
msgid "External registry"
|
517
|
+
msgstr "Externe Registry"
|
518
|
+
|
519
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
520
|
+
#: ../app/views/containers/steps/preliminary.html.erb:6
|
521
|
+
msgid "Compute resource"
|
522
|
+
msgstr "Rechnerressource"
|
523
|
+
|
524
|
+
#: ../app/views/containers/steps/preliminary.html.erb:19
|
525
|
+
msgid "Resource selection"
|
526
|
+
msgstr "Ressourcenauswahl"
|
527
|
+
|
528
|
+
#: ../app/views/containers/steps/preliminary.html.erb:20
|
529
|
+
msgid "Where do you want to deploy your container?:"
|
530
|
+
msgstr "Wo möchten Sie Ihren Container bereitstellen?"
|
531
|
+
|
532
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
533
|
+
#: ../app/views/containers/steps/preliminary.html.erb:22
|
534
|
+
msgid "Deploy on"
|
535
|
+
msgstr "Bereitstellen auf"
|
536
|
+
|
537
|
+
#: ../app/views/containers/steps/preliminary.html.erb:25
|
538
|
+
msgid "You need a Docker compute resource in order to create containers. Please %s and try again."
|
539
|
+
msgstr "Sie benötigen eine Docker-Rechnerressource, um Container zu erstellen. Bitte %s und erneut versuchen."
|
540
|
+
|
541
|
+
#: ../app/views/foreman_docker/common_parameters/_dns.erb:8
|
542
|
+
msgid "Add DNS"
|
543
|
+
msgstr ""
|
544
|
+
|
545
|
+
#: ../app/views/foreman_docker/common_parameters/_dns_entry.html.erb:3
|
546
|
+
msgid "DNS e.g. 8.8.8.8"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
#: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:3
|
550
|
+
msgid "Name, e.g. PING_HOST"
|
551
|
+
msgstr ""
|
552
|
+
|
553
|
+
#: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:5
|
554
|
+
msgid "Value, e.g. example.org"
|
555
|
+
msgstr ""
|
556
|
+
|
557
|
+
#: ../app/views/foreman_docker/common_parameters/_environment_variables.html.erb:8
|
558
|
+
msgid "Add environment variable"
|
559
|
+
msgstr "Umgebungsvariable hinzufügen"
|
560
|
+
|
561
|
+
#: ../app/views/foreman_docker/common_parameters/_exposed_port.html.erb:3
|
562
|
+
msgid "Port number e.g. 22"
|
563
|
+
msgstr ""
|
564
|
+
|
565
|
+
#: ../app/views/foreman_docker/common_parameters/_exposed_ports.erb:8
|
566
|
+
msgid "Add Exposed Port"
|
567
|
+
msgstr ""
|
568
|
+
|
569
|
+
#: ../app/views/images/form/_docker.html.erb:1
|
570
|
+
msgid "The user that is used to ssh into the instance, normally docker-user, ubuntu, root etc"
|
571
|
+
msgstr "Der Benutzer für die SSH-Verbindung zur Instanz. Normalerweise docker-user, ubuntu, root etc."
|
572
|
+
|
573
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
574
|
+
#: ../app/views/images/form/_docker.html.erb:2
|
575
|
+
msgid "Password to authenticate with - used for SSH finish step."
|
576
|
+
msgstr "Passwort zur Authentifizierung – verwendet im letzten Schritt von SSH."
|
577
|
+
|
578
|
+
#: ../app/views/images/form/_docker.html.erb:4
|
579
|
+
msgid "Does this image support user data input?"
|
580
|
+
msgstr "Unterstützt dieses Image die Eingabe von Benutzerdaten?"
|
581
|
+
|
582
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
583
|
+
#: ../app/views/registries/_form.html.erb:6
|
584
|
+
msgid "Locations"
|
585
|
+
msgstr "Standorte"
|
586
|
+
|
587
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
588
|
+
#: ../app/views/registries/_form.html.erb:9
|
589
|
+
msgid "Organizations"
|
590
|
+
msgstr "Organisationen"
|
591
|
+
|
592
|
+
#: ../app/views/registries/_form.html.erb:17
|
593
|
+
msgid "Description of the registry"
|
594
|
+
msgstr ""
|
595
|
+
|
596
|
+
#: ../app/views/registries/_form.html.erb:18
|
597
|
+
msgid "Username used to access the registry"
|
598
|
+
msgstr "Benutzername zum Zugriff auf Registry"
|
599
|
+
|
600
|
+
#: ../app/views/registries/_form.html.erb:19
|
601
|
+
msgid "Password used for authentication to the registry"
|
602
|
+
msgstr "Passwort zur Authentifikation bei Registry"
|
603
|
+
|
604
|
+
#: ../app/views/registries/edit.html.erb:1
|
605
|
+
msgid "Edit Registry"
|
606
|
+
msgstr "Registry bearbeiten"
|
607
|
+
|
608
|
+
#: ../app/views/registries/index.html.erb:1 ../lib/foreman_docker/engine.rb:55
|
609
|
+
msgid "Registries"
|
610
|
+
msgstr "Registrys"
|
611
|
+
|
612
|
+
#: ../app/views/registries/index.html.erb:3
|
613
|
+
msgid "New registry"
|
614
|
+
msgstr ""
|
615
|
+
|
616
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
617
|
+
#: ../app/views/registries/index.html.erb:10
|
618
|
+
msgid "Description"
|
619
|
+
msgstr "Beschreibung"
|
620
|
+
|
621
|
+
#: ../app/views/registries/index.html.erb:11
|
622
|
+
msgid "Actions"
|
623
|
+
msgstr ""
|
624
|
+
|
625
|
+
#: ../app/views/registries/new.html.erb:1
|
626
|
+
msgid "New Registry"
|
627
|
+
msgstr "Neue Registry"
|
628
|
+
|
629
|
+
#: ../lib/foreman_docker/engine.rb:49
|
630
|
+
msgid "All containers"
|
631
|
+
msgstr "Alle Container"
|