foreman_discovery 16.3.6 → 17.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) 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 +3 -4
  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 -1
  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/config/routes.rb +2 -0
  17. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  18. data/lib/foreman_discovery/engine.rb +3 -7
  19. data/lib/foreman_discovery/version.rb +1 -1
  20. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  21. data/locale/ca/foreman_discovery.edit.po +44 -40
  22. data/locale/ca/foreman_discovery.po +36 -9
  23. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/de/foreman_discovery.edit.po +42 -38
  25. data/locale/de/foreman_discovery.po +45 -18
  26. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/en/foreman_discovery.edit.po +37 -29
  28. data/locale/en/foreman_discovery.po +31 -4
  29. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/en_GB/foreman_discovery.edit.po +39 -35
  31. data/locale/en_GB/foreman_discovery.po +36 -9
  32. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/es/foreman_discovery.edit.po +42 -38
  34. data/locale/es/foreman_discovery.po +70 -41
  35. data/locale/foreman_discovery.pot +142 -97
  36. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/fr/foreman_discovery.edit.po +88 -84
  38. data/locale/fr/foreman_discovery.po +76 -49
  39. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/gl/foreman_discovery.edit.po +42 -38
  41. data/locale/gl/foreman_discovery.po +32 -5
  42. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/it/foreman_discovery.edit.po +42 -38
  44. data/locale/it/foreman_discovery.po +44 -17
  45. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/ja/foreman_discovery.edit.po +74 -70
  47. data/locale/ja/foreman_discovery.po +79 -54
  48. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/ko/foreman_discovery.edit.po +42 -38
  50. data/locale/ko/foreman_discovery.po +43 -16
  51. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/pt_BR/foreman_discovery.edit.po +42 -38
  53. data/locale/pt_BR/foreman_discovery.po +69 -39
  54. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ru/foreman_discovery.edit.po +46 -42
  56. data/locale/ru/foreman_discovery.po +43 -16
  57. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/sv_SE/foreman_discovery.edit.po +42 -38
  59. data/locale/sv_SE/foreman_discovery.po +34 -7
  60. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/zh_CN/foreman_discovery.edit.po +90 -86
  62. data/locale/zh_CN/foreman_discovery.po +114 -90
  63. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/zh_TW/foreman_discovery.edit.po +42 -38
  65. data/locale/zh_TW/foreman_discovery.po +43 -16
  66. data/package.json +6 -6
  67. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  68. data/test/functional/discovery_rules_controller_test.rb +6 -1
  69. data/test/integration/discovered_hosts_test.rb +53 -5
  70. data/test/test_helper_discovery.rb +5 -0
  71. data/test/unit/discovery_rule_test.rb +24 -2
  72. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  73. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  74. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  75. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  76. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  77. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  78. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  79. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  82. data/webpack/index.js +9 -8
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  88. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  89. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  93. data/webpack/src/reducers.js +0 -2
  94. metadata +31 -9
@@ -14,10 +14,10 @@
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
+ "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"
@@ -2,7 +2,7 @@
2
2
  # This file is distributed under the same license as the foreman_discovery package.
3
3
  msgid ""
4
4
  msgstr ""
5
- "Project-Id-Version: foreman_discovery 16.3.4\n"
5
+ "Project-Id-Version: foreman_discovery 17.1.0\n"
6
6
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
7
7
  "PO-Revision-Date: 2015-12-27 01:18+0000\n"
8
8
  "Last-Translator: \n"
@@ -112,7 +112,7 @@ msgstr ""
112
112
  msgid "Execute rules against a discovered host"
113
113
  msgstr ""
114
114
 
115
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
115
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
116
116
  msgid "Host %{host} was provisioned with rule %{rule}"
117
117
  msgstr ""
118
118
 
@@ -120,7 +120,7 @@ msgstr ""
120
120
  msgid "Unable to provision %{host}: %{errors}"
121
121
  msgstr ""
122
122
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
124
124
  msgid "No rule found for host %s"
125
125
  msgstr ""
126
126
 
@@ -128,11 +128,11 @@ msgstr ""
128
128
  msgid "Execute rules against all currently discovered hosts"
129
129
  msgstr ""
130
130
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
131
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
132
132
  msgid "Errors during auto provisioning: %s"
133
133
  msgstr ""
134
134
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
135
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
136
136
  msgid "No discovered hosts to provision"
137
137
  msgstr ""
138
138
 
@@ -152,7 +152,7 @@ msgstr ""
152
152
  msgid "Rebooting all discovered hosts"
153
153
  msgstr ""
154
154
 
155
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
155
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
156
156
  msgid "Discovered hosts are rebooting now"
157
157
  msgstr ""
158
158
 
@@ -232,75 +232,75 @@ msgstr ""
232
232
  msgid "No discovered hosts to reboot"
233
233
  msgstr ""
234
234
 
235
- #: ../app/controllers/discovered_hosts_controller.rb:60
235
+ #: ../app/controllers/discovered_hosts_controller.rb:63
236
236
  msgid "Successfully provisioned %s"
237
237
  msgstr ""
238
238
 
239
- #: ../app/controllers/discovered_hosts_controller.rb:94
239
+ #: ../app/controllers/discovered_hosts_controller.rb:97
240
240
  msgid "Facts refreshed for %s"
241
241
  msgstr ""
242
242
 
243
- #: ../app/controllers/discovered_hosts_controller.rb:96
243
+ #: ../app/controllers/discovered_hosts_controller.rb:99
244
244
  msgid "Failed to refresh facts for %s"
245
245
  msgstr ""
246
246
 
247
- #: ../app/controllers/discovered_hosts_controller.rb:99
247
+ #: ../app/controllers/discovered_hosts_controller.rb:102
248
248
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
249
249
  msgstr ""
250
250
 
251
- #: ../app/controllers/discovered_hosts_controller.rb:106
251
+ #: ../app/controllers/discovered_hosts_controller.rb:109
252
252
  msgid "Host of type %s can not be rebooted"
253
253
  msgstr ""
254
254
 
255
- #: ../app/controllers/discovered_hosts_controller.rb:110
255
+ #: ../app/controllers/discovered_hosts_controller.rb:113
256
256
  msgid "Rebooting host %s"
257
257
  msgstr ""
258
258
 
259
- #: ../app/controllers/discovered_hosts_controller.rb:112
259
+ #: ../app/controllers/discovered_hosts_controller.rb:115
260
260
  msgid "Failed to reboot host %s"
261
261
  msgstr ""
262
262
 
263
- #: ../app/controllers/discovered_hosts_controller.rb:115
263
+ #: ../app/controllers/discovered_hosts_controller.rb:118
264
264
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
265
265
  msgstr ""
266
266
 
267
- #: ../app/controllers/discovered_hosts_controller.rb:129
267
+ #: ../app/controllers/discovered_hosts_controller.rb:132
268
268
  msgid "Failed to reboot hosts with error %s"
269
269
  msgstr ""
270
270
 
271
- #: ../app/controllers/discovered_hosts_controller.rb:147
271
+ #: ../app/controllers/discovered_hosts_controller.rb:150
272
272
  msgid "Destroyed selected hosts"
273
273
  msgstr ""
274
274
 
275
- #: ../app/controllers/discovered_hosts_controller.rb:149
275
+ #: ../app/controllers/discovered_hosts_controller.rb:152
276
276
  msgid "The following hosts were not deleted: %s"
277
277
  msgstr ""
278
278
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:161
279
+ #: ../app/controllers/discovered_hosts_controller.rb:164
280
280
  msgid "Failed to auto provision host %s: %s"
281
281
  msgstr ""
282
282
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:189
283
+ #: ../app/controllers/discovered_hosts_controller.rb:192
284
284
  msgid "Discovered hosts are provisioning now"
285
285
  msgstr ""
286
286
 
287
- #: ../app/controllers/discovered_hosts_controller.rb:270
287
+ #: ../app/controllers/discovered_hosts_controller.rb:277
288
288
  msgid "Discovered host reported from unknown subnet, communication will not be proxied."
289
289
  msgstr ""
290
290
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:275
291
+ #: ../app/controllers/discovered_hosts_controller.rb:282
292
292
  msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
293
293
  msgstr ""
294
294
 
295
- #: ../app/controllers/discovered_hosts_controller.rb:289
295
+ #: ../app/controllers/discovered_hosts_controller.rb:296
296
296
  msgid "No hosts were found with that id or name"
297
297
  msgstr ""
298
298
 
299
- #: ../app/controllers/discovered_hosts_controller.rb:293
299
+ #: ../app/controllers/discovered_hosts_controller.rb:300
300
300
  msgid "No hosts selected"
301
301
  msgstr ""
302
302
 
303
- #: ../app/controllers/discovered_hosts_controller.rb:299
303
+ #: ../app/controllers/discovered_hosts_controller.rb:306
304
304
  msgid "Something went wrong while selecting hosts - %s"
305
305
  msgstr ""
306
306
 
@@ -464,23 +464,23 @@ msgstr ""
464
464
  msgid "Facts could not be imported"
465
465
  msgstr ""
466
466
 
467
- #: ../app/models/host/discovered.rb:146
467
+ #: ../app/models/host/discovered.rb:155
468
468
  msgid "Could not get facts from proxy %{url}: %{error}"
469
469
  msgstr ""
470
470
 
471
- #: ../app/models/host/discovered.rb:160
471
+ #: ../app/models/host/discovered.rb:173
472
472
  msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
473
473
  msgstr ""
474
474
 
475
- #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
475
+ #: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
476
476
  msgid "Unable to perform %{action} on %{ips}"
477
477
  msgstr ""
478
478
 
479
- #: ../app/models/host/discovered.rb:179
479
+ #: ../app/models/host/discovered.rb:196
480
480
  msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
481
481
  msgstr ""
482
482
 
483
- #: ../app/models/host/discovered.rb:203
483
+ #: ../app/models/host/discovered.rb:220
484
484
  msgid "Invalid hostname: Could not normalize the hostname"
485
485
  msgstr ""
486
486
 
@@ -688,6 +688,14 @@ msgstr ""
688
688
  msgid "Type of name generator"
689
689
  msgstr ""
690
690
 
691
+ #: ../app/models/setting/discovered.rb:40
692
+ msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
693
+ msgstr ""
694
+
695
+ #: ../app/models/setting/discovered.rb:40
696
+ msgid "Prefer IPv6"
697
+ msgstr ""
698
+
691
699
  #: ../app/services/foreman_discovery/fact_parser.rb:4
692
700
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
693
701
  msgstr ""
@@ -2,7 +2,7 @@
2
2
  # This file is distributed under the same license as the foreman_discovery package.
3
3
  msgid ""
4
4
  msgstr ""
5
- "Project-Id-Version: foreman_discovery 16.2.0\n"
5
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
6
6
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
7
7
  "PO-Revision-Date: 2015-12-27 01:18+0000\n"
8
8
  "Last-Translator: \n"
@@ -15,9 +15,6 @@ msgstr ""
15
15
  msgid "%s - The following hosts are about to be changed"
16
16
  msgstr ""
17
17
 
18
- msgid "%s ago"
19
- msgstr ""
20
-
21
18
  msgid "%s discovered hosts were provisioned"
22
19
  msgstr ""
23
20
 
@@ -75,6 +72,12 @@ msgstr ""
75
72
  msgid "Clean all reported facts during provisioning (except discovery facts)"
76
73
  msgstr ""
77
74
 
75
+ msgid "Clone"
76
+ msgstr ""
77
+
78
+ msgid "Clone %s"
79
+ msgstr ""
80
+
78
81
  msgid "Collapse All"
79
82
  msgstr ""
80
83
 
@@ -140,9 +143,15 @@ msgstr[1] ""
140
143
  msgid "Discovered Hosts"
141
144
  msgstr ""
142
145
 
146
+ msgid "Discovered Rules"
147
+ msgstr ""
148
+
143
149
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
144
150
  msgstr ""
145
151
 
152
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
153
+ msgstr ""
154
+
146
155
  msgid "Discovered host: %s"
147
156
  msgstr ""
148
157
 
@@ -155,6 +164,9 @@ msgstr ""
155
164
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
156
165
  msgstr ""
157
166
 
167
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
168
+ msgstr ""
169
+
158
170
  msgid "Discovered hosts summary"
159
171
  msgstr ""
160
172
 
@@ -221,6 +233,9 @@ msgstr ""
221
233
  msgid "Enable rule '%s'?"
222
234
  msgstr ""
223
235
 
236
+ msgid "Error message goes here"
237
+ msgstr ""
238
+
224
239
  msgid "Error on existing NIC"
225
240
  msgstr ""
226
241
 
@@ -275,6 +290,9 @@ msgstr ""
275
290
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
276
291
  msgstr ""
277
292
 
293
+ msgid "For more information please see "
294
+ msgstr ""
295
+
278
296
  msgid "Force DNS"
279
297
  msgstr ""
280
298
 
@@ -299,6 +317,9 @@ msgstr ""
299
317
  msgid "Host"
300
318
  msgstr ""
301
319
 
320
+ msgid "Host %s has been dicovered"
321
+ msgstr ""
322
+
302
323
  msgid "Host %{host} was provisioned with rule %{rule}"
303
324
  msgstr ""
304
325
 
@@ -477,6 +498,9 @@ msgstr ""
477
498
  msgid "New Discovery Rule"
478
499
  msgstr ""
479
500
 
501
+ msgid "New hosts"
502
+ msgstr ""
503
+
480
504
  msgid "New in the last 24 hours"
481
505
  msgstr ""
482
506
 
@@ -723,6 +747,9 @@ msgstr ""
723
747
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
724
748
  msgstr ""
725
749
 
750
+ msgid "documentation"
751
+ msgstr ""
752
+
726
753
  msgid "enables to limit maximum amount of provisioned hosts per rule"
727
754
  msgstr ""
728
755