foreman_discovery 16.0.0 → 16.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +24 -11
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +5 -3
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +52 -34
  8. data/app/models/host/managed_extensions.rb +2 -2
  9. data/app/models/setting/discovered.rb +3 -1
  10. data/app/services/foreman_discovery/host_converter.rb +15 -7
  11. data/app/services/foreman_discovery/host_fact_importer.rb +10 -0
  12. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +2 -0
  13. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  14. data/app/views/api/v2/discovery_rules/create.json.rabl +3 -0
  15. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +0 -2
  16. data/app/views/discovered_hosts/welcome.html.erb +15 -9
  17. data/app/views/discovery_rules/index.html.erb +1 -1
  18. data/app/views/foreman_discovery/debian_kexec.erb +3 -2
  19. data/app/views/foreman_discovery/redhat_kexec.erb +2 -1
  20. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  21. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  22. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  23. data/extra/discover-host +14 -8
  24. data/lib/foreman_discovery/engine.rb +5 -4
  25. data/lib/foreman_discovery/version.rb +1 -1
  26. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/ca/foreman_discovery.edit.po +195 -252
  28. data/locale/ca/foreman_discovery.po +40 -17
  29. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/de/foreman_discovery.edit.po +201 -257
  31. data/locale/de/foreman_discovery.po +46 -23
  32. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/en/foreman_discovery.edit.po +141 -111
  34. data/locale/en/foreman_discovery.po +36 -13
  35. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/en_GB/foreman_discovery.edit.po +205 -254
  37. data/locale/en_GB/foreman_discovery.po +42 -19
  38. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/es/foreman_discovery.edit.po +209 -258
  40. data/locale/es/foreman_discovery.po +46 -23
  41. data/locale/foreman_discovery.pot +150 -117
  42. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/fr/foreman_discovery.edit.po +203 -255
  44. data/locale/fr/foreman_discovery.po +44 -21
  45. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/gl/foreman_discovery.edit.po +190 -250
  47. data/locale/gl/foreman_discovery.po +38 -15
  48. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/it/foreman_discovery.edit.po +193 -253
  50. data/locale/it/foreman_discovery.po +41 -18
  51. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/ja/foreman_discovery.edit.po +207 -256
  53. data/locale/ja/foreman_discovery.po +44 -21
  54. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ko/foreman_discovery.edit.po +196 -255
  56. data/locale/ko/foreman_discovery.po +44 -21
  57. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/pt_BR/foreman_discovery.edit.po +205 -256
  59. data/locale/pt_BR/foreman_discovery.po +44 -21
  60. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/ru/foreman_discovery.edit.po +199 -257
  62. data/locale/ru/foreman_discovery.po +44 -21
  63. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/sv_SE/foreman_discovery.edit.po +190 -250
  65. data/locale/sv_SE/foreman_discovery.po +38 -15
  66. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  67. data/locale/zh_CN/foreman_discovery.edit.po +207 -256
  68. data/locale/zh_CN/foreman_discovery.po +44 -21
  69. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  70. data/locale/zh_TW/foreman_discovery.edit.po +196 -254
  71. data/locale/zh_TW/foreman_discovery.po +42 -19
  72. data/package.json +39 -0
  73. data/test/facts/only-ipv6.json +205 -0
  74. data/test/facts/skylake-ipv6.json +223 -0
  75. data/test/functional/api/v2/settings_controller_test.rb +2 -2
  76. data/test/functional/discovered_hosts_controller_test.rb +16 -7
  77. data/test/functional/discovery_rules_controller_test.rb +1 -1
  78. data/test/unit/discovered_extensions_test.rb +6 -1
  79. data/test/unit/host_discovered_test.rb +0 -16
  80. data/test/unit/managed_extensions_test.rb +1 -0
  81. data/webpack/index.js +18 -0
  82. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +28 -0
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -0
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +6 -0
  85. data/webpack/src/reducers.js +7 -0
  86. metadata +42 -28
@@ -5,10 +5,10 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 15.1.0\n"
8
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
11
- "Last-Translator: Lukáš Zapletal\n"
10
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
11
+ "Last-Translator: Transifex Bot <>\n"
12
12
  "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
13
13
  ")\n"
14
14
  "MIME-Version: 1.0\n"
@@ -137,6 +137,11 @@ msgstr ""
137
137
  msgid "Disable rule '%s'?"
138
138
  msgstr ""
139
139
 
140
+ msgid "Discovered Host"
141
+ msgid_plural "Discovered Hosts"
142
+ msgstr[0] ""
143
+ msgstr[1] ""
144
+
140
145
  msgid "Discovered Hosts"
141
146
  msgstr ""
142
147
 
@@ -318,6 +323,12 @@ msgstr[1] ""
318
323
  msgid "Host of type %s can not be rebooted"
319
324
  msgstr ""
320
325
 
326
+ msgid "Host's owner type"
327
+ msgstr ""
328
+
329
+ msgid "Host's parameters (array or indexed hash)"
330
+ msgstr ""
331
+
321
332
  msgid "Hostname facts"
322
333
  msgstr ""
323
334
 
@@ -405,9 +416,6 @@ msgstr ""
405
416
  msgid "Last Facts Upload"
406
417
  msgstr ""
407
418
 
408
- msgid "Learn more about this in the documentation."
409
- msgstr ""
410
-
411
419
  msgid "List all discovered hosts"
412
420
  msgstr ""
413
421
 
@@ -462,6 +470,9 @@ msgstr "N/A"
462
470
  msgid "Name"
463
471
  msgstr "Nome"
464
472
 
473
+ msgid "Name of the parameter"
474
+ msgstr ""
475
+
465
476
  msgid "Network"
466
477
  msgstr ""
467
478
 
@@ -480,9 +491,6 @@ msgstr ""
480
491
  msgid "No discovered hosts for the selected period"
481
492
  msgstr ""
482
493
 
483
- msgid "No discovered hosts found in this context."
484
- msgstr ""
485
-
486
494
  msgid "No discovered hosts to provision"
487
495
  msgstr ""
488
496
 
@@ -525,6 +533,9 @@ msgstr ""
525
533
  msgid "PXELinux template to be used when pinning a host to discovery"
526
534
  msgstr ""
527
535
 
536
+ msgid "Parameter value"
537
+ msgstr ""
538
+
528
539
  msgid "Please Confirm"
529
540
  msgstr "Confirme, por favor"
530
541
 
@@ -672,15 +683,15 @@ msgstr "Os seguintes equipos non foron eliminados: %s"
672
683
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
673
684
  msgstr "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos e informes."
674
685
 
675
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
676
- msgstr ""
677
-
678
686
  msgid "Type"
679
687
  msgstr ""
680
688
 
681
689
  msgid "Type of name generator"
682
690
  msgstr ""
683
691
 
692
+ msgid "Type of value"
693
+ msgstr ""
694
+
684
695
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
685
696
  msgstr ""
686
697
 
@@ -690,13 +701,16 @@ msgstr ""
690
701
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
691
702
  msgstr ""
692
703
 
693
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
704
+ msgid "Unable to perform %{action} on %{ips}"
694
705
  msgstr ""
695
706
 
696
- msgid "Unable to provision %{host}: %{errors}"
707
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
708
+ msgstr ""
709
+
710
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
697
711
  msgstr ""
698
712
 
699
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
713
+ msgid "Unable to provision %{host}: %{errors}"
700
714
  msgstr ""
701
715
 
702
716
  msgid "Update a rule"
@@ -762,6 +776,15 @@ msgstr ""
762
776
  msgid "represents rule name shown to the users"
763
777
  msgstr ""
764
778
 
779
+ msgid "required if host is managed and custom partition has not been defined"
780
+ msgstr ""
781
+
782
+ msgid "required if host is managed and value is not inherited from host group"
783
+ msgstr ""
784
+
785
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
786
+ msgstr ""
787
+
765
788
  msgid "required if value is not inherited from host group or default password in settings"
766
789
  msgstr ""
767
790
 
@@ -1,18 +1,18 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  # caifti <caifti@gmail.com>, 2014
7
7
  # caifti <caifti@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 15.1.0\n"
10
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2019-10-22 11:55+0200\n"
13
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
14
- "Last-Translator: Andrea Perotti\n"
15
- "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)\n"
12
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
13
+ "Last-Translator: Transifex Bot <>\n"
14
+ "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
15
+ "\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -23,23 +23,19 @@ msgstr ""
23
23
  msgid "List all discovered hosts"
24
24
  msgstr "Elenca tutti gli host rilevati"
25
25
 
26
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
27
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
28
27
  msgid "filter results"
29
28
  msgstr "filtra i risultati"
30
29
 
31
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
32
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
30
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
33
31
  msgid "sort results"
34
32
  msgstr "ordina risultati"
35
33
 
36
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
37
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
34
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
38
35
  msgid "paginate results"
39
36
  msgstr "paginazione risultati"
40
37
 
41
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
42
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
38
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
43
39
  msgid "number of entries per request"
44
40
  msgstr "numero di voci per richiesta"
45
41
 
@@ -47,8 +43,7 @@ msgstr "numero di voci per richiesta"
47
43
  msgid "Show a discovered host"
48
44
  msgstr "Visualizza un host rilevato"
49
45
 
50
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
51
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
46
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
52
47
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
53
48
  msgstr ""
54
49
 
@@ -60,6 +55,10 @@ msgstr ""
60
55
  msgid "Provision a discovered host"
61
56
  msgstr "Esegui il provisioning di un host rilevato"
62
57
 
58
+ #: ../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
59
+ msgid "required if host is managed and value is not inherited from host group"
60
+ msgstr ""
61
+
63
62
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
64
63
  msgid "not required if using a subnet with DHCP proxy"
65
64
  msgstr "non necessario se si utilizza una sottorete con DHCP proxy"
@@ -68,82 +67,99 @@ msgstr "non necessario se si utilizza una sottorete con DHCP proxy"
68
67
  msgid "not required if it's a virtual machine"
69
68
  msgstr "non necessario se è una macchina virtuale"
70
69
 
71
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
72
- msgid ""
73
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
70
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
71
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
72
+ msgstr ""
73
+
74
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
75
+ msgid "required if host is managed and custom partition has not been defined"
76
+ msgstr ""
77
+
78
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
79
+ msgid "Host's owner type"
80
+ msgstr ""
81
+
82
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
83
+ msgid "Host's parameters (array or indexed hash)"
84
+ msgstr ""
85
+
86
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
87
+ msgid "Name of the parameter"
88
+ msgstr ""
89
+
90
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
91
+ msgid "Parameter value"
92
+ msgstr ""
93
+
94
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
95
+ msgid "Type of value"
96
+ msgstr ""
97
+
98
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
99
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
74
100
  msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
75
101
 
76
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
77
- msgid ""
78
- "required if value is not inherited from host group or default password in "
79
- "settings"
102
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
103
+ msgid "required if value is not inherited from host group or default password in settings"
80
104
  msgstr "necessario se il valore non è ereditato da un gruppo di host o password predefinita nelle impostazione"
81
105
 
82
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
106
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
83
107
  msgid "Delete a discovered host"
84
108
  msgstr "Rimuovi un host rilevato"
85
109
 
86
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
110
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
87
111
  msgid "Upload facts for a host, creating the host if required"
88
112
  msgstr "Carica gli eventi per un host creando, se necessario, un host"
89
113
 
90
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
91
- msgid ""
92
- "hash containing facts for the host with minimum set of facts: "
93
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
94
- "eth0 (example in case primary interface is named eth0)"
114
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
115
+ 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)"
95
116
  msgstr ""
96
117
 
97
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
118
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
98
119
  msgid "Execute rules against a discovered host"
99
120
  msgstr "Esegui le regole nei confronti di un host rilevato"
100
121
 
101
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
102
- #: ../app/controllers/discovered_hosts_controller.rb:160
122
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
103
123
  msgid "Host %{host} was provisioned with rule %{rule}"
104
124
  msgstr "È stato eseguito il provisioning dell'host %{host} con la regola %{rule}"
105
125
 
106
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
126
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
107
127
  msgid "Unable to provision %{host}: %{errors}"
108
128
  msgstr ""
109
129
 
110
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
111
- #: ../app/controllers/discovered_hosts_controller.rb:167
130
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
112
131
  msgid "No rule found for host %s"
113
132
  msgstr "Nessuna regola trovata per l'host %s"
114
133
 
115
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
134
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
116
135
  msgid "Execute rules against all currently discovered hosts"
117
136
  msgstr "Esegui le regole nei confronti degli host attualemente rilevati"
118
137
 
119
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
120
- #: ../app/controllers/discovered_hosts_controller.rb:173
138
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
121
139
  msgid "Errors during auto provisioning: %s"
122
140
  msgstr "Errore durante auto provisioning: %s"
123
141
 
124
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
125
- #: ../app/controllers/discovered_hosts_controller.rb:176
142
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
126
143
  msgid "No discovered hosts to provision"
127
144
  msgstr "Nessun host rilevato per il provisioning"
128
145
 
129
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
146
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
130
147
  msgid "%s discovered hosts were provisioned"
131
148
  msgstr ""
132
149
 
133
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
150
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
134
151
  msgid "Refreshing the facts of a discovered host"
135
152
  msgstr "Aggiornamento eventi di un host rilevato"
136
153
 
137
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
154
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
138
155
  msgid "Rebooting a discovered host"
139
156
  msgstr "Riavvio di un host rilevato"
140
157
 
141
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
158
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
142
159
  msgid "Rebooting all discovered hosts"
143
160
  msgstr ""
144
161
 
145
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
146
- #: ../app/controllers/discovered_hosts_controller.rb:129
162
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
147
163
  msgid "Discovered hosts are rebooting now"
148
164
  msgstr ""
149
165
 
@@ -168,8 +184,7 @@ msgid "the hostgroup that is used to auto provision a host"
168
184
  msgstr "gruppo di host usato per l'auto provision di un host"
169
185
 
170
186
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
171
- msgid ""
172
- "defines a pattern to assign human-readable hostnames to the matching hosts"
187
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
173
188
  msgstr "definisce uno schema per assegnare gli hostname leggibili dall'utente agli host corrispondenti"
174
189
 
175
190
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -177,8 +192,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
177
192
  msgstr "permette di limitare la quantità massima di host con provisioning per regola"
178
193
 
179
194
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
180
- msgid ""
181
- "puts the rules in order, low numbers go first. Must be greater then zero"
195
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
182
196
  msgstr "ordina le regole, i numeri più piccoli hanno maggiore priorità. Deve essere maggiore di zero."
183
197
 
184
198
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -277,43 +291,43 @@ msgstr "Impossibile eseguire auto provision dell'host %s: %s"
277
291
  msgid "Discovered hosts are provisioning now"
278
292
  msgstr "Gli host rilevati stanno eseguendo ora il provisioning"
279
293
 
280
- #: ../app/controllers/discovered_hosts_controller.rb:224
294
+ #: ../app/controllers/discovered_hosts_controller.rb:226
281
295
  msgid "Highlights"
282
296
  msgstr ""
283
297
 
284
- #: ../app/controllers/discovered_hosts_controller.rb:224
298
+ #: ../app/controllers/discovered_hosts_controller.rb:226
285
299
  msgid "Storage"
286
300
  msgstr "Storage"
287
301
 
288
- #: ../app/controllers/discovered_hosts_controller.rb:224
302
+ #: ../app/controllers/discovered_hosts_controller.rb:226
289
303
  msgid "Hardware"
290
304
  msgstr "Hardware"
291
305
 
292
- #: ../app/controllers/discovered_hosts_controller.rb:224
306
+ #: ../app/controllers/discovered_hosts_controller.rb:226
293
307
  msgid "Network"
294
308
  msgstr "Rete"
295
309
 
296
- #: ../app/controllers/discovered_hosts_controller.rb:224
310
+ #: ../app/controllers/discovered_hosts_controller.rb:226
297
311
  msgid "Software"
298
312
  msgstr "Software"
299
313
 
300
- #: ../app/controllers/discovered_hosts_controller.rb:224
314
+ #: ../app/controllers/discovered_hosts_controller.rb:226
301
315
  msgid "IPMI"
302
316
  msgstr "IPMI"
303
317
 
304
- #: ../app/controllers/discovered_hosts_controller.rb:224
318
+ #: ../app/controllers/discovered_hosts_controller.rb:226
305
319
  msgid "Miscellaneous"
306
320
  msgstr "Varie"
307
321
 
308
- #: ../app/controllers/discovered_hosts_controller.rb:302
322
+ #: ../app/controllers/discovered_hosts_controller.rb:304
309
323
  msgid "No hosts were found with that id or name"
310
324
  msgstr "Nessun host trovato con l'id o nome indicato"
311
325
 
312
- #: ../app/controllers/discovered_hosts_controller.rb:306
326
+ #: ../app/controllers/discovered_hosts_controller.rb:308
313
327
  msgid "No hosts selected"
314
328
  msgstr "Nessun host selezionato"
315
329
 
316
- #: ../app/controllers/discovered_hosts_controller.rb:312
330
+ #: ../app/controllers/discovered_hosts_controller.rb:314
317
331
  msgid "Something went wrong while selecting hosts - %s"
318
332
  msgstr "Si è verificato un errore durante la selezione degli host - %s"
319
333
 
@@ -329,21 +343,15 @@ msgstr "Regola disabilitata"
329
343
  msgid "%s ago"
330
344
  msgstr "%s fa"
331
345
 
332
- #: ../app/helpers/discovered_hosts_helper.rb:14
333
- #: ../app/helpers/discovered_hosts_helper.rb:29
334
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
346
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
335
347
  msgid "Auto Provision"
336
348
  msgstr "Auto Provision"
337
349
 
338
- #: ../app/helpers/discovered_hosts_helper.rb:15
339
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
350
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
340
351
  msgid "Refresh facts"
341
352
  msgstr "Aggiorna eventi"
342
353
 
343
- #: ../app/helpers/discovered_hosts_helper.rb:16
344
- #: ../app/helpers/discovered_hosts_helper.rb:30
345
- #: ../app/models/setting/discovered.rb:22
346
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
354
+ #: ../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
347
355
  msgid "Reboot"
348
356
  msgstr "Riavvia"
349
357
 
@@ -351,13 +359,11 @@ msgstr "Riavvia"
351
359
  msgid "Back"
352
360
  msgstr "Indietro"
353
361
 
354
- #: ../app/helpers/discovered_hosts_helper.rb:21
355
- #: ../app/helpers/discovered_hosts_helper.rb:35
362
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
356
363
  msgid "Select Action"
357
364
  msgstr "Seleziona azione"
358
365
 
359
- #: ../app/helpers/discovered_hosts_helper.rb:23
360
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
366
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
361
367
  msgid "Delete %s?"
362
368
  msgstr "Cancella %s?"
363
369
 
@@ -377,8 +383,7 @@ msgstr "Cancella"
377
383
  msgid "%s - The following hosts are about to be changed"
378
384
  msgstr "%s - I seguenti host stanno per essere modificati"
379
385
 
380
- #: ../app/helpers/discovered_hosts_helper.rb:46
381
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
386
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
382
387
  msgid "N/A"
383
388
  msgstr "N/A"
384
389
 
@@ -398,12 +403,7 @@ msgstr ""
398
403
  msgid "Provision"
399
404
  msgstr "Provisioning"
400
405
 
401
- #: ../app/helpers/discovery_rules_helper.rb:26
402
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
403
- #: ../app/views/discovered_hosts/welcome.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:6
405
- #: ../lib/foreman_discovery/engine.rb:158
406
- #: ../lib/foreman_discovery/engine.rb:173
406
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
407
407
  msgid "Discovered Hosts"
408
408
  msgstr ""
409
409
 
@@ -452,17 +452,14 @@ msgid "must be present."
452
452
  msgstr ""
453
453
 
454
454
  #: ../app/models/discovery_rule.rb:52
455
- msgid ""
456
- "Host group organization %s must also be associated to the discovery rule"
457
- msgid_plural ""
458
- "Host group organizations %s must also be associated to the discovery rule"
455
+ msgid "Host group organization %s must also be associated to the discovery rule"
456
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
459
457
  msgstr[0] ""
460
458
  msgstr[1] ""
461
459
 
462
460
  #: ../app/models/discovery_rule.rb:56
463
461
  msgid "Host group location %s must also be associated to the discovery rule"
464
- msgid_plural ""
465
- "Host group locations %s must also be associated to the discovery rule"
462
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
466
463
  msgstr[0] ""
467
464
  msgstr[1] ""
468
465
 
@@ -478,39 +475,39 @@ msgstr ""
478
475
  msgid "MAC-based name"
479
476
  msgstr ""
480
477
 
481
- #: ../app/models/host/discovered.rb:51
478
+ #: ../app/models/host/discovered.rb:55
482
479
  msgid "Invalid facts, must be a Hash"
483
480
  msgstr "Eventi non validi, deve essere un Hash"
484
481
 
485
- #: ../app/models/host/discovered.rb:56
486
- msgid ""
487
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
488
- "and set hostname"
482
+ #: ../app/models/host/discovered.rb:60
483
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
489
484
  msgstr ""
490
485
 
491
- #: ../app/models/host/discovered.rb:69
492
- msgid ""
493
- "Invalid facts: hash does not contain a valid value for any of the facts in "
494
- "the discovery_hostname setting: %s"
486
+ #: ../app/models/host/discovered.rb:73
487
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
495
488
  msgstr ""
496
489
 
497
- #: ../app/models/host/discovered.rb:95
490
+ #: ../app/models/host/discovered.rb:100
498
491
  msgid "Facts could not be imported"
499
492
  msgstr ""
500
493
 
501
- #: ../app/models/host/discovered.rb:150
494
+ #: ../app/models/host/discovered.rb:146
502
495
  msgid "Could not get facts from proxy %{url}: %{error}"
503
496
  msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
504
497
 
505
- #: ../app/models/host/discovered.rb:158
506
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
498
+ #: ../app/models/host/discovered.rb:160
499
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
500
+ msgstr ""
501
+
502
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
503
+ msgid "Unable to perform %{action} on %{ips}"
507
504
  msgstr ""
508
505
 
509
- #: ../app/models/host/discovered.rb:166
510
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
506
+ #: ../app/models/host/discovered.rb:179
507
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
511
508
  msgstr ""
512
509
 
513
- #: ../app/models/host/discovered.rb:185
510
+ #: ../app/models/host/discovered.rb:203
514
511
  msgid "Invalid hostname: Could not normalize the hostname"
515
512
  msgstr ""
516
513
 
@@ -538,191 +535,183 @@ msgstr ""
538
535
  msgid "Rebuild DNS for %s"
539
536
  msgstr ""
540
537
 
541
- #: ../app/models/setting/discovered.rb:15
538
+ #: ../app/models/setting/discovered.rb:17
542
539
  msgid "The default location to place discovered hosts in"
543
540
  msgstr "La posizione predefinita nella quale posizionare gli host trovati"
544
541
 
545
- #: ../app/models/setting/discovered.rb:15
542
+ #: ../app/models/setting/discovered.rb:17
546
543
  msgid "Discovery location"
547
544
  msgstr ""
548
545
 
549
- #: ../app/models/setting/discovered.rb:16
546
+ #: ../app/models/setting/discovered.rb:18
550
547
  msgid "The default organization to place discovered hosts in"
551
548
  msgstr "L'organizzazione predefinita nella quale posizionare gli host trovati"
552
549
 
553
- #: ../app/models/setting/discovered.rb:16
550
+ #: ../app/models/setting/discovered.rb:18
554
551
  msgid "Discovery organization"
555
552
  msgstr ""
556
553
 
557
- #: ../app/models/setting/discovered.rb:17
554
+ #: ../app/models/setting/discovered.rb:19
558
555
  msgid "Fact name to use for primary interface detection"
559
556
  msgstr ""
560
557
 
561
- #: ../app/models/setting/discovered.rb:17
558
+ #: ../app/models/setting/discovered.rb:19
562
559
  msgid "Interface fact"
563
560
  msgstr ""
564
561
 
565
- #: ../app/models/setting/discovered.rb:18
566
- msgid ""
567
- "Automatic bond interface (if another interface is detected on the same VLAN "
568
- "via LLDP)"
562
+ #: ../app/models/setting/discovered.rb:20
563
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
569
564
  msgstr ""
570
565
 
571
- #: ../app/models/setting/discovered.rb:18
566
+ #: ../app/models/setting/discovered.rb:20
572
567
  msgid "Create bond interfaces"
573
568
  msgstr ""
574
569
 
575
- #: ../app/models/setting/discovered.rb:19
570
+ #: ../app/models/setting/discovered.rb:21
576
571
  msgid "Clean all reported facts during provisioning (except discovery facts)"
577
572
  msgstr ""
578
573
 
579
- #: ../app/models/setting/discovered.rb:19
574
+ #: ../app/models/setting/discovered.rb:21
580
575
  msgid "Clean all facts"
581
576
  msgstr ""
582
577
 
583
- #: ../app/models/setting/discovered.rb:20
578
+ #: ../app/models/setting/discovered.rb:22
584
579
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
585
580
  msgstr ""
586
581
 
587
- #: ../app/models/setting/discovered.rb:20
582
+ #: ../app/models/setting/discovered.rb:22
588
583
  msgid "Hostname facts"
589
584
  msgstr ""
590
585
 
591
- #: ../app/models/setting/discovered.rb:21
592
- msgid ""
593
- "Automatically provision newly discovered hosts, according to the "
594
- "provisioning rules"
586
+ #: ../app/models/setting/discovered.rb:23
587
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
595
588
  msgstr "Esegui automaticamente il provisioning degli host trovati, in base alle regole per il provisioning"
596
589
 
597
- #: ../app/models/setting/discovered.rb:21
590
+ #: ../app/models/setting/discovered.rb:23
598
591
  msgid "Auto provisioning"
599
592
  msgstr ""
600
593
 
601
- #: ../app/models/setting/discovered.rb:22
594
+ #: ../app/models/setting/discovered.rb:24
602
595
  msgid "Automatically reboot or kexec discovered host during provisioning"
603
596
  msgstr ""
604
597
 
605
- #: ../app/models/setting/discovered.rb:23
598
+ #: ../app/models/setting/discovered.rb:25
606
599
  msgid "The default prefix to use for the host name, must start with a letter"
607
600
  msgstr "Il prefisso predefinito da usare per l'hostname, deve iniziare con una lettera"
608
601
 
609
- #: ../app/models/setting/discovered.rb:23
602
+ #: ../app/models/setting/discovered.rb:25
610
603
  msgid "Hostname prefix"
611
604
  msgstr ""
612
605
 
613
- #: ../app/models/setting/discovered.rb:24
606
+ #: ../app/models/setting/discovered.rb:26
614
607
  msgid "Extra facter columns to show in host lists (separate by comma)"
615
608
  msgstr ""
616
609
 
617
- #: ../app/models/setting/discovered.rb:24
610
+ #: ../app/models/setting/discovered.rb:26
618
611
  msgid "Fact columns"
619
612
  msgstr ""
620
613
 
621
- #: ../app/models/setting/discovered.rb:25
614
+ #: ../app/models/setting/discovered.rb:27
622
615
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
623
616
  msgstr ""
624
617
 
625
- #: ../app/models/setting/discovered.rb:25
618
+ #: ../app/models/setting/discovered.rb:27
626
619
  msgid "Highlighted facts"
627
620
  msgstr ""
628
621
 
629
- #: ../app/models/setting/discovered.rb:26
622
+ #: ../app/models/setting/discovered.rb:28
630
623
  msgid "Regex to organize facts for storage section"
631
624
  msgstr ""
632
625
 
633
- #: ../app/models/setting/discovered.rb:26
626
+ #: ../app/models/setting/discovered.rb:28
634
627
  msgid "Storage facts"
635
628
  msgstr ""
636
629
 
637
- #: ../app/models/setting/discovered.rb:27
630
+ #: ../app/models/setting/discovered.rb:29
638
631
  msgid "Regex to organize facts for software section"
639
632
  msgstr ""
640
633
 
641
- #: ../app/models/setting/discovered.rb:27
634
+ #: ../app/models/setting/discovered.rb:29
642
635
  msgid "Software facts"
643
636
  msgstr ""
644
637
 
645
- #: ../app/models/setting/discovered.rb:28
638
+ #: ../app/models/setting/discovered.rb:30
646
639
  msgid "Regex to organize facts for hardware section"
647
640
  msgstr ""
648
641
 
649
- #: ../app/models/setting/discovered.rb:28
642
+ #: ../app/models/setting/discovered.rb:30
650
643
  msgid "Hardware facts"
651
644
  msgstr ""
652
645
 
653
- #: ../app/models/setting/discovered.rb:29
646
+ #: ../app/models/setting/discovered.rb:31
654
647
  msgid "Regex to organize facts for network section"
655
648
  msgstr ""
656
649
 
657
- #: ../app/models/setting/discovered.rb:29
650
+ #: ../app/models/setting/discovered.rb:31
658
651
  msgid "Network facts"
659
652
  msgstr ""
660
653
 
661
- #: ../app/models/setting/discovered.rb:30
654
+ #: ../app/models/setting/discovered.rb:32
662
655
  msgid "Regex to organize facts for ipmi section"
663
656
  msgstr ""
664
657
 
665
- #: ../app/models/setting/discovered.rb:30
658
+ #: ../app/models/setting/discovered.rb:32
666
659
  msgid "IPMI facts"
667
660
  msgstr ""
668
661
 
669
- #: ../app/models/setting/discovered.rb:31
670
- msgid ""
671
- "Automatically generate PXE configuration to pin a newly discovered host to "
672
- "discovery"
662
+ #: ../app/models/setting/discovered.rb:33
663
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
673
664
  msgstr ""
674
665
 
675
- #: ../app/models/setting/discovered.rb:31
666
+ #: ../app/models/setting/discovered.rb:33
676
667
  msgid "Lock PXE"
677
668
  msgstr ""
678
669
 
679
- #: ../app/models/setting/discovered.rb:32
670
+ #: ../app/models/setting/discovered.rb:34
680
671
  msgid "PXELinux template to be used when pinning a host to discovery"
681
672
  msgstr ""
682
673
 
683
- #: ../app/models/setting/discovered.rb:32
674
+ #: ../app/models/setting/discovered.rb:34
684
675
  msgid "Locked PXELinux template name"
685
676
  msgstr ""
686
677
 
687
- #: ../app/models/setting/discovered.rb:33
678
+ #: ../app/models/setting/discovered.rb:35
688
679
  msgid "PXEGrub template to be used when pinning a host to discovery"
689
680
  msgstr ""
690
681
 
691
- #: ../app/models/setting/discovered.rb:33
682
+ #: ../app/models/setting/discovered.rb:35
692
683
  msgid "Locked PXEGrub template name"
693
684
  msgstr ""
694
685
 
695
- #: ../app/models/setting/discovered.rb:34
686
+ #: ../app/models/setting/discovered.rb:36
696
687
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
697
688
  msgstr ""
698
689
 
699
- #: ../app/models/setting/discovered.rb:34
690
+ #: ../app/models/setting/discovered.rb:36
700
691
  msgid "Locked PXEGrub2 template name"
701
692
  msgstr ""
702
693
 
703
- #: ../app/models/setting/discovered.rb:35
694
+ #: ../app/models/setting/discovered.rb:37
704
695
  msgid "Force DNS entries creation when provisioning discovered host"
705
696
  msgstr ""
706
697
 
707
- #: ../app/models/setting/discovered.rb:35
698
+ #: ../app/models/setting/discovered.rb:37
708
699
  msgid "Force DNS"
709
700
  msgstr ""
710
701
 
711
- #: ../app/models/setting/discovered.rb:36
712
- msgid ""
713
- "Do not allow to discover existing managed host matching MAC of a "
714
- "provisioning NIC (errors out early)"
702
+ #: ../app/models/setting/discovered.rb:38
703
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
715
704
  msgstr ""
716
705
 
717
- #: ../app/models/setting/discovered.rb:36
706
+ #: ../app/models/setting/discovered.rb:38
718
707
  msgid "Error on existing NIC"
719
708
  msgstr ""
720
709
 
721
- #: ../app/models/setting/discovered.rb:37
710
+ #: ../app/models/setting/discovered.rb:39
722
711
  msgid "Discovery hostname naming pattern"
723
712
  msgstr ""
724
713
 
725
- #: ../app/models/setting/discovered.rb:37
714
+ #: ../app/models/setting/discovered.rb:39
726
715
  msgid "Type of name generator"
727
716
  msgstr ""
728
717
 
@@ -735,23 +724,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
735
724
  msgstr ""
736
725
 
737
726
  #: ../app/services/foreman_discovery/fact_parser.rb:12
738
- msgid ""
739
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
740
- "%{filter}"
727
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
741
728
  msgstr ""
742
729
 
743
- #: ../app/services/foreman_discovery/host_converter.rb:39
730
+ #: ../app/services/foreman_discovery/host_converter.rb:47
744
731
  msgid "IPAM must be configured for subnet '%s'"
745
732
  msgstr ""
746
733
 
747
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
734
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
748
735
  msgid "Image API returned HTTP/%{code} with '%{body}"
749
736
  msgstr ""
750
737
 
751
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
738
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
752
739
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
753
740
  msgstr ""
754
741
 
742
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
743
+ msgid "Discovered Host"
744
+ msgid_plural "Discovered Hosts"
745
+ msgstr[0] ""
746
+ msgstr[1] ""
747
+
755
748
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
756
749
  msgid "No discovered hosts available"
757
750
  msgstr "Nessun host rilevato disponibile"
@@ -760,33 +753,23 @@ msgstr "Nessun host rilevato disponibile"
760
753
  msgid "Host"
761
754
  msgstr "Host"
762
755
 
763
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
764
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
765
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
766
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
767
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
756
+ #: ../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
768
757
  msgid "Model"
769
758
  msgstr "Modello"
770
759
 
771
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
772
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
773
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
774
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
760
+ #: ../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
775
761
  msgid "CPUs"
776
762
  msgstr "CPU"
777
763
 
778
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
779
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
780
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
781
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
764
+ #: ../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
782
765
  msgid "Memory"
783
766
  msgstr "Memoria"
784
767
 
785
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
768
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
786
769
  msgid "Customize Host"
787
770
  msgstr ""
788
771
 
789
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
772
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
790
773
  msgid "Create Host"
791
774
  msgstr ""
792
775
 
@@ -798,16 +781,11 @@ msgstr "Seleziona tutti gli oggetti in questa pagina"
798
781
  msgid "items selected. Uncheck to Clear"
799
782
  msgstr "oggetti selezionati. Deselezionare per annullare"
800
783
 
801
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
802
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
803
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
804
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
784
+ #: ../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
805
785
  msgid "Name"
806
786
  msgstr "Nome"
807
787
 
808
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
809
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
810
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
788
+ #: ../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
811
789
  msgid "IP Address"
812
790
  msgstr "Indirizzo IP"
813
791
 
@@ -819,13 +797,11 @@ msgstr ""
819
797
  msgid "Disks Size"
820
798
  msgstr ""
821
799
 
822
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
823
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
800
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
824
801
  msgid "Location"
825
802
  msgstr "Posizione"
826
803
 
827
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
828
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
804
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
829
805
  msgid "Organization"
830
806
  msgstr "Organizzazione"
831
807
 
@@ -837,8 +813,7 @@ msgstr "Sottorete"
837
813
  msgid "Last Facts Upload"
838
814
  msgstr ""
839
815
 
840
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
841
- #: ../app/views/discovery_rules/index.html.erb:12
816
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
842
817
  msgid "Actions"
843
818
  msgstr "Azioni"
844
819
 
@@ -859,9 +834,7 @@ msgid "Provision %s"
859
834
  msgstr ""
860
835
 
861
836
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
862
- msgid ""
863
- "This might take a while, as all hosts, facts and reports will be destroyed "
864
- "as well"
837
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
865
838
  msgstr "Questa operazione potrebbe richiedere qualche istante poichè saranno annullati anche gli host, eventi e riporti"
866
839
 
867
840
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -900,20 +873,6 @@ msgstr "indirizzo IP"
900
873
  msgid "Collapse All"
901
874
  msgstr "Comprimi tutto"
902
875
 
903
- #: ../app/views/discovered_hosts/welcome.html.erb:7
904
- msgid "No discovered hosts found in this context."
905
- msgstr ""
906
-
907
- #: ../app/views/discovered_hosts/welcome.html.erb:8
908
- msgid ""
909
- "This page shows discovered bare-metal or virtual nodes waiting to be "
910
- "provisioned."
911
- msgstr ""
912
-
913
- #: ../app/views/discovered_hosts/welcome.html.erb:9
914
- msgid "Learn more about this in the documentation."
915
- msgstr ""
916
-
917
876
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
918
877
  msgid "Summary report for discovered hosts from Foreman"
919
878
  msgstr ""
@@ -922,23 +881,19 @@ msgstr ""
922
881
  msgid "<b>Foreman</b> Discovered hosts summary"
923
882
  msgstr ""
924
883
 
925
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
926
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
884
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
927
885
  msgid "Summary from %{time} ago to %{now}"
928
886
  msgstr ""
929
887
 
930
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
931
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
888
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
932
889
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
933
890
  msgstr ""
934
891
 
935
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
936
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
892
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
937
893
  msgid "Disk count"
938
894
  msgstr "Conteggio disco"
939
895
 
940
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
941
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
896
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
942
897
  msgid "Disks size"
943
898
  msgstr "Dimensione dischi"
944
899
 
@@ -987,41 +942,30 @@ msgid "Rule priority (lower integer means higher priority)"
987
942
  msgstr "Priorità regola (valore intero più basso, priorità più alta)"
988
943
 
989
944
  #: ../app/views/discovery_rules/_template_inline.erb:2
990
- msgid ""
991
- "Specify target hostname template pattern in the same syntax as in "
992
- "Provisioning Templates (ERB)."
945
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
993
946
  msgstr "Specifica il pattern del template per l'hostname di destinazione con la stessa sintassi dei template di provisioning (ERB)."
994
947
 
995
948
  #: ../app/views/discovery_rules/_template_inline.erb:4
996
- msgid ""
997
- "Domain will be appended automatically. A hostname based on MAC address will "
998
- "be used when left blank."
949
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
999
950
  msgstr ""
1000
951
 
1001
952
  #: ../app/views/discovery_rules/_template_inline.erb:5
1002
- msgid ""
1003
- "In addition to @host attribute function rand for random integers is "
1004
- "available. Examples:"
953
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1005
954
  msgstr ""
1006
955
 
1007
956
  #: ../app/views/discovery_rules/_template_inline.erb:8
1008
- msgid ""
1009
- "When creating hostname patterns, make sure the resulting host names are "
1010
- "unique."
957
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1011
958
  msgstr ""
1012
959
 
1013
960
  #: ../app/views/discovery_rules/_template_inline.erb:9
1014
- msgid ""
1015
- "Hostnames must not start with numbers. A good approach is to use unique "
1016
- "information provided by facter (MAC address, BIOS or serial ID)."
961
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1017
962
  msgstr ""
1018
963
 
1019
964
  #: ../app/views/discovery_rules/edit.html.erb:1
1020
965
  msgid "Edit %s"
1021
966
  msgstr "Modifica %s"
1022
967
 
1023
- #: ../app/views/discovery_rules/index.html.erb:1
1024
- #: ../lib/foreman_discovery/engine.rb:163
968
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1025
969
  msgid "Discovery Rules"
1026
970
  msgstr "Regola per la scoperta"
1027
971
 
@@ -1077,38 +1021,34 @@ msgstr ""
1077
1021
  msgid "Details"
1078
1022
  msgstr "Dettagli:"
1079
1023
 
1080
- #: ../lib/foreman_discovery/engine.rb:179
1024
+ #: ../lib/foreman_discovery/engine.rb:180
1081
1025
  msgid "Discovery Kexec template"
1082
1026
  msgstr ""
1083
1027
 
1084
- #: ../lib/foreman_discovery/engine.rb:188
1028
+ #: ../lib/foreman_discovery/engine.rb:189
1085
1029
  msgid "Discovery Proxy"
1086
1030
  msgstr ""
1087
1031
 
1088
- #: ../lib/foreman_discovery/engine.rb:189
1089
- msgid ""
1090
- "Discovery Proxy to use within this subnet for managing connection to "
1091
- "discovered hosts"
1032
+ #: ../lib/foreman_discovery/engine.rb:190
1033
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1092
1034
  msgstr ""
1093
1035
 
1094
- #: ../lib/foreman_discovery/engine.rb:190
1095
- msgid ""
1096
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1097
- "discovered hosts"
1036
+ #: ../lib/foreman_discovery/engine.rb:191
1037
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1098
1038
  msgstr ""
1099
1039
 
1100
1040
  #: action_names.rb:2
1101
- msgid "Import Puppet classes"
1102
- msgstr "Importa classi Puppet"
1041
+ msgid "Remote action:"
1042
+ msgstr ""
1103
1043
 
1104
1044
  #: action_names.rb:3
1105
- msgid "Import facts"
1106
- msgstr "Importa gli eventi"
1045
+ msgid "Import Puppet classes"
1046
+ msgstr ""
1107
1047
 
1108
1048
  #: action_names.rb:4
1109
1049
  msgid "Action with sub plans"
1110
1050
  msgstr ""
1111
1051
 
1112
1052
  #: action_names.rb:5
1113
- msgid "Remote action:"
1114
- msgstr "Azione remota:"
1053
+ msgid "Import facts"
1054
+ msgstr ""