foreman_discovery 16.3.6 → 17.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) 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 +1 -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/discovery_rules/clone.erb +3 -0
  13. data/app/views/discovery_rules/index.html.erb +4 -0
  14. data/app/views/discovery_rules/welcome.html.erb +15 -0
  15. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  16. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  17. data/config/routes.rb +2 -0
  18. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  19. data/lib/foreman_discovery/engine.rb +3 -7
  20. data/lib/foreman_discovery/version.rb +1 -1
  21. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  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.po +45 -18
  25. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/en/foreman_discovery.po +31 -4
  27. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  28. data/locale/en_GB/foreman_discovery.po +36 -9
  29. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/es/foreman_discovery.po +70 -41
  31. data/locale/foreman_discovery.pot +142 -97
  32. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/fr/foreman_discovery.po +76 -49
  34. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/gl/foreman_discovery.po +32 -5
  36. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/it/foreman_discovery.po +44 -17
  38. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/ja/foreman_discovery.po +79 -54
  40. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/ko/foreman_discovery.po +43 -16
  42. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/pt_BR/foreman_discovery.po +69 -39
  44. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/ru/foreman_discovery.po +43 -16
  46. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/sv_SE/foreman_discovery.po +34 -7
  48. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/zh_CN/foreman_discovery.po +114 -90
  50. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/zh_TW/foreman_discovery.po +43 -16
  52. data/package.json +6 -6
  53. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  54. data/test/functional/discovery_rules_controller_test.rb +6 -1
  55. data/test/integration/discovered_hosts_test.rb +53 -5
  56. data/test/test_helper_discovery.rb +5 -0
  57. data/test/unit/discovery_rule_test.rb +24 -2
  58. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  59. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  60. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  61. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  62. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  63. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  64. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  65. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  66. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  67. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  68. data/webpack/index.js +9 -8
  69. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  70. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  71. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  72. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  73. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  74. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  75. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  76. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  77. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  78. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  79. data/webpack/src/reducers.js +0 -2
  80. metadata +25 -3
@@ -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,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.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
 
@@ -10,9 +10,9 @@
10
10
  # Lukáš Zapletal, 2015
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 16.2.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
15
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
16
16
  "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
18
18
  "man/language/en_GB/)\n"
@@ -25,9 +25,6 @@ msgstr ""
25
25
  msgid "%s - The following hosts are about to be changed"
26
26
  msgstr "%s - The following hosts are about to be changed"
27
27
 
28
- msgid "%s ago"
29
- msgstr "%s ago"
30
-
31
28
  msgid "%s discovered hosts were provisioned"
32
29
  msgstr "%s discovered hosts were provisioned"
33
30
 
@@ -38,7 +35,7 @@ msgid "A summary of discovered hosts"
38
35
  msgstr "A summary of discovered hosts"
39
36
 
40
37
  msgid "Action with sub plans"
41
- msgstr ""
38
+ msgstr "Action with sub plans"
42
39
 
43
40
  msgid "Actions"
44
41
  msgstr "Actions"
@@ -85,6 +82,12 @@ msgstr "Clean all facts"
85
82
  msgid "Clean all reported facts during provisioning (except discovery facts)"
86
83
  msgstr "Clean all reported facts during provisioning (except discovery facts)"
87
84
 
85
+ msgid "Clone"
86
+ msgstr ""
87
+
88
+ msgid "Clone %s"
89
+ msgstr ""
90
+
88
91
  msgid "Collapse All"
89
92
  msgstr "Collapse All"
90
93
 
@@ -150,9 +153,15 @@ msgstr[1] ""
150
153
  msgid "Discovered Hosts"
151
154
  msgstr "Discovered Hosts"
152
155
 
156
+ msgid "Discovered Rules"
157
+ msgstr ""
158
+
153
159
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
154
160
  msgstr "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
155
161
 
162
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
163
+ msgstr ""
164
+
156
165
  msgid "Discovered host: %s"
157
166
  msgstr "Discovered host: %s"
158
167
 
@@ -165,6 +174,9 @@ msgstr "Discovered hosts are rebooting now"
165
174
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
166
175
  msgstr "Discovered hosts from Foreman server at %{foreman_url}"
167
176
 
177
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
178
+ msgstr ""
179
+
168
180
  msgid "Discovered hosts summary"
169
181
  msgstr "Discovered hosts summary"
170
182
 
@@ -231,6 +243,9 @@ msgstr "Enable"
231
243
  msgid "Enable rule '%s'?"
232
244
  msgstr "Enable rule '%s'?"
233
245
 
246
+ msgid "Error message goes here"
247
+ msgstr ""
248
+
234
249
  msgid "Error on existing NIC"
235
250
  msgstr "Error on existing NIC"
236
251
 
@@ -285,6 +300,9 @@ msgstr "Failed to refresh facts for %s"
285
300
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
286
301
  msgstr "Failed to refresh facts for %{hostname} with error %{error_message}"
287
302
 
303
+ msgid "For more information please see "
304
+ msgstr ""
305
+
288
306
  msgid "Force DNS"
289
307
  msgstr "Force DNS"
290
308
 
@@ -309,6 +327,9 @@ msgstr "Highlights"
309
327
  msgid "Host"
310
328
  msgstr "Host"
311
329
 
330
+ msgid "Host %s has been dicovered"
331
+ msgstr ""
332
+
312
333
  msgid "Host %{host} was provisioned with rule %{rule}"
313
334
  msgstr "Host %{host} was provisioned with rule %{rule}"
314
335
 
@@ -383,10 +404,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
383
404
  msgstr "Image API returned HTTP/%{code} with '%{body}"
384
405
 
385
406
  msgid "Import Puppet classes"
386
- msgstr ""
407
+ msgstr "Import Puppet classes"
387
408
 
388
409
  msgid "Import facts"
389
- msgstr ""
410
+ msgstr "Import facts"
390
411
 
391
412
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
392
413
  msgstr "In addition to @host attribute function rand for random integers is available. Examples:"
@@ -487,6 +508,9 @@ msgstr "Network facts"
487
508
  msgid "New Discovery Rule"
488
509
  msgstr "New Discovery Rule"
489
510
 
511
+ msgid "New hosts"
512
+ msgstr ""
513
+
490
514
  msgid "New in the last 24 hours"
491
515
  msgstr "New in the last 24 hours"
492
516
 
@@ -605,7 +629,7 @@ msgid "Reloading kernel on %s"
605
629
  msgstr "Reloading kernel on %s"
606
630
 
607
631
  msgid "Remote action:"
608
- msgstr ""
632
+ msgstr "Remote action:"
609
633
 
610
634
  msgid "Reported in the last 7 days"
611
635
  msgstr "Reported in the last 7 days"
@@ -733,6 +757,9 @@ msgstr "can't contain white spaces."
733
757
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
734
758
  msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
735
759
 
760
+ msgid "documentation"
761
+ msgstr ""
762
+
736
763
  msgid "enables to limit maximum amount of provisioned hosts per rule"
737
764
  msgstr "enables to limit maximum amount of provisioned hosts per rule"
738
765