foreman_discovery 6.0.0 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/controllers/api/v2/discovered_hosts_controller.rb +6 -4
- data/app/controllers/api/v2/discovery_rules_controller.rb +3 -2
- data/app/controllers/concerns/foreman/controller/parameters/discovered_host.rb +24 -0
- data/app/controllers/concerns/foreman/controller/parameters/discovery_rule.rb +17 -0
- data/app/controllers/discovered_hosts_controller.rb +3 -2
- data/app/controllers/discovery_rules_controller.rb +4 -2
- data/app/helpers/discovered_hosts_helper.rb +7 -10
- data/app/models/concerns/discovery_subnet.rb +0 -2
- data/app/models/concerns/fact_value_extensions.rb +5 -0
- data/app/models/discovery_attribute_set.rb +0 -1
- data/app/models/discovery_rule.rb +0 -2
- data/app/models/host/discovered.rb +0 -2
- data/app/models/host/managed_extensions.rb +1 -3
- data/app/models/hostgroup_extensions.rb +0 -1
- data/app/models/nic/managed_extensions.rb +26 -0
- data/app/models/setting/discovered.rb +1 -0
- data/app/views/discovered_hosts/_discovered_host_modal.html.erb +30 -0
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +1 -29
- data/app/views/discovered_hosts/show.html.erb +20 -12
- data/app/views/discovery_rules/_form.html.erb +1 -1
- data/app/views/foreman_discovery/debian_kexec.erb +2 -3
- data/app/views/foreman_discovery/redhat_kexec.erb +2 -3
- data/lib/foreman_discovery/engine.rb +8 -1
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +1 -1
- data/locale/ca/foreman_discovery.po +2 -2
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +33 -33
- data/locale/de/foreman_discovery.po +67 -67
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +138 -130
- data/locale/en/foreman_discovery.po +13 -7
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +34 -33
- data/locale/en_GB/foreman_discovery.po +33 -32
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +51 -51
- data/locale/es/foreman_discovery.po +51 -51
- data/locale/foreman_discovery.pot +151 -144
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +1 -1
- data/locale/fr/foreman_discovery.po +33 -33
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +1 -1
- data/locale/gl/foreman_discovery.po +2 -2
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +5 -5
- data/locale/it/foreman_discovery.po +5 -5
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +37 -37
- data/locale/ja/foreman_discovery.po +36 -36
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +36 -36
- data/locale/ko/foreman_discovery.po +35 -35
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +40 -40
- data/locale/pt_BR/foreman_discovery.po +39 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +8 -8
- data/locale/ru/foreman_discovery.po +8 -8
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +1 -1
- data/locale/sv_SE/foreman_discovery.po +2 -2
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +37 -37
- data/locale/zh_CN/foreman_discovery.po +36 -36
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +36 -36
- data/locale/zh_TW/foreman_discovery.po +35 -35
- data/test/factories/discovery_rule_related.rb +19 -2
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +1 -0
- data/test/functional/api/v2/discovery_rules_controller_test.rb +13 -5
- data/test/functional/discovered_hosts_controller_test.rb +71 -3
- data/test/functional/discovery_rules_controller_test.rb +23 -6
- data/test/test_helper_discovery.rb +4 -0
- data/test/unit/discovered_extensions_test.rb +2 -0
- data/test/unit/fact_value_extensions_test.rb +11 -0
- metadata +9 -3
@@ -18,7 +18,7 @@
|
|
18
18
|
<%= autocomplete_f f, :search,
|
19
19
|
:path => "discovered_hosts",
|
20
20
|
:control_group_id => 'search_group', :size => 'col-md-9' %>
|
21
|
-
<%= select_f f, :hostgroup_id,
|
21
|
+
<%= select_f f, :hostgroup_id, accessible_resource_records(:hostgroup, :title).to_a, :id, :to_label, { :include_blank => false },
|
22
22
|
{ :help_inline => _('Target host group for this rule with all properties set') } %>
|
23
23
|
<%= text_f f, :hostname, :help_inline => popover(
|
24
24
|
_("Template"),
|
@@ -13,7 +13,6 @@ environments. The template must generate JSON format with three items:
|
|
13
13
|
information about semantics.
|
14
14
|
-%>
|
15
15
|
<%
|
16
|
-
@kernel, @initrd = @host.operatingsystem.boot_files_uri(@host.medium, @host.architecture)
|
17
16
|
mac = @host.facts['discovery_bootif']
|
18
17
|
bootif = '00-' + mac.gsub(':', '-') rescue ''
|
19
18
|
ip_cidr = @host.facts['discovery_ip_cidr']
|
@@ -28,7 +27,7 @@ information about semantics.
|
|
28
27
|
options << "locale=#{@host.params['lang'] || 'en_US'}"
|
29
28
|
-%>
|
30
29
|
{
|
31
|
-
"kernel": "<%= @
|
32
|
-
"initram": "<%= @
|
30
|
+
"kernel": "<%= @kexec_kernel %>",
|
31
|
+
"initram": "<%= @kexec_initrd %>",
|
33
32
|
"append": "url=<%= foreman_url('provision') + "&static=yes" %> interface=<%= mac %> netcfg/get_ipaddress=<%= ip %> netcfg/get_netmask=<%= mask %> netcfg/get_gateway=<%= gw %> netcfg/get_nameservers=<%= dns %> netcfg/disable_dhcp=true netcfg/get_hostname=<%= @host.name %> BOOTIF=<%= bootif %> <%= options.join(' ') %>"
|
34
33
|
}
|
@@ -23,7 +23,6 @@ environments. The template must generate JSON format with three items:
|
|
23
23
|
information about semantics.
|
24
24
|
-%>
|
25
25
|
<%
|
26
|
-
@kernel, @initrd = @host.operatingsystem.boot_files_uri(@host.medium, @host.architecture)
|
27
26
|
mac = @host.facts['discovery_bootif']
|
28
27
|
bootif = '00-' + mac.gsub(':', '-') if mac
|
29
28
|
ip_cidr = @host.facts['discovery_ip_cidr']
|
@@ -34,8 +33,8 @@ information about semantics.
|
|
34
33
|
append = @host.facts['append']
|
35
34
|
-%>
|
36
35
|
{
|
37
|
-
"kernel": "<%= @
|
38
|
-
"initram": "<%= @
|
36
|
+
"kernel": "<%= @kexec_kernel %>",
|
37
|
+
"initram": "<%= @kexec_initrd %>",
|
39
38
|
<% if (@host.operatingsystem.name == 'Fedora' and @host.operatingsystem.major.to_i > 16) or
|
40
39
|
(@host.operatingsystem.name != 'Fedora' and @host.operatingsystem.major.to_i >= 7) -%>
|
41
40
|
"append": "ks=<%= foreman_url('provision') + "&static=yes" %> inst.ks.sendmac <%= "ip=#{ip}::#{gw}:#{mask}:::none nameserver=#{dns} ksdevice=bootif BOOTIF=#{bootif} nomodeset #{append}" %>"
|
@@ -42,7 +42,7 @@ module ForemanDiscovery
|
|
42
42
|
|
43
43
|
initializer 'foreman_discovery.register_plugin', :before => :finisher_hook do |app|
|
44
44
|
Foreman::Plugin.register :foreman_discovery do
|
45
|
-
requires_foreman '>= 1.
|
45
|
+
requires_foreman '>= 1.13.0'
|
46
46
|
|
47
47
|
# discovered hosts permissions
|
48
48
|
security_block :discovery do
|
@@ -153,11 +153,17 @@ module ForemanDiscovery
|
|
153
153
|
:parent => :configure_menu,
|
154
154
|
:after=> :hostgroups
|
155
155
|
|
156
|
+
# strong parameters
|
157
|
+
parameter_filter Subnet, :discovery_id
|
158
|
+
parameter_filter Host::Managed, :discovery_rule_id
|
159
|
+
parameter_filter Hostgroup, :type, :discovery_rules => [], :discovery_rule_ids => [], :discovery_rule_names => []
|
160
|
+
|
156
161
|
# add dashboard widget
|
157
162
|
widget 'discovery_widget', :name=>N_('Discovery widget'), :sizex => 6, :sizey =>1
|
158
163
|
|
159
164
|
# add template helpers
|
160
165
|
allowed_template_helpers :rand
|
166
|
+
allowed_template_variables :kexec_kernel, :kexec_initrd
|
161
167
|
|
162
168
|
# apipie API documentation
|
163
169
|
# Only available in 1.8, otherwise it has to be in the initializer below
|
@@ -185,6 +191,7 @@ module ForemanDiscovery
|
|
185
191
|
::Host::Managed.send :include, Host::ManagedExtensions
|
186
192
|
::Hostgroup.send :include, HostgroupExtensions
|
187
193
|
::FactValue.send :include, FactValueExtensions
|
194
|
+
::Nic::Managed.send :include, Nic::ManagedExtensions
|
188
195
|
|
189
196
|
# Controller extensions
|
190
197
|
::Api::V2::FactValuesController.send :include, Api::V2::FactValuesControllerExtensions
|
Binary file
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: foreman_discovery
|
9
|
+
"Project-Id-Version: foreman_discovery 7.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
11
|
"POT-Creation-Date: 2016-07-27 14:13+0200\n"
|
12
12
|
"PO-Revision-Date: 2016-07-28 09:01+0000\n"
|
@@ -6,9 +6,9 @@
|
|
6
6
|
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: foreman_discovery
|
9
|
+
"Project-Id-Version: foreman_discovery 7.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date: 2016-
|
11
|
+
"PO-Revision-Date: 2016-07-28 09:01+0000\n"
|
12
12
|
"Last-Translator: Lukáš Zapletal\n"
|
13
13
|
"Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
|
14
14
|
"\n"
|
Binary file
|
@@ -12,11 +12,11 @@
|
|
12
12
|
# stbenjam <stephen@redhat.com>, 2016
|
13
13
|
msgid ""
|
14
14
|
msgstr ""
|
15
|
-
"Project-Id-Version: foreman_discovery
|
15
|
+
"Project-Id-Version: foreman_discovery 7.0.0\n"
|
16
16
|
"Report-Msgid-Bugs-To: \n"
|
17
17
|
"POT-Creation-Date: 2016-07-27 14:13+0200\n"
|
18
|
-
"PO-Revision-Date: 2016-
|
19
|
-
"Last-Translator:
|
18
|
+
"PO-Revision-Date: 2016-08-22 15:07+0000\n"
|
19
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
20
20
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
21
21
|
"MIME-Version: 1.0\n"
|
22
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -54,7 +54,7 @@ msgstr "Entdeckten Host anzeigen"
|
|
54
54
|
|
55
55
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:39
|
56
56
|
msgid "Create a discovered host for testing (use /facts to create new hosts)"
|
57
|
-
msgstr ""
|
57
|
+
msgstr "Entdeckten Host zum Testen erstellen (verwenden Sie /Fakten zur Erstellung neuer Hosts)"
|
58
58
|
|
59
59
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:47
|
60
60
|
msgid "Provision a discovered host"
|
@@ -92,7 +92,7 @@ msgid ""
|
|
92
92
|
"hash containing facts for the host with minimum set of facts: "
|
93
93
|
"discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
|
94
94
|
"eth0 (example in case primary interface is named eth0)"
|
95
|
-
msgstr ""
|
95
|
+
msgstr "Hash, der Fakten für den Host mit minimaler Anzahl an Fakten enthält: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (Beispiel für primäre Schnittstelle mit dem Namen eth0) "
|
96
96
|
|
97
97
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:109
|
98
98
|
msgid "Execute rules against a discovered host"
|
@@ -105,7 +105,7 @@ msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
|
|
105
105
|
|
106
106
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:118
|
107
107
|
msgid "Unable to provision %{host}: %{errors}"
|
108
|
-
msgstr "
|
108
|
+
msgstr "%{host} kann nicht bereitgestellt werden: %{errors} "
|
109
109
|
|
110
110
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:124
|
111
111
|
#: ../app/controllers/discovered_hosts_controller.rb:171
|
@@ -140,7 +140,7 @@ msgstr "Entdeckten Host neu starten"
|
|
140
140
|
|
141
141
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:189
|
142
142
|
msgid "Rebooting all discovered hosts"
|
143
|
-
msgstr "Alle entdeckten Hosts
|
143
|
+
msgstr "Alle entdeckten Hosts neu starten"
|
144
144
|
|
145
145
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
|
146
146
|
#: ../app/controllers/discovered_hosts_controller.rb:122
|
@@ -203,19 +203,19 @@ msgstr "Alle Faktwerte eines angegebenen entdeckten Hosts auflisten"
|
|
203
203
|
|
204
204
|
#: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:6
|
205
205
|
msgid "Unable to find a discovery rule, no host provided (check permissions)"
|
206
|
-
msgstr ""
|
206
|
+
msgstr "Keine Entdeckungsregel gefunden, kein Host bereitgestellt (Berechtigungen prüfen)"
|
207
207
|
|
208
208
|
#: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:47
|
209
209
|
msgid "No hostgroup associated with rule '%s'"
|
210
|
-
msgstr "
|
210
|
+
msgstr " Der Regel '%s' ist keine Hostgruppe zugewiesen"
|
211
211
|
|
212
212
|
#: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:66
|
213
213
|
msgid "Errors during reboot: %s"
|
214
|
-
msgstr "Fehler
|
214
|
+
msgstr "Fehler bei Neustart: %s"
|
215
215
|
|
216
216
|
#: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:84
|
217
217
|
msgid "No discovered hosts to reboot"
|
218
|
-
msgstr "Keine entdeckten Hosts zum
|
218
|
+
msgstr "Keine entdeckten Hosts zum Neustarten"
|
219
219
|
|
220
220
|
#: ../app/controllers/discovered_hosts_controller.rb:58
|
221
221
|
msgid "Successfully provisioned %s"
|
@@ -231,7 +231,7 @@ msgstr "Fehler beim Aktualisieren von Fakten für %s"
|
|
231
231
|
|
232
232
|
#: ../app/controllers/discovered_hosts_controller.rb:95
|
233
233
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
234
|
-
msgstr ""
|
234
|
+
msgstr "Fehler beim Aktualisieren der Fakten für %{hostname} mit Fehlermeldung %{error_message}"
|
235
235
|
|
236
236
|
#: ../app/controllers/discovered_hosts_controller.rb:102
|
237
237
|
msgid "Host of type %s can not be rebooted"
|
@@ -251,7 +251,7 @@ msgstr "Fehler beim Neustart von Host %{hostname} mit Fehlermeldung %{error_mess
|
|
251
251
|
|
252
252
|
#: ../app/controllers/discovered_hosts_controller.rb:125
|
253
253
|
msgid "Failed to reboot hosts with error %s"
|
254
|
-
msgstr ""
|
254
|
+
msgstr "Neustart von Hosts fehlgeschlagen mit Fehler %s"
|
255
255
|
|
256
256
|
#: ../app/controllers/discovered_hosts_controller.rb:139
|
257
257
|
msgid "Destroyed selected hosts"
|
@@ -267,7 +267,7 @@ msgstr "Fehler bei automatischer Bereitstellung von Host %s: %s"
|
|
267
267
|
|
268
268
|
#: ../app/controllers/discovered_hosts_controller.rb:196
|
269
269
|
msgid "Discovered hosts are provisioning now"
|
270
|
-
msgstr "Entdeckte Hosts
|
270
|
+
msgstr "Entdeckte Hosts, die jetzt bereitgestellt werden"
|
271
271
|
|
272
272
|
#: ../app/controllers/discovered_hosts_controller.rb:225
|
273
273
|
msgid "Highlights"
|
@@ -299,7 +299,7 @@ msgstr "Verschiedenes"
|
|
299
299
|
|
300
300
|
#: ../app/controllers/discovered_hosts_controller.rb:302
|
301
301
|
msgid "No hosts were found with that id or name"
|
302
|
-
msgstr "Keine
|
302
|
+
msgstr "Keine Systeme mit dieser ID oder diesem Namen gefunden"
|
303
303
|
|
304
304
|
#: ../app/controllers/discovered_hosts_controller.rb:306
|
305
305
|
msgid "No hosts selected"
|
@@ -459,7 +459,7 @@ msgstr "Ungültige Fakten, es muss sich um einen Hash handeln"
|
|
459
459
|
msgid ""
|
460
460
|
"Expected discovery_fact '%s' is missing, unable to detect primary interface "
|
461
461
|
"and set hostname"
|
462
|
-
msgstr ""
|
462
|
+
msgstr "Erwartetes discovery_fact '%s' fehlt, primäre Schnittstelle kann nicht gefunden und Hostname nicht eingestellt werden"
|
463
463
|
|
464
464
|
#: ../app/models/host/discovered.rb:47
|
465
465
|
msgid ""
|
@@ -473,7 +473,7 @@ msgstr "Fakten konnten nicht importiert werden"
|
|
473
473
|
|
474
474
|
#: ../app/models/host/discovered.rb:114
|
475
475
|
msgid "Unable to assign subnet, primary interface is missing IP address"
|
476
|
-
msgstr ""
|
476
|
+
msgstr "Subnetz kann nicht zugewiesen werden, IP-Adresse der primären Schnittstelle fehlt"
|
477
477
|
|
478
478
|
#: ../app/models/host/discovered.rb:168
|
479
479
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
@@ -481,11 +481,11 @@ msgstr "Fakten konnten nicht vom Proxy %{url} abgerufen werden: %{error}"
|
|
481
481
|
|
482
482
|
#: ../app/models/host/discovered.rb:184
|
483
483
|
msgid "Unable to reboot %{name} via %{url}: %{msg}"
|
484
|
-
msgstr "
|
484
|
+
msgstr "%{name} kann nicht über %{url} neu gestartet werden: %{msg}"
|
485
485
|
|
486
486
|
#: ../app/models/host/discovered.rb:192
|
487
487
|
msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
|
488
|
-
msgstr ""
|
488
|
+
msgstr "kexec kann nicht auf %{name} über %{url} ausgeführt werden: %{msg}"
|
489
489
|
|
490
490
|
#: ../app/models/host/discovered.rb:211
|
491
491
|
msgid "Invalid hostname: Could not normalize the hostname"
|
@@ -501,15 +501,15 @@ msgstr "%s wird neu gestartet"
|
|
501
501
|
|
502
502
|
#: ../app/models/host/managed_extensions.rb:45
|
503
503
|
msgid "Operating system not set for host/hostgroup"
|
504
|
-
msgstr "Betriebssystem für Host/Hostgruppe nicht
|
504
|
+
msgstr "Betriebssystem für Host/Hostgruppe nicht eingestellt"
|
505
505
|
|
506
506
|
#: ../app/models/host/managed_extensions.rb:47
|
507
507
|
msgid "Medium not set for host/hostgroup"
|
508
|
-
msgstr "Medium für Host/Hostgruppe nicht
|
508
|
+
msgstr "Medium für Host/Hostgruppe nicht eingestellt"
|
509
509
|
|
510
510
|
#: ../app/models/host/managed_extensions.rb:54
|
511
511
|
msgid "Kexec template not associated with operating system"
|
512
|
-
msgstr ""
|
512
|
+
msgstr "Kexec Vorlage ist nicht dem Betriebssystem zugeordnet"
|
513
513
|
|
514
514
|
#: ../app/models/setting/discovered.rb:19
|
515
515
|
msgid "Fact name to use for primary interface detection"
|
@@ -559,7 +559,7 @@ msgstr "Hostnamenpräfix"
|
|
559
559
|
|
560
560
|
#: ../app/models/setting/discovered.rb:25
|
561
561
|
msgid "Extra facter columns to show in host lists (separate by comma)"
|
562
|
-
msgstr ""
|
562
|
+
msgstr "Zusätzliche Facter-Spalten zum Anzeigen in Hostlisten (mit Komma getrennt)"
|
563
563
|
|
564
564
|
#: ../app/models/setting/discovered.rb:25
|
565
565
|
msgid "Fact columns"
|
@@ -575,7 +575,7 @@ msgstr "Hervorgehobene Fakten"
|
|
575
575
|
|
576
576
|
#: ../app/models/setting/discovered.rb:27
|
577
577
|
msgid "Regex to organize facts for storage section"
|
578
|
-
msgstr ""
|
578
|
+
msgstr "Regex zur Faktensortierung im Speicher-Bereich"
|
579
579
|
|
580
580
|
#: ../app/models/setting/discovered.rb:27
|
581
581
|
msgid "Storage facts"
|
@@ -583,7 +583,7 @@ msgstr "Speicherfakten"
|
|
583
583
|
|
584
584
|
#: ../app/models/setting/discovered.rb:28
|
585
585
|
msgid "Regex to organize facts for software section"
|
586
|
-
msgstr ""
|
586
|
+
msgstr "Regex zur Faktensortierung im Software-Bereich"
|
587
587
|
|
588
588
|
#: ../app/models/setting/discovered.rb:28
|
589
589
|
msgid "Software facts"
|
@@ -591,7 +591,7 @@ msgstr "Softwarefakten"
|
|
591
591
|
|
592
592
|
#: ../app/models/setting/discovered.rb:29
|
593
593
|
msgid "Regex to organize facts for hardware section"
|
594
|
-
msgstr ""
|
594
|
+
msgstr "Regex zur Faktensortierung im Hardware-Bereich"
|
595
595
|
|
596
596
|
#: ../app/models/setting/discovered.rb:29
|
597
597
|
msgid "Hardware facts"
|
@@ -599,7 +599,7 @@ msgstr "Hardwarefakten"
|
|
599
599
|
|
600
600
|
#: ../app/models/setting/discovered.rb:30
|
601
601
|
msgid "Regex to organize facts for network section"
|
602
|
-
msgstr ""
|
602
|
+
msgstr "Regex zur Faktensortierung im Netzwerk-Bereich"
|
603
603
|
|
604
604
|
#: ../app/models/setting/discovered.rb:30
|
605
605
|
msgid "Network facts"
|
@@ -607,7 +607,7 @@ msgstr "Netzwerkfakten"
|
|
607
607
|
|
608
608
|
#: ../app/models/setting/discovered.rb:31
|
609
609
|
msgid "Regex to organize facts for ipmi section"
|
610
|
-
msgstr ""
|
610
|
+
msgstr "Regex zur Faktensortierung im IMPI-Bereich"
|
611
611
|
|
612
612
|
#: ../app/models/setting/discovered.rb:31
|
613
613
|
msgid "IPMI facts"
|
@@ -641,7 +641,7 @@ msgstr "Entdeckungsort"
|
|
641
641
|
|
642
642
|
#: ../app/models/setting/discovered.rb:48
|
643
643
|
msgid "The default organization to place discovered hosts in"
|
644
|
-
msgstr "
|
644
|
+
msgstr "Standard-Organisation, in die entdeckte Hosts platziert werden"
|
645
645
|
|
646
646
|
#: ../app/models/setting/discovered.rb:48
|
647
647
|
msgid "Discovery organization"
|
@@ -651,15 +651,15 @@ msgstr "Entdeckungsorganisation"
|
|
651
651
|
msgid ""
|
652
652
|
"Unable to detect primary interface using MAC '%{mac}' specified by "
|
653
653
|
"discovery_fact '%{fact}'"
|
654
|
-
msgstr ""
|
654
|
+
msgstr "Entdeckung der primären Schnittstelle mittels MAC '%{mac}', festgelegt durch discovery_fact '%{fact}', nicht möglich"
|
655
655
|
|
656
656
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:75
|
657
657
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
658
|
-
msgstr "
|
658
|
+
msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
|
659
659
|
|
660
660
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:78
|
661
661
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
662
|
-
msgstr "
|
662
|
+
msgstr "Image API Verarbeitungsfehler: %{msg} (HTTP/%{code}, Text: %{body})"
|
663
663
|
|
664
664
|
#: ../app/views/dashboard/_discovery_widget.html.erb:9
|
665
665
|
msgid "No discovered hosts available"
|
@@ -853,7 +853,7 @@ msgstr "Primär"
|
|
853
853
|
|
854
854
|
#: ../app/views/discovery_rules/_form.html.erb:7
|
855
855
|
msgid "Locations"
|
856
|
-
msgstr "
|
856
|
+
msgstr "Standorte"
|
857
857
|
|
858
858
|
#: ../app/views/discovery_rules/_form.html.erb:10
|
859
859
|
msgid "Organizations"
|
@@ -12,10 +12,10 @@
|
|
12
12
|
# stbenjam <stephen@redhat.com>, 2016
|
13
13
|
msgid ""
|
14
14
|
msgstr ""
|
15
|
-
"Project-Id-Version: foreman_discovery
|
15
|
+
"Project-Id-Version: foreman_discovery 7.0.0\n"
|
16
16
|
"Report-Msgid-Bugs-To: \n"
|
17
|
-
"PO-Revision-Date: 2016-
|
18
|
-
"Last-Translator:
|
17
|
+
"PO-Revision-Date: 2016-08-22 15:07+0000\n"
|
18
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
19
19
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
20
20
|
"MIME-Version: 1.0\n"
|
21
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -33,10 +33,10 @@ msgid "%s discovered hosts were provisioned"
|
|
33
33
|
msgstr "%s entdeckte Hosts wurden bereitgestellt"
|
34
34
|
|
35
35
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
36
|
-
msgstr ""
|
36
|
+
msgstr "<b>Foreman</b> Zusammenfassung entdeckter Hosts"
|
37
37
|
|
38
38
|
msgid "A summary of discovered hosts"
|
39
|
-
msgstr ""
|
39
|
+
msgstr "Eine Zusammenfassung der entdeckten Hosts"
|
40
40
|
|
41
41
|
msgid "Assign Location"
|
42
42
|
msgstr "Standort zuweisen"
|
@@ -54,10 +54,10 @@ msgid "Auto Provision All"
|
|
54
54
|
msgstr "Alle automatisch bereitstellen"
|
55
55
|
|
56
56
|
msgid "Auto provisioning"
|
57
|
-
msgstr ""
|
57
|
+
msgstr "Automatische Bereitstellung"
|
58
58
|
|
59
59
|
msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
|
60
|
-
msgstr ""
|
60
|
+
msgstr "PXE-Konfiguration automatisch erzeugen, um einen neu entdeckten Host zu einer Entdeckung anzuheften"
|
61
61
|
|
62
62
|
msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
|
63
63
|
msgstr "Neu entdeckte Hosts automatisch bereitstellen gemäß Bereitstellungsregeln"
|
@@ -75,22 +75,22 @@ msgid "Cancel"
|
|
75
75
|
msgstr "Abbrechen"
|
76
76
|
|
77
77
|
msgid "Clean all facts"
|
78
|
-
msgstr ""
|
78
|
+
msgstr "Alle Fakten löschen"
|
79
79
|
|
80
80
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
81
|
-
msgstr ""
|
81
|
+
msgstr "Alle berichteten Fakten während der Bereitstellung löschen (ausgenommen Entdeckungsfakten)"
|
82
82
|
|
83
83
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
84
84
|
msgstr "Fakten konnten nicht vom Proxy %{url} abgerufen werden: %{error}"
|
85
85
|
|
86
86
|
msgid "Create a discovered host for testing (use /facts to create new hosts)"
|
87
|
-
msgstr ""
|
87
|
+
msgstr "Entdeckten Host zum Testen erstellen (verwenden Sie /Fakten zur Erstellung neuer Hosts)"
|
88
88
|
|
89
89
|
msgid "Create a discovery rule"
|
90
90
|
msgstr "Entdeckungsregel erstellen"
|
91
91
|
|
92
92
|
msgid "Create host"
|
93
|
-
msgstr ""
|
93
|
+
msgstr "Host erstellen"
|
94
94
|
|
95
95
|
msgid "Delete %s?"
|
96
96
|
msgstr "%s löschen?"
|
@@ -117,7 +117,7 @@ msgid "Disable rule '%s'?"
|
|
117
117
|
msgstr "Regel '%s' deaktivieren?"
|
118
118
|
|
119
119
|
msgid "Discovered Hosts"
|
120
|
-
msgstr ""
|
120
|
+
msgstr "Entdeckte Hosts"
|
121
121
|
|
122
122
|
msgid "Discovered host: %s"
|
123
123
|
msgstr "Entdeckter Host: %s"
|
@@ -129,22 +129,22 @@ msgid "Discovered hosts are provisioning now"
|
|
129
129
|
msgstr "Entdeckte Hosts, die jetzt bereitgestellt werden"
|
130
130
|
|
131
131
|
msgid "Discovered hosts are rebooting now"
|
132
|
-
msgstr ""
|
132
|
+
msgstr "Entdeckte Hosts werden jetzt neu gestartet"
|
133
133
|
|
134
134
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
135
|
-
msgstr ""
|
135
|
+
msgstr "Vom Foreman-Server unter %{foreman_url} entdeckte Hosts"
|
136
136
|
|
137
137
|
msgid "Discovered hosts summary"
|
138
|
-
msgstr ""
|
138
|
+
msgstr "Zusammenfassung entdeckter Hosts"
|
139
139
|
|
140
140
|
msgid "Discovery Rules"
|
141
141
|
msgstr "Entdeckungsregeln"
|
142
142
|
|
143
143
|
msgid "Discovery location"
|
144
|
-
msgstr ""
|
144
|
+
msgstr "Entdeckungsort"
|
145
145
|
|
146
146
|
msgid "Discovery organization"
|
147
|
-
msgstr ""
|
147
|
+
msgstr "Entdeckungsorganisation"
|
148
148
|
|
149
149
|
msgid "Discovery rules"
|
150
150
|
msgstr "Entdeckungsregeln"
|
@@ -186,7 +186,7 @@ msgid "Errors during auto provisioning: %s"
|
|
186
186
|
msgstr "Fehler bei automatischer Bereitstellung: %s"
|
187
187
|
|
188
188
|
msgid "Errors during reboot: %s"
|
189
|
-
msgstr "Fehler
|
189
|
+
msgstr "Fehler bei Neustart: %s"
|
190
190
|
|
191
191
|
msgid "Execute rules against a discovered host"
|
192
192
|
msgstr "Regeln auf einem entdeckten Host anwenden"
|
@@ -198,19 +198,19 @@ msgid "Expand All"
|
|
198
198
|
msgstr "Alle ausklappen"
|
199
199
|
|
200
200
|
msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
|
201
|
-
msgstr ""
|
201
|
+
msgstr "Erwartetes discovery_fact '%s' fehlt, primäre Schnittstelle kann nicht gefunden und Hostname nicht eingestellt werden"
|
202
202
|
|
203
203
|
msgid "Extra facter columns to show in host lists (separate by comma)"
|
204
|
-
msgstr ""
|
204
|
+
msgstr "Zusätzliche Facter-Spalten zum Anzeigen in Hostlisten (mit Komma getrennt)"
|
205
205
|
|
206
206
|
msgid "Fact columns"
|
207
|
-
msgstr ""
|
207
|
+
msgstr "Faktspalten"
|
208
208
|
|
209
209
|
msgid "Fact name to use for primary interface detection"
|
210
210
|
msgstr ""
|
211
211
|
|
212
212
|
msgid "Facts could not be imported"
|
213
|
-
msgstr ""
|
213
|
+
msgstr "Fakten konnten nicht importiert werden"
|
214
214
|
|
215
215
|
msgid "Facts refreshed for %s"
|
216
216
|
msgstr "Fakten für %s erneuert"
|
@@ -225,28 +225,28 @@ msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
|
225
225
|
msgstr "Fehler beim Neustart von Host %{hostname} mit Fehlermeldung %{error_message}"
|
226
226
|
|
227
227
|
msgid "Failed to reboot hosts with error %s"
|
228
|
-
msgstr ""
|
228
|
+
msgstr "Neustart von Hosts fehlgeschlagen mit Fehler %s"
|
229
229
|
|
230
230
|
msgid "Failed to refresh facts for %s"
|
231
231
|
msgstr "Fehler beim Aktualisieren von Fakten für %s"
|
232
232
|
|
233
233
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
234
|
-
msgstr ""
|
234
|
+
msgstr "Fehler beim Aktualisieren der Fakten für %{hostname} mit Fehlermeldung %{error_message}"
|
235
235
|
|
236
236
|
msgid "Foreman discovered hosts summary"
|
237
|
-
msgstr ""
|
237
|
+
msgstr "Foreman Zusammenfassung entdeckter Hosts"
|
238
238
|
|
239
239
|
msgid "Hardware"
|
240
240
|
msgstr "Hardware"
|
241
241
|
|
242
242
|
msgid "Hardware facts"
|
243
|
-
msgstr ""
|
243
|
+
msgstr "Hardwarefakten"
|
244
244
|
|
245
245
|
msgid "Highlighted facts"
|
246
|
-
msgstr ""
|
246
|
+
msgstr "Hervorgehobene Fakten"
|
247
247
|
|
248
248
|
msgid "Highlights"
|
249
|
-
msgstr ""
|
249
|
+
msgstr "Hervorhebungen"
|
250
250
|
|
251
251
|
msgid "Host"
|
252
252
|
msgstr "Host"
|
@@ -271,13 +271,13 @@ msgid "Host of type %s can not be rebooted"
|
|
271
271
|
msgstr "Host vom Typ %s kann nicht neu gestartet werden"
|
272
272
|
|
273
273
|
msgid "Hostname facts"
|
274
|
-
msgstr ""
|
274
|
+
msgstr "Hostnamenfakten"
|
275
275
|
|
276
276
|
msgid "Hostname for provisioned hosts"
|
277
277
|
msgstr "Hostname für bereitgestellte Hosts"
|
278
278
|
|
279
279
|
msgid "Hostname prefix"
|
280
|
-
msgstr ""
|
280
|
+
msgstr "Hostnamenpräfix"
|
281
281
|
|
282
282
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
283
283
|
msgstr ""
|
@@ -298,22 +298,22 @@ msgid "IPMI"
|
|
298
298
|
msgstr "IPMI"
|
299
299
|
|
300
300
|
msgid "IPMI facts"
|
301
|
-
msgstr ""
|
301
|
+
msgstr "IPMI-Fakten"
|
302
302
|
|
303
303
|
msgid "Identifier"
|
304
304
|
msgstr "Bezeichner"
|
305
305
|
|
306
306
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
307
|
-
msgstr ""
|
307
|
+
msgstr "Image API Verarbeitungsfehler: %{msg} (HTTP/%{code}, Text: %{body})"
|
308
308
|
|
309
309
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
310
|
-
msgstr ""
|
310
|
+
msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
|
311
311
|
|
312
312
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
313
313
|
msgstr ""
|
314
314
|
|
315
315
|
msgid "Interface fact"
|
316
|
-
msgstr ""
|
316
|
+
msgstr "Schnittstellenfakt"
|
317
317
|
|
318
318
|
msgid "Interfaces"
|
319
319
|
msgstr "Schnittstellen"
|
@@ -325,10 +325,10 @@ msgid "Invalid facts: hash does not contain a valid value for any of the facts i
|
|
325
325
|
msgstr ""
|
326
326
|
|
327
327
|
msgid "Invalid hostname: Could not normalize the hostname"
|
328
|
-
msgstr ""
|
328
|
+
msgstr "Ungültiger Hostname: Konnte den Hostnamen nicht normalisieren"
|
329
329
|
|
330
330
|
msgid "Kexec template not associated with operating system"
|
331
|
-
msgstr ""
|
331
|
+
msgstr "Kexec Vorlage ist nicht dem Betriebssystem zugeordnet"
|
332
332
|
|
333
333
|
msgid "Last facts upload"
|
334
334
|
msgstr "Letzter Fakten-Upload"
|
@@ -340,7 +340,7 @@ msgid "List all discovery rules"
|
|
340
340
|
msgstr "Alle Entdeckungsregeln auflisten"
|
341
341
|
|
342
342
|
msgid "List all fact values of a given discovered host"
|
343
|
-
msgstr ""
|
343
|
+
msgstr "Alle Faktwerte eines angegebenen entdeckten Hosts auflisten"
|
344
344
|
|
345
345
|
msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
346
346
|
msgstr ""
|
@@ -349,13 +349,13 @@ msgid "Location"
|
|
349
349
|
msgstr "Standort"
|
350
350
|
|
351
351
|
msgid "Locations"
|
352
|
-
msgstr "
|
352
|
+
msgstr "Standorte"
|
353
353
|
|
354
354
|
msgid "Lock PXE"
|
355
|
-
msgstr ""
|
355
|
+
msgstr "PXE sperren"
|
356
356
|
|
357
357
|
msgid "Locked template name"
|
358
|
-
msgstr ""
|
358
|
+
msgstr "Gesperrter Vorlagenname"
|
359
359
|
|
360
360
|
msgid "MAC address"
|
361
361
|
msgstr "MAC-Adresse"
|
@@ -364,7 +364,7 @@ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
|
|
364
364
|
msgstr "Höchstanzahl von Hosts, die mit dieser Regel bereitgestellt werden (0 = unbegrenzt)"
|
365
365
|
|
366
366
|
msgid "Medium not set for host/hostgroup"
|
367
|
-
msgstr ""
|
367
|
+
msgstr "Medium für Host/Hostgruppe nicht eingestellt"
|
368
368
|
|
369
369
|
msgid "Memory"
|
370
370
|
msgstr "Speicher"
|
@@ -388,7 +388,7 @@ msgid "Network"
|
|
388
388
|
msgstr "Netzwerk"
|
389
389
|
|
390
390
|
msgid "Network facts"
|
391
|
-
msgstr ""
|
391
|
+
msgstr "Netzwerkfakten"
|
392
392
|
|
393
393
|
msgid "New Discovery Rule"
|
394
394
|
msgstr "Neue Entdeckungsregel"
|
@@ -403,16 +403,16 @@ msgid "No discovered hosts available"
|
|
403
403
|
msgstr "Keine entdeckten Hosts verfügbar"
|
404
404
|
|
405
405
|
msgid "No discovered hosts for the selected period"
|
406
|
-
msgstr ""
|
406
|
+
msgstr "Keine entdeckten Hosts für den ausgewählten Zeitraum"
|
407
407
|
|
408
408
|
msgid "No discovered hosts to provision"
|
409
409
|
msgstr "Keine entdeckten Hosts zur Bereitstellung"
|
410
410
|
|
411
411
|
msgid "No discovered hosts to reboot"
|
412
|
-
msgstr ""
|
412
|
+
msgstr "Keine entdeckten Hosts zum Neustarten"
|
413
413
|
|
414
414
|
msgid "No hostgroup associated with rule '%s'"
|
415
|
-
msgstr ""
|
415
|
+
msgstr " Der Regel '%s' ist keine Hostgruppe zugewiesen"
|
416
416
|
|
417
417
|
msgid "No hosts selected"
|
418
418
|
msgstr "Keine Hosts ausgewählt"
|
@@ -421,7 +421,7 @@ msgid "No hosts were found with that id or name"
|
|
421
421
|
msgstr "Keine Systeme mit dieser ID oder diesem Namen gefunden"
|
422
422
|
|
423
423
|
msgid "No new discovered hosts for this period"
|
424
|
-
msgstr ""
|
424
|
+
msgstr "Keine neu entdeckten Hosts für diesen Zeitraum"
|
425
425
|
|
426
426
|
msgid "No rule found for host %s"
|
427
427
|
msgstr "Keine Regel gefunden für Host %s"
|
@@ -430,7 +430,7 @@ msgid "Not reported in more than 7 days"
|
|
430
430
|
msgstr "Nicht berichtet in mehr als 7 Tagen"
|
431
431
|
|
432
432
|
msgid "Operating system not set for host/hostgroup"
|
433
|
-
msgstr ""
|
433
|
+
msgstr "Betriebssystem für Host/Hostgruppe nicht eingestellt"
|
434
434
|
|
435
435
|
msgid "Organization"
|
436
436
|
msgstr "Organisation"
|
@@ -454,7 +454,7 @@ msgid "Provision a discovered host"
|
|
454
454
|
msgstr "Entdeckten Host bereitstellen"
|
455
455
|
|
456
456
|
msgid "Quick create"
|
457
|
-
msgstr ""
|
457
|
+
msgstr "Schnell erstellen"
|
458
458
|
|
459
459
|
msgid "Reboot"
|
460
460
|
msgstr "Neustart"
|
@@ -469,7 +469,7 @@ msgid "Rebooting a discovered host"
|
|
469
469
|
msgstr "Entdeckten Host neu starten"
|
470
470
|
|
471
471
|
msgid "Rebooting all discovered hosts"
|
472
|
-
msgstr ""
|
472
|
+
msgstr "Alle entdeckten Hosts neu starten"
|
473
473
|
|
474
474
|
msgid "Rebooting host %s"
|
475
475
|
msgstr "Host %s wird neu gestartet"
|
@@ -481,22 +481,22 @@ msgid "Refreshing the facts of a discovered host"
|
|
481
481
|
msgstr "Fakten eines entdeckten Hosts werden aktualisiert"
|
482
482
|
|
483
483
|
msgid "Regex to organize facts for hardware section"
|
484
|
-
msgstr ""
|
484
|
+
msgstr "Regex zur Faktensortierung im Hardware-Bereich"
|
485
485
|
|
486
486
|
msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
|
487
487
|
msgstr ""
|
488
488
|
|
489
489
|
msgid "Regex to organize facts for ipmi section"
|
490
|
-
msgstr ""
|
490
|
+
msgstr "Regex zur Faktensortierung im IMPI-Bereich"
|
491
491
|
|
492
492
|
msgid "Regex to organize facts for network section"
|
493
|
-
msgstr ""
|
493
|
+
msgstr "Regex zur Faktensortierung im Netzwerk-Bereich"
|
494
494
|
|
495
495
|
msgid "Regex to organize facts for software section"
|
496
|
-
msgstr ""
|
496
|
+
msgstr "Regex zur Faktensortierung im Software-Bereich"
|
497
497
|
|
498
498
|
msgid "Regex to organize facts for storage section"
|
499
|
-
msgstr ""
|
499
|
+
msgstr "Regex zur Faktensortierung im Speicher-Bereich"
|
500
500
|
|
501
501
|
msgid "Reloading kernel on %s"
|
502
502
|
msgstr "Kernel auf %s wird neu geladen"
|
@@ -520,7 +520,7 @@ msgid "Select all items in this page"
|
|
520
520
|
msgstr "Alle Elemente auf dieser Seite auswählen"
|
521
521
|
|
522
522
|
msgid "Select initial host properties"
|
523
|
-
msgstr ""
|
523
|
+
msgstr "Initiale Hosteigenschaften auswählen"
|
524
524
|
|
525
525
|
msgid "Select location"
|
526
526
|
msgstr "Standort auswählen"
|
@@ -538,7 +538,7 @@ msgid "Software"
|
|
538
538
|
msgstr "Software"
|
539
539
|
|
540
540
|
msgid "Software facts"
|
541
|
-
msgstr ""
|
541
|
+
msgstr "Softwarefakten"
|
542
542
|
|
543
543
|
msgid "Something went wrong while selecting hosts - %s"
|
544
544
|
msgstr "Fehler beim Auswählen der Hosts – %s"
|
@@ -550,7 +550,7 @@ msgid "Storage"
|
|
550
550
|
msgstr "Speicher"
|
551
551
|
|
552
552
|
msgid "Storage facts"
|
553
|
-
msgstr ""
|
553
|
+
msgstr "Speicherfakten"
|
554
554
|
|
555
555
|
msgid "Submit"
|
556
556
|
msgstr "Absenden"
|
@@ -559,13 +559,13 @@ msgid "Subnet"
|
|
559
559
|
msgstr "Subnetz"
|
560
560
|
|
561
561
|
msgid "Successfully provisioned %s"
|
562
|
-
msgstr ""
|
562
|
+
msgstr "%s erfolgreich bereitgestellt"
|
563
563
|
|
564
564
|
msgid "Summary from %{time} ago to %{now}"
|
565
|
-
msgstr ""
|
565
|
+
msgstr "Zusammenfassung von %{time} bis %{now}"
|
566
566
|
|
567
567
|
msgid "Summary report for discovered hosts from Foreman"
|
568
|
-
msgstr ""
|
568
|
+
msgstr "Zusammenfassungsbericht für entdeckte Hosts von Foreman"
|
569
569
|
|
570
570
|
msgid "Target host group for this rule with all properties set"
|
571
571
|
msgstr "Ziel-Hostgruppe für diese Regel mit allen Eigenschaften gesetzt"
|
@@ -592,22 +592,22 @@ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/ta
|
|
592
592
|
msgstr "UUID zur Nachverfolgung des Status von Orchestrierungs-Tasks, GET /api/orchestration/:UUID/tasks"
|
593
593
|
|
594
594
|
msgid "Unable to assign subnet, primary interface is missing IP address"
|
595
|
-
msgstr ""
|
595
|
+
msgstr "Subnetz kann nicht zugewiesen werden, IP-Adresse der primären Schnittstelle fehlt"
|
596
596
|
|
597
597
|
msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
|
598
|
-
msgstr ""
|
598
|
+
msgstr "Entdeckung der primären Schnittstelle mittels MAC '%{mac}', festgelegt durch discovery_fact '%{fact}', nicht möglich"
|
599
599
|
|
600
600
|
msgid "Unable to find a discovery rule, no host provided (check permissions)"
|
601
|
-
msgstr ""
|
601
|
+
msgstr "Keine Entdeckungsregel gefunden, kein Host bereitgestellt (Berechtigungen prüfen)"
|
602
602
|
|
603
603
|
msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
|
604
|
-
msgstr ""
|
604
|
+
msgstr "kexec kann nicht auf %{name} über %{url} ausgeführt werden: %{msg}"
|
605
605
|
|
606
606
|
msgid "Unable to provision %{host}: %{errors}"
|
607
|
-
msgstr ""
|
607
|
+
msgstr "%{host} kann nicht bereitgestellt werden: %{errors} "
|
608
608
|
|
609
609
|
msgid "Unable to reboot %{name} via %{url}: %{msg}"
|
610
|
-
msgstr ""
|
610
|
+
msgstr "%{name} kann nicht über %{url} neu gestartet werden: %{msg}"
|
611
611
|
|
612
612
|
msgid "Update a rule"
|
613
613
|
msgstr "Regel aktualisieren"
|
@@ -637,7 +637,7 @@ msgid "flag is used for temporary shutdown of rules"
|
|
637
637
|
msgstr "Flag zur vorübergehenden Deaktivierung von Regeln"
|
638
638
|
|
639
639
|
msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
|
640
|
-
msgstr ""
|
640
|
+
msgstr "Hash, der Fakten für den Host mit minimaler Anzahl an Fakten enthält: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (Beispiel für primäre Schnittstelle mit dem Namen eth0) "
|
641
641
|
|
642
642
|
msgid "items selected. Uncheck to Clear"
|
643
643
|
msgstr "Elemente ausgewählt. Zum Leeren abwählen"
|