foreman_discovery 16.3.1 → 17.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
  3. data/app/controllers/discovered_hosts_controller.rb +24 -35
  4. data/app/controllers/discovery_rules_controller.rb +12 -1
  5. data/app/helpers/discovered_hosts_helper.rb +6 -1
  6. data/app/helpers/discovery_rules_helper.rb +1 -0
  7. data/app/models/discovery_rule.rb +10 -5
  8. data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
  9. data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
  10. data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
  11. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
  12. data/app/views/discovered_hosts/welcome.html.erb +1 -2
  13. data/app/views/discovery_rules/clone.erb +3 -0
  14. data/app/views/discovery_rules/index.html.erb +4 -0
  15. data/app/views/discovery_rules/welcome.html.erb +15 -0
  16. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  17. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  18. data/config/routes.rb +2 -0
  19. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  20. data/lib/foreman_discovery/engine.rb +3 -7
  21. data/lib/foreman_discovery/version.rb +1 -1
  22. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  23. data/locale/ca/foreman_discovery.edit.po +136 -98
  24. data/locale/ca/foreman_discovery.po +36 -9
  25. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/de/foreman_discovery.edit.po +148 -112
  27. data/locale/de/foreman_discovery.po +45 -18
  28. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/en/foreman_discovery.edit.po +127 -91
  30. data/locale/en/foreman_discovery.po +31 -4
  31. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/en_GB/foreman_discovery.edit.po +139 -109
  33. data/locale/en_GB/foreman_discovery.po +36 -9
  34. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/es/foreman_discovery.edit.po +172 -140
  36. data/locale/es/foreman_discovery.po +70 -41
  37. data/locale/foreman_discovery.pot +142 -97
  38. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/fr/foreman_discovery.edit.po +179 -147
  40. data/locale/fr/foreman_discovery.po +76 -49
  41. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/gl/foreman_discovery.edit.po +133 -92
  43. data/locale/gl/foreman_discovery.po +32 -5
  44. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/it/foreman_discovery.edit.po +147 -106
  46. data/locale/it/foreman_discovery.po +44 -17
  47. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/ja/foreman_discovery.edit.po +182 -152
  49. data/locale/ja/foreman_discovery.po +79 -54
  50. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/ko/foreman_discovery.edit.po +146 -105
  52. data/locale/ko/foreman_discovery.po +43 -16
  53. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/pt_BR/foreman_discovery.edit.po +171 -136
  55. data/locale/pt_BR/foreman_discovery.po +69 -39
  56. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/ru/foreman_discovery.edit.po +147 -106
  58. data/locale/ru/foreman_discovery.po +43 -16
  59. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/sv_SE/foreman_discovery.edit.po +135 -94
  61. data/locale/sv_SE/foreman_discovery.po +34 -7
  62. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/zh_CN/foreman_discovery.edit.po +217 -188
  64. data/locale/zh_CN/foreman_discovery.po +114 -90
  65. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/zh_TW/foreman_discovery.edit.po +146 -105
  67. data/locale/zh_TW/foreman_discovery.po +43 -16
  68. data/package.json +7 -7
  69. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  70. data/test/functional/discovery_rules_controller_test.rb +6 -1
  71. data/test/integration/discovered_hosts_test.rb +53 -5
  72. data/test/test_helper_discovery.rb +5 -0
  73. data/test/unit/discovery_rule_test.rb +24 -2
  74. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  75. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  76. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  77. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  78. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  79. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  82. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  83. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  84. data/webpack/index.js +9 -8
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  88. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  89. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  93. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  94. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  95. data/webpack/src/reducers.js +0 -2
  96. metadata +39 -17
@@ -7,9 +7,9 @@
7
7
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 16.2.0\n"
10
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
12
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
13
13
  "Last-Translator: Transifex Bot <>\n"
14
14
  "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
15
15
  "\n"
@@ -22,9 +22,6 @@ msgstr ""
22
22
  msgid "%s - The following hosts are about to be changed"
23
23
  msgstr "%s - Els següents amfitrions estan a punt de ser canviats"
24
24
 
25
- msgid "%s ago"
26
- msgstr "fa %s"
27
-
28
25
  msgid "%s discovered hosts were provisioned"
29
26
  msgstr "%s amfitrions descoberts van ser aprovisionats"
30
27
 
@@ -82,6 +79,12 @@ msgstr ""
82
79
  msgid "Clean all reported facts during provisioning (except discovery facts)"
83
80
  msgstr ""
84
81
 
82
+ msgid "Clone"
83
+ msgstr ""
84
+
85
+ msgid "Clone %s"
86
+ msgstr ""
87
+
85
88
  msgid "Collapse All"
86
89
  msgstr ""
87
90
 
@@ -147,9 +150,15 @@ msgstr[1] ""
147
150
  msgid "Discovered Hosts"
148
151
  msgstr ""
149
152
 
153
+ msgid "Discovered Rules"
154
+ msgstr ""
155
+
150
156
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
151
157
  msgstr ""
152
158
 
159
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
160
+ msgstr ""
161
+
153
162
  msgid "Discovered host: %s"
154
163
  msgstr "Amfitrions descoberts: %s"
155
164
 
@@ -162,6 +171,9 @@ msgstr "Ara s'estan reiniciant els amfitrions descoberts"
162
171
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
163
172
  msgstr ""
164
173
 
174
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
175
+ msgstr ""
176
+
165
177
  msgid "Discovered hosts summary"
166
178
  msgstr ""
167
179
 
@@ -228,6 +240,9 @@ msgstr "Habilita"
228
240
  msgid "Enable rule '%s'?"
229
241
  msgstr ""
230
242
 
243
+ msgid "Error message goes here"
244
+ msgstr ""
245
+
231
246
  msgid "Error on existing NIC"
232
247
  msgstr ""
233
248
 
@@ -282,6 +297,9 @@ msgstr "No s'ha pogut refrescar els objectes d'interès per a %s"
282
297
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
283
298
  msgstr ""
284
299
 
300
+ msgid "For more information please see "
301
+ msgstr ""
302
+
285
303
  msgid "Force DNS"
286
304
  msgstr ""
287
305
 
@@ -306,6 +324,9 @@ msgstr ""
306
324
  msgid "Host"
307
325
  msgstr "Amfitrió"
308
326
 
327
+ msgid "Host %s has been dicovered"
328
+ msgstr ""
329
+
309
330
  msgid "Host %{host} was provisioned with rule %{rule}"
310
331
  msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
311
332
 
@@ -326,7 +347,7 @@ msgid "Host of type %s can not be rebooted"
326
347
  msgstr ""
327
348
 
328
349
  msgid "Host's owner type"
329
- msgstr ""
350
+ msgstr "Tipus de propietari de l'amfitrió"
330
351
 
331
352
  msgid "Host's parameters (array or indexed hash)"
332
353
  msgstr ""
@@ -473,7 +494,7 @@ msgid "Name"
473
494
  msgstr "Nom"
474
495
 
475
496
  msgid "Name of the parameter"
476
- msgstr ""
497
+ msgstr "Nom del paràmetre"
477
498
 
478
499
  msgid "Network"
479
500
  msgstr ""
@@ -484,6 +505,9 @@ msgstr ""
484
505
  msgid "New Discovery Rule"
485
506
  msgstr "Regla de descobriment nova"
486
507
 
508
+ msgid "New hosts"
509
+ msgstr ""
510
+
487
511
  msgid "New in the last 24 hours"
488
512
  msgstr "Nou en les últimes 24 hores"
489
513
 
@@ -536,7 +560,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
536
560
  msgstr ""
537
561
 
538
562
  msgid "Parameter value"
539
- msgstr ""
563
+ msgstr "Valor del paràmetre"
540
564
 
541
565
  msgid "Please Confirm"
542
566
  msgstr "Si us plau, confirmeu"
@@ -730,6 +754,9 @@ msgstr "no pot contenir espais en blanc."
730
754
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
731
755
  msgstr ""
732
756
 
757
+ msgid "documentation"
758
+ msgstr ""
759
+
733
760
  msgid "enables to limit maximum amount of provisioned hosts per rule"
734
761
  msgstr "permet la limitació del nombre total màxim dels amfitrions aprovisionats per cada regla"
735
762
 
@@ -779,7 +806,7 @@ msgid "represents rule name shown to the users"
779
806
  msgstr "representa el nom de la regla que es mostra als usuaris"
780
807
 
781
808
  msgid "required if host is managed and custom partition has not been defined"
782
- msgstr ""
809
+ msgstr "es requereix si l'amfitrió està gestionat i no s'ha definit la partició personalitzada"
783
810
 
784
811
  msgid "required if host is managed and value is not inherited from host group"
785
812
  msgstr ""
@@ -14,10 +14,11 @@
14
14
  # stbenjam <stephen@redhat.com>, 2016
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: foreman_discovery 16.2.0\n"
17
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
20
- "Last-Translator: Transifex Bot <>\n"
19
+ "POT-Creation-Date: 2021-05-03 08:46+0200\n"
20
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
21
+ "Last-Translator: Crited <Alexander.Stoll@netways.de>\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"
@@ -63,7 +64,7 @@ msgstr "Entdeckten Host bereitstellen"
63
64
 
64
65
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
65
66
  msgid "required if host is managed and value is not inherited from host group"
66
- msgstr ""
67
+ msgstr "erforderlich, wenn der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
67
68
 
68
69
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
69
70
  msgid "not required if using a subnet with DHCP proxy"
@@ -75,31 +76,31 @@ msgstr "nicht erforderlich für eine virtuelle Maschine"
75
76
 
76
77
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
77
78
  msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
78
- msgstr ""
79
+ msgstr "erforderlich, wenn die Bereitstellung nicht image-basiert, der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
79
80
 
80
81
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
81
82
  msgid "required if host is managed and custom partition has not been defined"
82
- msgstr ""
83
+ msgstr "erforderlich, wenn der Host gemanagt und keine spezifische Partition definiert ist"
83
84
 
84
85
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
85
86
  msgid "Host's owner type"
86
- msgstr ""
87
+ msgstr "Eigentümertyp des Hosts"
87
88
 
88
89
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
89
90
  msgid "Host's parameters (array or indexed hash)"
90
- msgstr ""
91
+ msgstr "Hostparameter (Array oder indizierter Hash)"
91
92
 
92
93
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
93
94
  msgid "Name of the parameter"
94
- msgstr ""
95
+ msgstr "Name des Parameters"
95
96
 
96
97
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
97
98
  msgid "Parameter value"
98
- msgstr ""
99
+ msgstr "Parameterwert"
99
100
 
100
101
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
101
102
  msgid "Type of value"
102
- msgstr ""
103
+ msgstr "Typ des Wertes"
103
104
 
104
105
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
105
106
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
@@ -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:129
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:135 ../app/controllers/discovered_hosts_controller.rb:160
129
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
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:138
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:144 ../app/controllers/discovered_hosts_controller.rb:167
137
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
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:151
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:155 ../app/controllers/discovered_hosts_controller.rb:173
145
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
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:158 ../app/controllers/discovered_hosts_controller.rb:176
149
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
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:180
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:191
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:200
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:209
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:220 ../app/controllers/discovered_hosts_controller.rb:129
169
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
169
170
  msgid "Discovered hosts are rebooting now"
170
171
  msgstr "Entdeckte Hosts werden jetzt neu gestartet"
171
172
 
@@ -245,119 +246,95 @@ msgstr "Fehler bei Neustart: %s"
245
246
  msgid "No discovered hosts to reboot"
246
247
  msgstr "Keine entdeckten Hosts zum Neustarten"
247
248
 
248
- #: ../app/controllers/discovered_hosts_controller.rb:63
249
+ #: ../app/controllers/discovered_hosts_controller.rb:60
249
250
  msgid "Successfully provisioned %s"
250
251
  msgstr "%s erfolgreich bereitgestellt"
251
252
 
252
- #: ../app/controllers/discovered_hosts_controller.rb:97
253
+ #: ../app/controllers/discovered_hosts_controller.rb:94
253
254
  msgid "Facts refreshed for %s"
254
255
  msgstr "Fakten für %s erneuert"
255
256
 
256
- #: ../app/controllers/discovered_hosts_controller.rb:99
257
+ #: ../app/controllers/discovered_hosts_controller.rb:96
257
258
  msgid "Failed to refresh facts for %s"
258
259
  msgstr "Fehler beim Aktualisieren von Fakten für %s"
259
260
 
260
- #: ../app/controllers/discovered_hosts_controller.rb:102
261
+ #: ../app/controllers/discovered_hosts_controller.rb:99
261
262
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
262
263
  msgstr "Fehler beim Aktualisieren der Fakten für %{hostname} mit Fehlermeldung %{error_message}"
263
264
 
264
- #: ../app/controllers/discovered_hosts_controller.rb:109
265
+ #: ../app/controllers/discovered_hosts_controller.rb:106
265
266
  msgid "Host of type %s can not be rebooted"
266
267
  msgstr "Host vom Typ %s kann nicht neu gestartet werden"
267
268
 
268
- #: ../app/controllers/discovered_hosts_controller.rb:113
269
+ #: ../app/controllers/discovered_hosts_controller.rb:110
269
270
  msgid "Rebooting host %s"
270
271
  msgstr "Host %s wird neu gestartet"
271
272
 
272
- #: ../app/controllers/discovered_hosts_controller.rb:115
273
+ #: ../app/controllers/discovered_hosts_controller.rb:112
273
274
  msgid "Failed to reboot host %s"
274
275
  msgstr "Fehler beim Neustart von Host %s"
275
276
 
276
- #: ../app/controllers/discovered_hosts_controller.rb:118
277
+ #: ../app/controllers/discovered_hosts_controller.rb:115
277
278
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
278
279
  msgstr "Fehler beim Neustart von Host %{hostname} mit Fehlermeldung %{error_message}"
279
280
 
280
- #: ../app/controllers/discovered_hosts_controller.rb:132
281
+ #: ../app/controllers/discovered_hosts_controller.rb:129
281
282
  msgid "Failed to reboot hosts with error %s"
282
283
  msgstr "Neustart von Hosts fehlgeschlagen mit Fehler %s"
283
284
 
284
- #: ../app/controllers/discovered_hosts_controller.rb:150
285
+ #: ../app/controllers/discovered_hosts_controller.rb:147
285
286
  msgid "Destroyed selected hosts"
286
287
  msgstr "Ausgewählte Hosts gelöscht"
287
288
 
288
- #: ../app/controllers/discovered_hosts_controller.rb:152
289
+ #: ../app/controllers/discovered_hosts_controller.rb:149
289
290
  msgid "The following hosts were not deleted: %s"
290
291
  msgstr "Die folgenden Hosts wurden nicht gelöscht: %s"
291
292
 
292
- #: ../app/controllers/discovered_hosts_controller.rb:164
293
+ #: ../app/controllers/discovered_hosts_controller.rb:161
293
294
  msgid "Failed to auto provision host %s: %s"
294
295
  msgstr "Fehler bei automatischer Bereitstellung von Host %s: %s"
295
296
 
296
- #: ../app/controllers/discovered_hosts_controller.rb:192
297
+ #: ../app/controllers/discovered_hosts_controller.rb:189
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:226
301
- msgid "Highlights"
302
- msgstr "Hervorhebungen"
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:270
302
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
303
+ msgstr ""
323
304
 
324
- #: ../app/controllers/discovered_hosts_controller.rb:226
325
- msgid "Miscellaneous"
326
- msgstr "Erweitert"
305
+ #: ../app/controllers/discovered_hosts_controller.rb:275
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:304
309
+ #: ../app/controllers/discovered_hosts_controller.rb:289
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:308
313
+ #: ../app/controllers/discovered_hosts_controller.rb:293
333
314
  msgid "No hosts selected"
334
315
  msgstr "Keine Hosts ausgewählt"
335
316
 
336
- #: ../app/controllers/discovered_hosts_controller.rb:314
317
+ #: ../app/controllers/discovered_hosts_controller.rb:299
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:68
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:68
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
- #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
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"
355
332
 
356
- #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
333
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
357
334
  msgid "Refresh facts"
358
335
  msgstr "Fakten aktualisieren"
359
336
 
360
- #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
337
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
361
338
  msgid "Reboot"
362
339
  msgstr "Neustart"
363
340
 
@@ -369,7 +346,7 @@ msgstr "Zurück"
369
346
  msgid "Select Action"
370
347
  msgstr "Aktion auswählen"
371
348
 
372
- #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
349
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
373
350
  msgid "Delete %s?"
374
351
  msgstr "%s löschen?"
375
352
 
@@ -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 ""
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:52
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:56
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] ""
@@ -733,6 +714,34 @@ msgstr ""
733
714
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
734
715
  msgstr ""
735
716
 
717
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
718
+ msgid "Highlights"
719
+ msgstr "Hervorhebungen"
720
+
721
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
722
+ msgid "Storage"
723
+ msgstr "Speicher"
724
+
725
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
726
+ msgid "Hardware"
727
+ msgstr "Hardware"
728
+
729
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
730
+ msgid "Network"
731
+ msgstr "Netzwerk"
732
+
733
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
734
+ msgid "Software"
735
+ msgstr "Software"
736
+
737
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
738
+ msgid "IPMI"
739
+ msgstr "IPMI"
740
+
741
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
742
+ msgid "Miscellaneous"
743
+ msgstr "Erweitert"
744
+
736
745
  #: ../app/services/foreman_discovery/host_converter.rb:47
737
746
  msgid "IPAM must be configured for subnet '%s'"
738
747
  msgstr ""
@@ -745,6 +754,10 @@ msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
745
754
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
746
755
  msgstr "Image API Verarbeitungsfehler: %{msg} (HTTP/%{code}, Text: %{body})"
747
756
 
757
+ #: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
758
+ msgid "Host %s has been dicovered"
759
+ msgstr ""
760
+
748
761
  #: ../app/views/dashboard/_discovery_widget.html.erb:5
749
762
  msgid "Discovered Host"
750
763
  msgid_plural "Discovered Hosts"
@@ -759,15 +772,15 @@ msgstr "Keine entdeckten Hosts verfügbar"
759
772
  msgid "Host"
760
773
  msgstr "Host"
761
774
 
762
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
775
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
763
776
  msgid "Model"
764
777
  msgstr "Modell"
765
778
 
766
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
779
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
767
780
  msgid "CPUs"
768
781
  msgstr "Anzahl der CPUs:"
769
782
 
770
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
783
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
771
784
  msgid "Memory"
772
785
  msgstr "Speicher"
773
786
 
@@ -779,59 +792,59 @@ msgstr "Host anpassen"
779
792
  msgid "Create Host"
780
793
  msgstr "Host erstellen"
781
794
 
782
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:4
795
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
783
796
  msgid "Select all items in this page"
784
797
  msgstr "Alle Elemente auf dieser Seite auswählen"
785
798
 
786
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:4
799
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
787
800
  msgid "items selected. Uncheck to Clear"
788
801
  msgstr "Elemente ausgewählt. Zum Leeren abwählen"
789
802
 
790
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
803
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
791
804
  msgid "Name"
792
805
  msgstr "Name"
793
806
 
794
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
807
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
795
808
  msgid "IP Address"
796
809
  msgstr "IP-Adresse"
797
810
 
798
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
811
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
799
812
  msgid "Disk Count"
800
813
  msgstr "Festplattenanzahl"
801
814
 
802
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
815
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
803
816
  msgid "Disks Size"
804
817
  msgstr "Festplattengröße"
805
818
 
806
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
819
+ #: ../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
820
  msgid "Location"
808
821
  msgstr "Standort"
809
822
 
810
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
823
+ #: ../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
824
  msgid "Organization"
812
825
  msgstr "Organisation"
813
826
 
814
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
827
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
815
828
  msgid "Subnet"
816
829
  msgstr "Subnetz"
817
830
 
818
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
831
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
819
832
  msgid "Last Facts Upload"
820
833
  msgstr "Letzter Fakten-Upload"
821
834
 
822
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
835
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
823
836
  msgid "Actions"
824
837
  msgstr "Aktionen"
825
838
 
826
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:51
839
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
827
840
  msgid "Please Confirm"
828
841
  msgstr "Bitte bestätigen"
829
842
 
830
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:57
843
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
831
844
  msgid "Cancel"
832
845
  msgstr "Abbrechen"
833
846
 
834
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:58
847
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
835
848
  msgid "Submit"
836
849
  msgstr "Absenden"
837
850
 
@@ -967,6 +980,10 @@ msgstr ""
967
980
  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
981
  msgstr ""
969
982
 
983
+ #: ../app/views/discovery_rules/clone.erb:1
984
+ msgid "Clone %s"
985
+ msgstr ""
986
+
970
987
  #: ../app/views/discovery_rules/edit.html.erb:1
971
988
  msgid "Edit %s"
972
989
  msgstr "%s bearbeiten"
@@ -975,7 +992,7 @@ msgstr "%s bearbeiten"
975
992
  msgid "Discovery Rules"
976
993
  msgstr "Entdeckungsregeln"
977
994
 
978
- #: ../app/views/discovery_rules/index.html.erb:2
995
+ #: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
979
996
  msgid "Create Rule"
980
997
  msgstr "Regel erstellen"
981
998
 
@@ -999,7 +1016,7 @@ msgstr "Hostgruppe"
999
1016
  msgid "Hosts/Limit"
1000
1017
  msgstr "Hosts/Limit"
1001
1018
 
1002
- #: ../app/views/discovery_rules/index.html.erb:11
1019
+ #: ../app/views/discovery_rules/index.html.erb:13
1003
1020
  msgid "DiscoveryRule|Enabled"
1004
1021
  msgstr "Aktiviert"
1005
1022
 
@@ -1007,6 +1024,10 @@ msgstr "Aktiviert"
1007
1024
  msgid "New Discovery Rule"
1008
1025
  msgstr "Neue Entdeckungsregel"
1009
1026
 
1027
+ #: ../app/views/discovery_rules/welcome.html.erb:8
1028
+ msgid "Discovered Rules"
1029
+ msgstr ""
1030
+
1010
1031
  #: ../db/seeds.d/50_discovery_templates.rb:5
1011
1032
  msgid "Command line options for kexec during PXE-less provisioning."
1012
1033
  msgstr "Kommandozeilenoptionen für kexec während PXE-loser Bereitstellung"
@@ -1016,8 +1037,8 @@ msgid "A summary of discovered hosts"
1016
1037
  msgstr "Eine Zusammenfassung der entdeckten Hosts"
1017
1038
 
1018
1039
  #: ../db/seeds.d/80_discovery_ui_notification.rb:4
1019
- msgid "Hosts"
1020
- msgstr "Hosts"
1040
+ msgid "New hosts"
1041
+ msgstr ""
1021
1042
 
1022
1043
  #: ../db/seeds.d/80_discovery_ui_notification.rb:6
1023
1044
  msgid "One or more hosts have been discovered"
@@ -1027,39 +1048,54 @@ msgstr "Einer oder mehrere Hosts wurden entdeckt"
1027
1048
  msgid "Details"
1028
1049
  msgstr "Details"
1029
1050
 
1030
- #: ../lib/foreman_discovery/engine.rb:180
1051
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:18
1052
+ msgid "Hosts"
1053
+ msgstr "Hosts"
1054
+
1055
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:20
1056
+ msgid "Error message goes here"
1057
+ msgstr ""
1058
+
1059
+ #: ../lib/foreman_discovery/engine.rb:176
1031
1060
  msgid "Discovery Kexec template"
1032
1061
  msgstr ""
1033
1062
 
1034
- #: ../lib/foreman_discovery/engine.rb:189
1063
+ #: ../lib/foreman_discovery/engine.rb:185
1035
1064
  msgid "Discovery Proxy"
1036
1065
  msgstr "Discovery-Proxy"
1037
1066
 
1038
- #: ../lib/foreman_discovery/engine.rb:190
1067
+ #: ../lib/foreman_discovery/engine.rb:186
1039
1068
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1040
1069
  msgstr ""
1041
1070
 
1042
- #: ../lib/foreman_discovery/engine.rb:191
1071
+ #: ../lib/foreman_discovery/engine.rb:187
1043
1072
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1044
1073
  msgstr ""
1045
1074
 
1075
+ #: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
1076
+ msgid "For more information please see "
1077
+ msgstr ""
1078
+
1079
+ #: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
1080
+ msgid "documentation"
1081
+ msgstr "Dokumentation"
1082
+
1046
1083
  #: action_names.rb:2
1047
1084
  msgid "Remote action:"
1048
- msgstr ""
1085
+ msgstr "Entfernte Aktion:"
1049
1086
 
1050
1087
  #: action_names.rb:3
1051
1088
  msgid "Import Puppet classes"
1052
- msgstr ""
1089
+ msgstr "Puppet-Klassen importieren"
1053
1090
 
1054
1091
  #: action_names.rb:4
1055
- msgid "Action with sub plans"
1056
- msgstr ""
1092
+ msgid "Import facts"
1093
+ msgstr "Fakten importieren"
1057
1094
 
1058
1095
  #: action_names.rb:5
1059
- msgid "Import facts"
1060
- msgstr ""
1096
+ msgid "Action with sub plans"
1097
+ msgstr "Aktion mit Unterplänen"
1061
1098
 
1062
- #~ msgid "Learn more about this in the documentation."
1063
- #~ msgstr "Mehr dazu in der Dokumentation."
1064
- #~ msgid "No discovered hosts found in this context."
1065
- #~ msgstr "Keine entdeckten Hosts gefunden in diesem Kontext."
1099
+ #: ../app/helpers/discovered_hosts_helper.rb:10
1100
+ #~ msgid "%s ago"
1101
+ #~ msgstr "vor %s"