foreman_discovery 16.3.5 → 17.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +1 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +103 -70
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +109 -76
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +98 -66
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +107 -74
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +109 -76
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +151 -118
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +101 -68
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +107 -74
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +136 -103
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +107 -74
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +109 -76
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +112 -79
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +101 -68
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +153 -120
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +107 -74
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +6 -6
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +32 -10
@@ -7,10 +7,11 @@
|
|
7
7
|
# caifti <caifti@gmail.com>, 2014
|
8
8
|
msgid ""
|
9
9
|
msgstr ""
|
10
|
-
"Project-Id-Version: foreman_discovery
|
10
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"
|
13
|
-
"
|
12
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
13
|
+
"PO-Revision-Date: 2021-05-03 08:29+0000\n"
|
14
|
+
"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4\n"
|
14
15
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
15
16
|
"\n"
|
16
17
|
"MIME-Version: 1.0\n"
|
@@ -115,51 +116,51 @@ msgstr "Carica gli eventi per un host creando, se necessario, un host"
|
|
115
116
|
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)"
|
116
117
|
msgstr ""
|
117
118
|
|
118
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
119
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
119
120
|
msgid "Execute rules against a discovered host"
|
120
121
|
msgstr "Esegui le regole nei confronti di un host rilevato"
|
121
122
|
|
122
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
123
124
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
124
125
|
msgstr "È stato eseguito il provisioning dell'host %{host} con la regola %{rule}"
|
125
126
|
|
126
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
127
128
|
msgid "Unable to provision %{host}: %{errors}"
|
128
129
|
msgstr ""
|
129
130
|
|
130
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
131
132
|
msgid "No rule found for host %s"
|
132
133
|
msgstr "Nessuna regola trovata per l'host %s"
|
133
134
|
|
134
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
135
136
|
msgid "Execute rules against all currently discovered hosts"
|
136
137
|
msgstr "Esegui le regole nei confronti degli host attualemente rilevati"
|
137
138
|
|
138
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
139
140
|
msgid "Errors during auto provisioning: %s"
|
140
141
|
msgstr "Errore durante auto provisioning: %s"
|
141
142
|
|
142
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
143
144
|
msgid "No discovered hosts to provision"
|
144
145
|
msgstr "Nessun host rilevato per il provisioning"
|
145
146
|
|
146
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
147
148
|
msgid "%s discovered hosts were provisioned"
|
148
149
|
msgstr ""
|
149
150
|
|
150
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
151
152
|
msgid "Refreshing the facts of a discovered host"
|
152
153
|
msgstr "Aggiornamento eventi di un host rilevato"
|
153
154
|
|
154
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
155
156
|
msgid "Rebooting a discovered host"
|
156
157
|
msgstr "Riavvio di un host rilevato"
|
157
158
|
|
158
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
159
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
159
160
|
msgid "Rebooting all discovered hosts"
|
160
161
|
msgstr ""
|
161
162
|
|
162
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
163
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
163
164
|
msgid "Discovered hosts are rebooting now"
|
164
165
|
msgstr ""
|
165
166
|
|
@@ -291,58 +292,34 @@ msgstr "Impossibile eseguire auto provision dell'host %s: %s"
|
|
291
292
|
msgid "Discovered hosts are provisioning now"
|
292
293
|
msgstr "Gli host rilevati stanno eseguendo ora il provisioning"
|
293
294
|
|
294
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
295
|
-
msgid "
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
296
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
296
297
|
msgstr ""
|
297
298
|
|
298
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
299
|
-
msgid "
|
300
|
-
msgstr "
|
301
|
-
|
302
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
303
|
-
msgid "Hardware"
|
304
|
-
msgstr "Hardware"
|
305
|
-
|
306
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
307
|
-
msgid "Network"
|
308
|
-
msgstr "Rete"
|
309
|
-
|
310
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
311
|
-
msgid "Software"
|
312
|
-
msgstr "Software"
|
313
|
-
|
314
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
315
|
-
msgid "IPMI"
|
316
|
-
msgstr "IPMI"
|
317
|
-
|
318
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
319
|
-
msgid "Miscellaneous"
|
320
|
-
msgstr "Varie"
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
300
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
301
|
+
msgstr ""
|
321
302
|
|
322
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
323
304
|
msgid "No hosts were found with that id or name"
|
324
305
|
msgstr "Nessun host trovato con l'id o nome indicato"
|
325
306
|
|
326
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
307
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
327
308
|
msgid "No hosts selected"
|
328
309
|
msgstr "Nessun host selezionato"
|
329
310
|
|
330
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
311
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
331
312
|
msgid "Something went wrong while selecting hosts - %s"
|
332
313
|
msgstr "Si è verificato un errore durante la selezione degli host - %s"
|
333
314
|
|
334
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
315
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
335
316
|
msgid "Rule enabled"
|
336
317
|
msgstr "Regola abilitata"
|
337
318
|
|
338
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
319
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
339
320
|
msgid "Rule disabled"
|
340
321
|
msgstr "Regola disabilitata"
|
341
322
|
|
342
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
343
|
-
msgid "%s ago"
|
344
|
-
msgstr "%s fa"
|
345
|
-
|
346
323
|
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
347
324
|
msgid "Auto Provision"
|
348
325
|
msgstr "Auto Provision"
|
@@ -428,6 +405,10 @@ msgid "Enable rule '%s'?"
|
|
428
405
|
msgstr ""
|
429
406
|
|
430
407
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
408
|
+
msgid "Clone"
|
409
|
+
msgstr "Clona"
|
410
|
+
|
411
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
431
412
|
msgid "Delete rule '%s'?"
|
432
413
|
msgstr ""
|
433
414
|
|
@@ -451,13 +432,13 @@ msgstr "deve iniziare con una lettera o ERB."
|
|
451
432
|
msgid "must be present."
|
452
433
|
msgstr ""
|
453
434
|
|
454
|
-
#: ../app/models/discovery_rule.rb:
|
435
|
+
#: ../app/models/discovery_rule.rb:57
|
455
436
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
456
437
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
457
438
|
msgstr[0] ""
|
458
439
|
msgstr[1] ""
|
459
440
|
|
460
|
-
#: ../app/models/discovery_rule.rb:
|
441
|
+
#: ../app/models/discovery_rule.rb:61
|
461
442
|
msgid "Host group location %s must also be associated to the discovery rule"
|
462
443
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
463
444
|
msgstr[0] ""
|
@@ -491,23 +472,23 @@ msgstr ""
|
|
491
472
|
msgid "Facts could not be imported"
|
492
473
|
msgstr ""
|
493
474
|
|
494
|
-
#: ../app/models/host/discovered.rb:
|
475
|
+
#: ../app/models/host/discovered.rb:155
|
495
476
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
496
477
|
msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
|
497
478
|
|
498
|
-
#: ../app/models/host/discovered.rb:
|
479
|
+
#: ../app/models/host/discovered.rb:173
|
499
480
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
500
481
|
msgstr ""
|
501
482
|
|
502
|
-
#: ../app/models/host/discovered.rb:
|
483
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
503
484
|
msgid "Unable to perform %{action} on %{ips}"
|
504
485
|
msgstr ""
|
505
486
|
|
506
|
-
#: ../app/models/host/discovered.rb:
|
487
|
+
#: ../app/models/host/discovered.rb:196
|
507
488
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
508
489
|
msgstr ""
|
509
490
|
|
510
|
-
#: ../app/models/host/discovered.rb:
|
491
|
+
#: ../app/models/host/discovered.rb:220
|
511
492
|
msgid "Invalid hostname: Could not normalize the hostname"
|
512
493
|
msgstr ""
|
513
494
|
|
@@ -715,6 +696,14 @@ msgstr ""
|
|
715
696
|
msgid "Type of name generator"
|
716
697
|
msgstr ""
|
717
698
|
|
699
|
+
#: ../app/models/setting/discovered.rb:40
|
700
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
701
|
+
msgstr ""
|
702
|
+
|
703
|
+
#: ../app/models/setting/discovered.rb:40
|
704
|
+
msgid "Prefer IPv6"
|
705
|
+
msgstr ""
|
706
|
+
|
718
707
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
719
708
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
720
709
|
msgstr ""
|
@@ -727,6 +716,34 @@ msgstr ""
|
|
727
716
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
728
717
|
msgstr ""
|
729
718
|
|
719
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
720
|
+
msgid "Highlights"
|
721
|
+
msgstr ""
|
722
|
+
|
723
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
724
|
+
msgid "Storage"
|
725
|
+
msgstr "Storage"
|
726
|
+
|
727
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
728
|
+
msgid "Hardware"
|
729
|
+
msgstr "Hardware"
|
730
|
+
|
731
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
732
|
+
msgid "Network"
|
733
|
+
msgstr "Rete"
|
734
|
+
|
735
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
736
|
+
msgid "Software"
|
737
|
+
msgstr "Software"
|
738
|
+
|
739
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
740
|
+
msgid "IPMI"
|
741
|
+
msgstr "IPMI"
|
742
|
+
|
743
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
744
|
+
msgid "Miscellaneous"
|
745
|
+
msgstr "Varie"
|
746
|
+
|
730
747
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
731
748
|
msgid "IPAM must be configured for subnet '%s'"
|
732
749
|
msgstr ""
|
@@ -739,6 +756,10 @@ msgstr ""
|
|
739
756
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
740
757
|
msgstr ""
|
741
758
|
|
759
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
760
|
+
msgid "Host %s has been dicovered"
|
761
|
+
msgstr ""
|
762
|
+
|
742
763
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
743
764
|
msgid "Discovered Host"
|
744
765
|
msgid_plural "Discovered Hosts"
|
@@ -797,11 +818,11 @@ msgstr ""
|
|
797
818
|
msgid "Disks Size"
|
798
819
|
msgstr ""
|
799
820
|
|
800
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
821
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
|
801
822
|
msgid "Location"
|
802
823
|
msgstr "Posizione"
|
803
824
|
|
804
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
825
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
|
805
826
|
msgid "Organization"
|
806
827
|
msgstr "Organizzazione"
|
807
828
|
|
@@ -813,7 +834,7 @@ msgstr "Sottorete"
|
|
813
834
|
msgid "Last Facts Upload"
|
814
835
|
msgstr ""
|
815
836
|
|
816
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
837
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
817
838
|
msgid "Actions"
|
818
839
|
msgstr "Azioni"
|
819
840
|
|
@@ -961,6 +982,10 @@ msgstr ""
|
|
961
982
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
962
983
|
msgstr ""
|
963
984
|
|
985
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
986
|
+
msgid "Clone %s"
|
987
|
+
msgstr "Clona %s"
|
988
|
+
|
964
989
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
965
990
|
msgid "Edit %s"
|
966
991
|
msgstr "Modifica %s"
|
@@ -993,7 +1018,7 @@ msgstr "Gruppo di host"
|
|
993
1018
|
msgid "Hosts/Limit"
|
994
1019
|
msgstr ""
|
995
1020
|
|
996
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1021
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
997
1022
|
msgid "DiscoveryRule|Enabled"
|
998
1023
|
msgstr "Abilitata"
|
999
1024
|
|
@@ -1014,8 +1039,8 @@ msgid "A summary of discovered hosts"
|
|
1014
1039
|
msgstr ""
|
1015
1040
|
|
1016
1041
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1017
|
-
msgid "
|
1018
|
-
msgstr "
|
1042
|
+
msgid "New hosts"
|
1043
|
+
msgstr ""
|
1019
1044
|
|
1020
1045
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1021
1046
|
msgid "One or more hosts have been discovered"
|
@@ -1025,19 +1050,27 @@ msgstr ""
|
|
1025
1050
|
msgid "Details"
|
1026
1051
|
msgstr "Dettagli:"
|
1027
1052
|
|
1028
|
-
#: ../
|
1053
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1054
|
+
msgid "Hosts"
|
1055
|
+
msgstr "Hosts"
|
1056
|
+
|
1057
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1058
|
+
msgid "Error message goes here"
|
1059
|
+
msgstr ""
|
1060
|
+
|
1061
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1029
1062
|
msgid "Discovery Kexec template"
|
1030
1063
|
msgstr ""
|
1031
1064
|
|
1032
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1065
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1033
1066
|
msgid "Discovery Proxy"
|
1034
1067
|
msgstr ""
|
1035
1068
|
|
1036
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1069
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1037
1070
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1038
1071
|
msgstr ""
|
1039
1072
|
|
1040
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1073
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1041
1074
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1042
1075
|
msgstr ""
|
1043
1076
|
|
@@ -1050,17 +1083,17 @@ msgid "documentation"
|
|
1050
1083
|
msgstr ""
|
1051
1084
|
|
1052
1085
|
#: action_names.rb:2
|
1053
|
-
msgid "
|
1054
|
-
msgstr ""
|
1086
|
+
msgid "Remote action:"
|
1087
|
+
msgstr "Azione remota:"
|
1055
1088
|
|
1056
1089
|
#: action_names.rb:3
|
1057
|
-
msgid "Import facts"
|
1058
|
-
msgstr "Importa gli eventi"
|
1059
|
-
|
1060
|
-
#: action_names.rb:4
|
1061
1090
|
msgid "Import Puppet classes"
|
1062
1091
|
msgstr "Importa classi Puppet"
|
1063
1092
|
|
1093
|
+
#: action_names.rb:4
|
1094
|
+
msgid "Import facts"
|
1095
|
+
msgstr "Importa gli eventi"
|
1096
|
+
|
1064
1097
|
#: action_names.rb:5
|
1065
|
-
msgid "
|
1066
|
-
msgstr "
|
1098
|
+
msgid "Action with sub plans"
|
1099
|
+
msgstr ""
|
@@ -7,9 +7,9 @@
|
|
7
7
|
# caifti <caifti@gmail.com>, 2014
|
8
8
|
msgid ""
|
9
9
|
msgstr ""
|
10
|
-
"Project-Id-Version: foreman_discovery 16.
|
10
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"PO-Revision-Date:
|
12
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
13
13
|
"Last-Translator: Transifex Bot <>\n"
|
14
14
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
15
15
|
"\n"
|
@@ -22,9 +22,6 @@ msgstr ""
|
|
22
22
|
msgid "%s - The following hosts are about to be changed"
|
23
23
|
msgstr "%s - I seguenti host stanno per essere modificati"
|
24
24
|
|
25
|
-
msgid "%s ago"
|
26
|
-
msgstr "%s fa"
|
27
|
-
|
28
25
|
msgid "%s discovered hosts were provisioned"
|
29
26
|
msgstr ""
|
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 "Comprimi tutto"
|
87
90
|
|
@@ -92,7 +95,7 @@ msgid "Could not get facts from proxy %{url}: %{error}"
|
|
92
95
|
msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
|
93
96
|
|
94
97
|
msgid "Create Host"
|
95
|
-
msgstr ""
|
98
|
+
msgstr "Crea Host"
|
96
99
|
|
97
100
|
msgid "Create Rule"
|
98
101
|
msgstr ""
|
@@ -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 "Host trovati: %s"
|
155
164
|
|
@@ -162,6 +171,9 @@ msgstr ""
|
|
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 "Abilita"
|
|
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 "Impossibile aggiornare gli eventi per %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 "Host"
|
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 "È stato eseguito il provisioning dell'host %{host} con la regola %{rule}"
|
311
332
|
|
@@ -326,10 +347,10 @@ msgid "Host of type %s can not be rebooted"
|
|
326
347
|
msgstr "Impossibile eseguire il riavvio sul tipo di host %s "
|
327
348
|
|
328
349
|
msgid "Host's owner type"
|
329
|
-
msgstr ""
|
350
|
+
msgstr "Tipo di proprietario dell'host"
|
330
351
|
|
331
352
|
msgid "Host's parameters (array or indexed hash)"
|
332
|
-
msgstr ""
|
353
|
+
msgstr "Parametri dell'host (array o hash indicizzato)"
|
333
354
|
|
334
355
|
msgid "Hostname facts"
|
335
356
|
msgstr ""
|
@@ -380,10 +401,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
380
401
|
msgstr ""
|
381
402
|
|
382
403
|
msgid "Import Puppet classes"
|
383
|
-
msgstr ""
|
404
|
+
msgstr "Importa classi Puppet"
|
384
405
|
|
385
406
|
msgid "Import facts"
|
386
|
-
msgstr ""
|
407
|
+
msgstr "Importa gli eventi"
|
387
408
|
|
388
409
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
389
410
|
msgstr ""
|
@@ -473,7 +494,7 @@ msgid "Name"
|
|
473
494
|
msgstr "Nome"
|
474
495
|
|
475
496
|
msgid "Name of the parameter"
|
476
|
-
msgstr ""
|
497
|
+
msgstr "Nome del parametro"
|
477
498
|
|
478
499
|
msgid "Network"
|
479
500
|
msgstr "Rete"
|
@@ -484,6 +505,9 @@ msgstr ""
|
|
484
505
|
msgid "New Discovery Rule"
|
485
506
|
msgstr "Nuova regola per la scoperta"
|
486
507
|
|
508
|
+
msgid "New hosts"
|
509
|
+
msgstr ""
|
510
|
+
|
487
511
|
msgid "New in the last 24 hours"
|
488
512
|
msgstr ""
|
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 "Valore parametro"
|
540
564
|
|
541
565
|
msgid "Please Confirm"
|
542
566
|
msgstr "Conferma"
|
@@ -602,7 +626,7 @@ msgid "Reloading kernel on %s"
|
|
602
626
|
msgstr ""
|
603
627
|
|
604
628
|
msgid "Remote action:"
|
605
|
-
msgstr ""
|
629
|
+
msgstr "Azione remota:"
|
606
630
|
|
607
631
|
msgid "Reported in the last 7 days"
|
608
632
|
msgstr ""
|
@@ -692,7 +716,7 @@ msgid "Type of name generator"
|
|
692
716
|
msgstr ""
|
693
717
|
|
694
718
|
msgid "Type of value"
|
695
|
-
msgstr ""
|
719
|
+
msgstr "Tipo di valore"
|
696
720
|
|
697
721
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
698
722
|
msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
|
@@ -730,6 +754,9 @@ msgstr "non può avere spazi."
|
|
730
754
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
731
755
|
msgstr "definisce uno schema per assegnare gli hostname leggibili dall'utente agli host corrispondenti"
|
732
756
|
|
757
|
+
msgid "documentation"
|
758
|
+
msgstr ""
|
759
|
+
|
733
760
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
734
761
|
msgstr "permette di limitare la quantità massima di host con provisioning per regola"
|
735
762
|
|
@@ -779,13 +806,13 @@ msgid "represents rule name shown to the users"
|
|
779
806
|
msgstr "rappresenta il nome della regola da mostrare agli utenti"
|
780
807
|
|
781
808
|
msgid "required if host is managed and custom partition has not been defined"
|
782
|
-
msgstr ""
|
809
|
+
msgstr "necessario se l'host è gestito e la partizione personalizzata non è stata definita"
|
783
810
|
|
784
811
|
msgid "required if host is managed and value is not inherited from host group"
|
785
|
-
msgstr ""
|
812
|
+
msgstr "necessario se l'host è gestito ed il valore non è stato ereditato da un gruppo di host"
|
786
813
|
|
787
814
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
788
|
-
msgstr ""
|
815
|
+
msgstr "necessario se non è disponibile imaged based provisioning e l'host è gestito ed il valore non è stato ereditato dal gruppo di host"
|
789
816
|
|
790
817
|
msgid "required if value is not inherited from host group or default password in settings"
|
791
818
|
msgstr "necessario se il valore non è ereditato da un gruppo di host o password predefinita nelle impostazione"
|
Binary file
|