foreman_discovery 16.3.5 → 17.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +1 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- 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 +103 -70
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +109 -76
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +98 -66
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +107 -74
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +109 -76
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +151 -118
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +101 -68
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +107 -74
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +136 -103
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +107 -74
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +109 -76
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +112 -79
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +101 -68
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +153 -120
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +107 -74
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +6 -6
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +32 -10
@@ -14,10 +14,11 @@
|
|
14
14
|
# stbenjam <stephen@redhat.com>, 2016
|
15
15
|
msgid ""
|
16
16
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_discovery
|
17
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
18
18
|
"Report-Msgid-Bugs-To: \n"
|
19
|
-
"
|
20
|
-
"
|
19
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
20
|
+
"PO-Revision-Date: 2021-05-03 08:29+0000\n"
|
21
|
+
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
|
21
22
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
22
23
|
"MIME-Version: 1.0\n"
|
23
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -121,51 +122,51 @@ msgstr "Fakten für einen Host hochladen mit Erstellung des Hosts, wenn erforder
|
|
121
122
|
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)"
|
122
123
|
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) "
|
123
124
|
|
124
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
125
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
125
126
|
msgid "Execute rules against a discovered host"
|
126
127
|
msgstr "Regeln auf einem entdeckten Host anwenden"
|
127
128
|
|
128
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
129
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
129
130
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
130
131
|
msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
|
131
132
|
|
132
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
133
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
133
134
|
msgid "Unable to provision %{host}: %{errors}"
|
134
135
|
msgstr "%{host} kann nicht bereitgestellt werden: %{errors} "
|
135
136
|
|
136
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
137
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
137
138
|
msgid "No rule found for host %s"
|
138
139
|
msgstr "Keine Regel gefunden für Host %s"
|
139
140
|
|
140
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
141
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
141
142
|
msgid "Execute rules against all currently discovered hosts"
|
142
143
|
msgstr "Regeln auf allen kürzlich entdeckten Hosts anwenden"
|
143
144
|
|
144
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
145
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
145
146
|
msgid "Errors during auto provisioning: %s"
|
146
147
|
msgstr "Fehler bei automatischer Bereitstellung: %s"
|
147
148
|
|
148
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
149
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
149
150
|
msgid "No discovered hosts to provision"
|
150
151
|
msgstr "Keine entdeckten Hosts zur Bereitstellung"
|
151
152
|
|
152
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
153
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
153
154
|
msgid "%s discovered hosts were provisioned"
|
154
155
|
msgstr "%s entdeckte Hosts wurden bereitgestellt"
|
155
156
|
|
156
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
157
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
157
158
|
msgid "Refreshing the facts of a discovered host"
|
158
159
|
msgstr "Fakten eines entdeckten Hosts werden aktualisiert"
|
159
160
|
|
160
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
161
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
161
162
|
msgid "Rebooting a discovered host"
|
162
163
|
msgstr "Entdeckten Host neu starten"
|
163
164
|
|
164
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
165
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
165
166
|
msgid "Rebooting all discovered hosts"
|
166
167
|
msgstr "Alle entdeckten Hosts neu starten"
|
167
168
|
|
168
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
169
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
169
170
|
msgid "Discovered hosts are rebooting now"
|
170
171
|
msgstr "Entdeckte Hosts werden jetzt neu gestartet"
|
171
172
|
|
@@ -297,58 +298,34 @@ msgstr "Fehler bei automatischer Bereitstellung von Host %s: %s"
|
|
297
298
|
msgid "Discovered hosts are provisioning now"
|
298
299
|
msgstr "Entdeckte Hosts, die jetzt bereitgestellt werden"
|
299
300
|
|
300
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
301
|
-
msgid "
|
302
|
-
msgstr "
|
303
|
-
|
304
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
305
|
-
msgid "Storage"
|
306
|
-
msgstr "Speicher"
|
307
|
-
|
308
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
309
|
-
msgid "Hardware"
|
310
|
-
msgstr "Hardware"
|
311
|
-
|
312
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
313
|
-
msgid "Network"
|
314
|
-
msgstr "Netzwerk"
|
315
|
-
|
316
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
317
|
-
msgid "Software"
|
318
|
-
msgstr "Software"
|
319
|
-
|
320
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
321
|
-
msgid "IPMI"
|
322
|
-
msgstr "IPMI"
|
301
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
302
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
303
|
+
msgstr ""
|
323
304
|
|
324
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
325
|
-
msgid "
|
326
|
-
msgstr "
|
305
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
306
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
307
|
+
msgstr ""
|
327
308
|
|
328
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
309
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
329
310
|
msgid "No hosts were found with that id or name"
|
330
311
|
msgstr "Keine Systeme mit dieser ID oder diesem Namen gefunden"
|
331
312
|
|
332
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
313
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
333
314
|
msgid "No hosts selected"
|
334
315
|
msgstr "Keine Hosts ausgewählt"
|
335
316
|
|
336
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
317
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
337
318
|
msgid "Something went wrong while selecting hosts - %s"
|
338
319
|
msgstr "Fehler beim Auswählen der Hosts – %s"
|
339
320
|
|
340
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
321
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
341
322
|
msgid "Rule enabled"
|
342
323
|
msgstr "Regel aktiviert"
|
343
324
|
|
344
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
325
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
345
326
|
msgid "Rule disabled"
|
346
327
|
msgstr "Regel deaktiviert"
|
347
328
|
|
348
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
349
|
-
msgid "%s ago"
|
350
|
-
msgstr "vor %s"
|
351
|
-
|
352
329
|
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
353
330
|
msgid "Auto Provision"
|
354
331
|
msgstr "Automatisch bereitstellen"
|
@@ -434,6 +411,10 @@ msgid "Enable rule '%s'?"
|
|
434
411
|
msgstr "Regel '%s' aktivieren?"
|
435
412
|
|
436
413
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
414
|
+
msgid "Clone"
|
415
|
+
msgstr "Klonen"
|
416
|
+
|
417
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
437
418
|
msgid "Delete rule '%s'?"
|
438
419
|
msgstr "Regel '%s' löschen?"
|
439
420
|
|
@@ -457,13 +438,13 @@ msgstr "muss mit einem Buchstaben oder ERB beginnen."
|
|
457
438
|
msgid "must be present."
|
458
439
|
msgstr "muss vorhanden sein."
|
459
440
|
|
460
|
-
#: ../app/models/discovery_rule.rb:
|
441
|
+
#: ../app/models/discovery_rule.rb:57
|
461
442
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
462
443
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
463
444
|
msgstr[0] ""
|
464
445
|
msgstr[1] ""
|
465
446
|
|
466
|
-
#: ../app/models/discovery_rule.rb:
|
447
|
+
#: ../app/models/discovery_rule.rb:61
|
467
448
|
msgid "Host group location %s must also be associated to the discovery rule"
|
468
449
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
469
450
|
msgstr[0] ""
|
@@ -497,23 +478,23 @@ msgstr ""
|
|
497
478
|
msgid "Facts could not be imported"
|
498
479
|
msgstr "Fakten konnten nicht importiert werden"
|
499
480
|
|
500
|
-
#: ../app/models/host/discovered.rb:
|
481
|
+
#: ../app/models/host/discovered.rb:155
|
501
482
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
502
483
|
msgstr "Fakten konnten nicht vom Proxy %{url} abgerufen werden: %{error}"
|
503
484
|
|
504
|
-
#: ../app/models/host/discovered.rb:
|
485
|
+
#: ../app/models/host/discovered.rb:173
|
505
486
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
506
487
|
msgstr ""
|
507
488
|
|
508
|
-
#: ../app/models/host/discovered.rb:
|
489
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
509
490
|
msgid "Unable to perform %{action} on %{ips}"
|
510
491
|
msgstr ""
|
511
492
|
|
512
|
-
#: ../app/models/host/discovered.rb:
|
493
|
+
#: ../app/models/host/discovered.rb:196
|
513
494
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
514
495
|
msgstr ""
|
515
496
|
|
516
|
-
#: ../app/models/host/discovered.rb:
|
497
|
+
#: ../app/models/host/discovered.rb:220
|
517
498
|
msgid "Invalid hostname: Could not normalize the hostname"
|
518
499
|
msgstr "Ungültiger Hostname: Konnte den Hostnamen nicht normalisieren"
|
519
500
|
|
@@ -721,6 +702,14 @@ msgstr ""
|
|
721
702
|
msgid "Type of name generator"
|
722
703
|
msgstr "Typ des Namensgenerators"
|
723
704
|
|
705
|
+
#: ../app/models/setting/discovered.rb:40
|
706
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
707
|
+
msgstr ""
|
708
|
+
|
709
|
+
#: ../app/models/setting/discovered.rb:40
|
710
|
+
msgid "Prefer IPv6"
|
711
|
+
msgstr ""
|
712
|
+
|
724
713
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
725
714
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
726
715
|
msgstr ""
|
@@ -733,6 +722,34 @@ msgstr ""
|
|
733
722
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
734
723
|
msgstr ""
|
735
724
|
|
725
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
726
|
+
msgid "Highlights"
|
727
|
+
msgstr "Hervorhebungen"
|
728
|
+
|
729
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
730
|
+
msgid "Storage"
|
731
|
+
msgstr "Speicher"
|
732
|
+
|
733
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
734
|
+
msgid "Hardware"
|
735
|
+
msgstr "Hardware"
|
736
|
+
|
737
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
738
|
+
msgid "Network"
|
739
|
+
msgstr "Netzwerk"
|
740
|
+
|
741
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
742
|
+
msgid "Software"
|
743
|
+
msgstr "Software"
|
744
|
+
|
745
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
746
|
+
msgid "IPMI"
|
747
|
+
msgstr "IPMI"
|
748
|
+
|
749
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
750
|
+
msgid "Miscellaneous"
|
751
|
+
msgstr "Erweitert"
|
752
|
+
|
736
753
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
737
754
|
msgid "IPAM must be configured for subnet '%s'"
|
738
755
|
msgstr ""
|
@@ -745,6 +762,10 @@ msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
|
|
745
762
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
746
763
|
msgstr "Image API Verarbeitungsfehler: %{msg} (HTTP/%{code}, Text: %{body})"
|
747
764
|
|
765
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
766
|
+
msgid "Host %s has been dicovered"
|
767
|
+
msgstr ""
|
768
|
+
|
748
769
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
749
770
|
msgid "Discovered Host"
|
750
771
|
msgid_plural "Discovered Hosts"
|
@@ -803,11 +824,11 @@ msgstr "Festplattenanzahl"
|
|
803
824
|
msgid "Disks Size"
|
804
825
|
msgstr "Festplattengröße"
|
805
826
|
|
806
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
827
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
|
807
828
|
msgid "Location"
|
808
829
|
msgstr "Standort"
|
809
830
|
|
810
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
831
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
|
811
832
|
msgid "Organization"
|
812
833
|
msgstr "Organisation"
|
813
834
|
|
@@ -819,7 +840,7 @@ msgstr "Subnetz"
|
|
819
840
|
msgid "Last Facts Upload"
|
820
841
|
msgstr "Letzter Fakten-Upload"
|
821
842
|
|
822
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
843
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
823
844
|
msgid "Actions"
|
824
845
|
msgstr "Aktionen"
|
825
846
|
|
@@ -967,6 +988,10 @@ msgstr ""
|
|
967
988
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
968
989
|
msgstr ""
|
969
990
|
|
991
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
992
|
+
msgid "Clone %s"
|
993
|
+
msgstr "%s klonen"
|
994
|
+
|
970
995
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
971
996
|
msgid "Edit %s"
|
972
997
|
msgstr "%s bearbeiten"
|
@@ -999,7 +1024,7 @@ msgstr "Hostgruppe"
|
|
999
1024
|
msgid "Hosts/Limit"
|
1000
1025
|
msgstr "Hosts/Limit"
|
1001
1026
|
|
1002
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1027
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1003
1028
|
msgid "DiscoveryRule|Enabled"
|
1004
1029
|
msgstr "Aktiviert"
|
1005
1030
|
|
@@ -1020,8 +1045,8 @@ msgid "A summary of discovered hosts"
|
|
1020
1045
|
msgstr "Eine Zusammenfassung der entdeckten Hosts"
|
1021
1046
|
|
1022
1047
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1023
|
-
msgid "
|
1024
|
-
msgstr "
|
1048
|
+
msgid "New hosts"
|
1049
|
+
msgstr ""
|
1025
1050
|
|
1026
1051
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1027
1052
|
msgid "One or more hosts have been discovered"
|
@@ -1031,19 +1056,27 @@ msgstr "Einer oder mehrere Hosts wurden entdeckt"
|
|
1031
1056
|
msgid "Details"
|
1032
1057
|
msgstr "Details"
|
1033
1058
|
|
1034
|
-
#: ../
|
1059
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1060
|
+
msgid "Hosts"
|
1061
|
+
msgstr "Hosts"
|
1062
|
+
|
1063
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1064
|
+
msgid "Error message goes here"
|
1065
|
+
msgstr ""
|
1066
|
+
|
1067
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1035
1068
|
msgid "Discovery Kexec template"
|
1036
1069
|
msgstr ""
|
1037
1070
|
|
1038
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1071
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1039
1072
|
msgid "Discovery Proxy"
|
1040
1073
|
msgstr "Discovery-Proxy"
|
1041
1074
|
|
1042
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1075
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1043
1076
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1044
1077
|
msgstr ""
|
1045
1078
|
|
1046
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1079
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1047
1080
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1048
1081
|
msgstr ""
|
1049
1082
|
|
@@ -1053,20 +1086,20 @@ msgstr ""
|
|
1053
1086
|
|
1054
1087
|
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1055
1088
|
msgid "documentation"
|
1056
|
-
msgstr ""
|
1089
|
+
msgstr "Dokumentation"
|
1057
1090
|
|
1058
1091
|
#: action_names.rb:2
|
1059
|
-
msgid "
|
1060
|
-
msgstr "Aktion
|
1092
|
+
msgid "Remote action:"
|
1093
|
+
msgstr "Entfernte Aktion:"
|
1061
1094
|
|
1062
1095
|
#: action_names.rb:3
|
1063
|
-
msgid "Import facts"
|
1064
|
-
msgstr "Fakten importieren"
|
1065
|
-
|
1066
|
-
#: action_names.rb:4
|
1067
1096
|
msgid "Import Puppet classes"
|
1068
1097
|
msgstr "Puppet-Klassen importieren"
|
1069
1098
|
|
1099
|
+
#: action_names.rb:4
|
1100
|
+
msgid "Import facts"
|
1101
|
+
msgstr "Fakten importieren"
|
1102
|
+
|
1070
1103
|
#: action_names.rb:5
|
1071
|
-
msgid "
|
1072
|
-
msgstr "
|
1104
|
+
msgid "Action with sub plans"
|
1105
|
+
msgstr "Aktion mit Unterplänen"
|
@@ -14,10 +14,10 @@
|
|
14
14
|
# stbenjam <stephen@redhat.com>, 2016
|
15
15
|
msgid ""
|
16
16
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_discovery 16.
|
17
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
18
18
|
"Report-Msgid-Bugs-To: \n"
|
19
|
-
"PO-Revision-Date:
|
20
|
-
"Last-Translator:
|
19
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
20
|
+
"Last-Translator: Crited <Alexander.Stoll@netways.de>\n"
|
21
21
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
22
22
|
"MIME-Version: 1.0\n"
|
23
23
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -28,9 +28,6 @@ msgstr ""
|
|
28
28
|
msgid "%s - The following hosts are about to be changed"
|
29
29
|
msgstr "%s - Die folgenden Hosts werden geändert"
|
30
30
|
|
31
|
-
msgid "%s ago"
|
32
|
-
msgstr "vor %s"
|
33
|
-
|
34
31
|
msgid "%s discovered hosts were provisioned"
|
35
32
|
msgstr "%s entdeckte Hosts wurden bereitgestellt"
|
36
33
|
|
@@ -41,7 +38,7 @@ msgid "A summary of discovered hosts"
|
|
41
38
|
msgstr "Eine Zusammenfassung der entdeckten Hosts"
|
42
39
|
|
43
40
|
msgid "Action with sub plans"
|
44
|
-
msgstr ""
|
41
|
+
msgstr "Aktion mit Unterplänen"
|
45
42
|
|
46
43
|
msgid "Actions"
|
47
44
|
msgstr "Aktionen"
|
@@ -88,6 +85,12 @@ msgstr "Alle Fakten löschen"
|
|
88
85
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
89
86
|
msgstr "Alle berichteten Fakten während der Bereitstellung löschen (ausgenommen Entdeckungsfakten)"
|
90
87
|
|
88
|
+
msgid "Clone"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Clone %s"
|
92
|
+
msgstr ""
|
93
|
+
|
91
94
|
msgid "Collapse All"
|
92
95
|
msgstr "Alle einklappen"
|
93
96
|
|
@@ -153,9 +156,15 @@ msgstr[1] ""
|
|
153
156
|
msgid "Discovered Hosts"
|
154
157
|
msgstr "Entdeckte Hosts"
|
155
158
|
|
159
|
+
msgid "Discovered Rules"
|
160
|
+
msgstr ""
|
161
|
+
|
156
162
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
157
163
|
msgstr ""
|
158
164
|
|
165
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
166
|
+
msgstr ""
|
167
|
+
|
159
168
|
msgid "Discovered host: %s"
|
160
169
|
msgstr "Entdeckter Host: %s"
|
161
170
|
|
@@ -168,6 +177,9 @@ msgstr "Entdeckte Hosts werden jetzt neu gestartet"
|
|
168
177
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
169
178
|
msgstr "Vom Foreman-Server unter %{foreman_url} entdeckte Hosts"
|
170
179
|
|
180
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
181
|
+
msgstr ""
|
182
|
+
|
171
183
|
msgid "Discovered hosts summary"
|
172
184
|
msgstr "Zusammenfassung entdeckter Hosts"
|
173
185
|
|
@@ -234,6 +246,9 @@ msgstr "Aktivieren"
|
|
234
246
|
msgid "Enable rule '%s'?"
|
235
247
|
msgstr "Regel '%s' aktivieren?"
|
236
248
|
|
249
|
+
msgid "Error message goes here"
|
250
|
+
msgstr ""
|
251
|
+
|
237
252
|
msgid "Error on existing NIC"
|
238
253
|
msgstr "Fehler auf existierenden NIC"
|
239
254
|
|
@@ -288,6 +303,9 @@ msgstr "Fehler beim Aktualisieren von Fakten für %s"
|
|
288
303
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
289
304
|
msgstr "Fehler beim Aktualisieren der Fakten für %{hostname} mit Fehlermeldung %{error_message}"
|
290
305
|
|
306
|
+
msgid "For more information please see "
|
307
|
+
msgstr ""
|
308
|
+
|
291
309
|
msgid "Force DNS"
|
292
310
|
msgstr "DNS erzwingen"
|
293
311
|
|
@@ -312,6 +330,9 @@ msgstr "Hervorhebungen"
|
|
312
330
|
msgid "Host"
|
313
331
|
msgstr "Host"
|
314
332
|
|
333
|
+
msgid "Host %s has been dicovered"
|
334
|
+
msgstr ""
|
335
|
+
|
315
336
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
316
337
|
msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
|
317
338
|
|
@@ -332,10 +353,10 @@ msgid "Host of type %s can not be rebooted"
|
|
332
353
|
msgstr "Host vom Typ %s kann nicht neu gestartet werden"
|
333
354
|
|
334
355
|
msgid "Host's owner type"
|
335
|
-
msgstr ""
|
356
|
+
msgstr "Eigentümertyp des Hosts"
|
336
357
|
|
337
358
|
msgid "Host's parameters (array or indexed hash)"
|
338
|
-
msgstr ""
|
359
|
+
msgstr "Hostparameter (Array oder indizierter Hash)"
|
339
360
|
|
340
361
|
msgid "Hostname facts"
|
341
362
|
msgstr "Hostnamenfakten"
|
@@ -386,10 +407,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
386
407
|
msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
|
387
408
|
|
388
409
|
msgid "Import Puppet classes"
|
389
|
-
msgstr ""
|
410
|
+
msgstr "Puppet-Klassen importieren"
|
390
411
|
|
391
412
|
msgid "Import facts"
|
392
|
-
msgstr ""
|
413
|
+
msgstr "Fakten importieren"
|
393
414
|
|
394
415
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
395
416
|
msgstr ""
|
@@ -479,7 +500,7 @@ msgid "Name"
|
|
479
500
|
msgstr "Name"
|
480
501
|
|
481
502
|
msgid "Name of the parameter"
|
482
|
-
msgstr ""
|
503
|
+
msgstr "Name des Parameters"
|
483
504
|
|
484
505
|
msgid "Network"
|
485
506
|
msgstr "Netzwerk"
|
@@ -490,6 +511,9 @@ msgstr "Netzwerkfakten"
|
|
490
511
|
msgid "New Discovery Rule"
|
491
512
|
msgstr "Neue Entdeckungsregel"
|
492
513
|
|
514
|
+
msgid "New hosts"
|
515
|
+
msgstr ""
|
516
|
+
|
493
517
|
msgid "New in the last 24 hours"
|
494
518
|
msgstr "Neu in den letzten 24 Stunden"
|
495
519
|
|
@@ -542,7 +566,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
542
566
|
msgstr ""
|
543
567
|
|
544
568
|
msgid "Parameter value"
|
545
|
-
msgstr ""
|
569
|
+
msgstr "Parameterwert"
|
546
570
|
|
547
571
|
msgid "Please Confirm"
|
548
572
|
msgstr "Bitte bestätigen"
|
@@ -608,7 +632,7 @@ msgid "Reloading kernel on %s"
|
|
608
632
|
msgstr "Kernel auf %s wird neu geladen"
|
609
633
|
|
610
634
|
msgid "Remote action:"
|
611
|
-
msgstr ""
|
635
|
+
msgstr "Entfernte Aktion:"
|
612
636
|
|
613
637
|
msgid "Reported in the last 7 days"
|
614
638
|
msgstr "Berichtet in den letzten 7 Tagen"
|
@@ -698,7 +722,7 @@ msgid "Type of name generator"
|
|
698
722
|
msgstr "Typ des Namensgenerators"
|
699
723
|
|
700
724
|
msgid "Type of value"
|
701
|
-
msgstr ""
|
725
|
+
msgstr "Typ des Wertes"
|
702
726
|
|
703
727
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
704
728
|
msgstr "UUID zum Tracken des Status der Orchestrierungsaufgaben, GET /api/orchestration/:UUID/tasks"
|
@@ -736,6 +760,9 @@ msgstr "darf keine Leerzeichen enthalten."
|
|
736
760
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
737
761
|
msgstr "definiert ein Muster, nach dem einfach lesbare Hostnamen zu übereinstimmenden Hosts zugewiesen werden"
|
738
762
|
|
763
|
+
msgid "documentation"
|
764
|
+
msgstr "Dokumentation"
|
765
|
+
|
739
766
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
740
767
|
msgstr "ermöglicht die Begrenzung der maximal bereitgestellten Hosts pro Regel"
|
741
768
|
|
@@ -785,13 +812,13 @@ msgid "represents rule name shown to the users"
|
|
785
812
|
msgstr "repräsentiert den Regelnamen, der Benutzern angezeigt wird"
|
786
813
|
|
787
814
|
msgid "required if host is managed and custom partition has not been defined"
|
788
|
-
msgstr ""
|
815
|
+
msgstr "erforderlich, wenn der Host gemanagt und keine spezifische Partition definiert ist"
|
789
816
|
|
790
817
|
msgid "required if host is managed and value is not inherited from host group"
|
791
|
-
msgstr ""
|
818
|
+
msgstr "erforderlich, wenn der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
|
792
819
|
|
793
820
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
794
|
-
msgstr ""
|
821
|
+
msgstr "erforderlich, wenn die Bereitstellung nicht image-basiert, der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
|
795
822
|
|
796
823
|
msgid "required if value is not inherited from host group or default password in settings"
|
797
824
|
msgstr "erforderlich, falls kein Wert von Hostgruppe geerbt wird oder es nicht das Standardpasswort in Einstellungen ist"
|
Binary file
|