foreman_openscap 1.0.10 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/app/controllers/api/v2/compliance/arf_reports_controller.rb +11 -3
- data/app/controllers/api/v2/compliance/policies_controller.rb +2 -9
- data/app/controllers/api/v2/compliance/scap_content_profiles_controller.rb +15 -0
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +2 -8
- data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +2 -8
- data/app/controllers/concerns/foreman_openscap/api/v2/scap_api_controller_extensions.rb +9 -0
- data/app/controllers/policies_controller.rb +1 -1
- data/app/helpers/compliance_hosts_helper.rb +23 -0
- data/app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb +0 -6
- data/app/models/concerns/foreman_openscap/host_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/smart_proxy_extensions.rb +1 -1
- data/app/models/foreman_openscap/policy.rb +12 -0
- data/app/models/foreman_openscap/scap_content_profile.rb +3 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +3 -2
- data/app/views/api/v2/compliance/scap_content_profiles/base.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/main.json.rabl +9 -0
- data/app/views/arf_reports/_list.html.erb +1 -1
- data/app/views/arf_reports/welcome.html.erb +2 -0
- data/app/views/hosts/select_multiple_openscap_proxy.html.erb +1 -1
- data/app/views/policies/disassociate_multiple_hosts.html.erb +1 -1
- data/app/views/policies/select_multiple_hosts.html.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/migrate/20150929152345_move_arf_reports_to_reports_table.rb +0 -2
- data/db/migrate/20200117135424_migrate_port_overrides_to_int.rb +24 -0
- data/lib/foreman_openscap/engine.rb +15 -10
- data/lib/foreman_openscap/helper.rb +1 -1
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.po +244 -241
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.po +38 -38
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.po +285 -283
- data/locale/foreman_openscap.pot +119 -120
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.po +292 -284
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.po +49 -49
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.po +74 -73
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.po +284 -282
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.po +155 -155
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.po +287 -280
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.po +163 -160
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.po +49 -49
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.po +284 -281
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.po +151 -150
- data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +0 -3
- data/test/functional/api/v2/compliance/scap_content_profiles_controller_test.rb +15 -0
- data/test/test_plugin_helper.rb +2 -2
- data/test/unit/concerns/host_extensions_test.rb +7 -0
- data/test/unit/policy_test.rb +19 -0
- metadata +24 -32
- data/app/overrides/hosts/overview/host_compliance_status.rb +0 -4
- data/app/views/compliance_hosts/_compliance_status.erb +0 -6
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
Binary file
|
@@ -1,21 +1,21 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
5
4
|
#
|
5
|
+
# Translators:
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
8
|
+
"Project-Id-Version: Foreman\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
12
|
-
"Language-Team:
|
13
|
-
"
|
10
|
+
"PO-Revision-Date: 2019-10-23 20:36+0000\n"
|
11
|
+
"Last-Translator: Carmela Rubiños <carmela.rubinos@gmail.com>\n"
|
12
|
+
"Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
|
13
|
+
")\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"
|
18
|
-
"
|
17
|
+
"Language: gl\n"
|
18
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19
19
|
|
20
20
|
msgid " for policy %s"
|
21
21
|
msgstr ""
|
@@ -56,10 +56,10 @@ msgid "Action with sub plans"
|
|
56
56
|
msgstr ""
|
57
57
|
|
58
58
|
msgid "Actions"
|
59
|
-
msgstr ""
|
59
|
+
msgstr "Accións"
|
60
60
|
|
61
61
|
msgid "All messages"
|
62
|
-
msgstr ""
|
62
|
+
msgstr "Tódalas mensaxes"
|
63
63
|
|
64
64
|
msgid "Ansible role"
|
65
65
|
msgstr ""
|
@@ -77,10 +77,10 @@ msgid "Assign Compliance Policy"
|
|
77
77
|
msgstr ""
|
78
78
|
|
79
79
|
msgid "Back"
|
80
|
-
msgstr ""
|
80
|
+
msgstr "Atrás"
|
81
81
|
|
82
82
|
msgid "Cancel"
|
83
|
-
msgstr ""
|
83
|
+
msgstr "Cancelar"
|
84
84
|
|
85
85
|
msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
|
86
86
|
msgstr ""
|
@@ -130,18 +130,12 @@ msgstr ""
|
|
130
130
|
msgid "Compliance Reports Breakdown"
|
131
131
|
msgstr ""
|
132
132
|
|
133
|
-
msgid "Compliance Status"
|
134
|
-
msgstr ""
|
135
|
-
|
136
133
|
msgid "Compliance policy summary"
|
137
134
|
msgstr ""
|
138
135
|
|
139
136
|
msgid "Compliance policy: %s"
|
140
137
|
msgstr ""
|
141
138
|
|
142
|
-
msgid "Compliance reports breakdown"
|
143
|
-
msgstr ""
|
144
|
-
|
145
139
|
msgid "Compliant"
|
146
140
|
msgstr ""
|
147
141
|
|
@@ -173,7 +167,7 @@ msgid "Create client"
|
|
173
167
|
msgstr ""
|
174
168
|
|
175
169
|
msgid "Dashboard"
|
176
|
-
msgstr ""
|
170
|
+
msgstr "Escritorio"
|
177
171
|
|
178
172
|
msgid "DataStream Tailoring file"
|
179
173
|
msgstr ""
|
@@ -185,7 +179,7 @@ msgid "Default XCCDF profile"
|
|
185
179
|
msgstr ""
|
186
180
|
|
187
181
|
msgid "Delete"
|
188
|
-
msgstr ""
|
182
|
+
msgstr "Borrar"
|
189
183
|
|
190
184
|
msgid "Delete a Policy"
|
191
185
|
msgstr ""
|
@@ -227,10 +221,10 @@ msgid "Deployment Options"
|
|
227
221
|
msgstr ""
|
228
222
|
|
229
223
|
msgid "Description"
|
230
|
-
msgstr ""
|
224
|
+
msgstr "Descripción"
|
231
225
|
|
232
226
|
msgid "Documentation"
|
233
|
-
msgstr ""
|
227
|
+
msgstr "Documentación"
|
234
228
|
|
235
229
|
msgid "Download"
|
236
230
|
msgstr ""
|
@@ -266,7 +260,7 @@ msgid "Effective Profile"
|
|
266
260
|
msgstr ""
|
267
261
|
|
268
262
|
msgid "Failed"
|
269
|
-
msgstr ""
|
263
|
+
msgstr "Errores"
|
270
264
|
|
271
265
|
msgid "Failed and Othered"
|
272
266
|
msgstr ""
|
@@ -297,7 +291,7 @@ msgstr ""
|
|
297
291
|
|
298
292
|
#. TRANSLATORS: initial character of Failed
|
299
293
|
msgid "Failed|F"
|
300
|
-
msgstr ""
|
294
|
+
msgstr "F"
|
301
295
|
|
302
296
|
msgid "File Upload"
|
303
297
|
msgstr ""
|
@@ -309,19 +303,19 @@ msgid "General"
|
|
309
303
|
msgstr ""
|
310
304
|
|
311
305
|
msgid "Host"
|
312
|
-
msgstr ""
|
306
|
+
msgstr "Equipo"
|
313
307
|
|
314
308
|
msgid "Host Breakdown Chart"
|
315
309
|
msgstr ""
|
316
310
|
|
317
311
|
msgid "Host Groups"
|
318
|
-
msgstr ""
|
312
|
+
msgstr "Grupos de Equipos"
|
319
313
|
|
320
314
|
msgid "Host compliance details"
|
321
315
|
msgstr ""
|
322
316
|
|
323
317
|
msgid "Host details"
|
324
|
-
msgstr ""
|
318
|
+
msgstr "Detalles do Equipo"
|
325
319
|
|
326
320
|
msgid "Host does not exist anymore"
|
327
321
|
msgstr ""
|
@@ -408,6 +402,9 @@ msgstr ""
|
|
408
402
|
msgid "List Policies"
|
409
403
|
msgstr ""
|
410
404
|
|
405
|
+
msgid "List SCAP content profiles"
|
406
|
+
msgstr ""
|
407
|
+
|
411
408
|
msgid "List SCAP contents"
|
412
409
|
msgstr ""
|
413
410
|
|
@@ -418,10 +415,10 @@ msgid "Loading..."
|
|
418
415
|
msgstr ""
|
419
416
|
|
420
417
|
msgid "Locations"
|
421
|
-
msgstr ""
|
418
|
+
msgstr "Lugares"
|
422
419
|
|
423
420
|
msgid "Message"
|
424
|
-
msgstr ""
|
421
|
+
msgstr "Mensaxe"
|
425
422
|
|
426
423
|
msgid "More details"
|
427
424
|
msgstr ""
|
@@ -472,7 +469,7 @@ msgid "No compliance reports were found."
|
|
472
469
|
msgstr ""
|
473
470
|
|
474
471
|
msgid "No hosts selected"
|
475
|
-
msgstr ""
|
472
|
+
msgstr "Ningún equipo seleccionado"
|
476
473
|
|
477
474
|
msgid "No hosts were found."
|
478
475
|
msgstr ""
|
@@ -514,10 +511,10 @@ msgid "Not compliant with the policy"
|
|
514
511
|
msgstr ""
|
515
512
|
|
516
513
|
msgid "Nothing to show"
|
517
|
-
msgstr ""
|
514
|
+
msgstr "Nada que mostrar"
|
518
515
|
|
519
516
|
msgid "Number of Events"
|
520
|
-
msgstr ""
|
517
|
+
msgstr "Número de Eventos"
|
521
518
|
|
522
519
|
msgid "Number of a day in month, note that not all months have same count of days"
|
523
520
|
msgstr ""
|
@@ -535,7 +532,7 @@ msgid "Openscap Proxy"
|
|
535
532
|
msgstr ""
|
536
533
|
|
537
534
|
msgid "Organizations"
|
538
|
-
msgstr ""
|
535
|
+
msgstr "Organizacións"
|
539
536
|
|
540
537
|
msgid "Original file name of the XML file"
|
541
538
|
msgstr ""
|
@@ -558,7 +555,7 @@ msgid "Passed|P"
|
|
558
555
|
msgstr ""
|
559
556
|
|
560
557
|
msgid "Please Confirm"
|
561
|
-
msgstr ""
|
558
|
+
msgstr "Confirme, por favor"
|
562
559
|
|
563
560
|
msgid "Policies"
|
564
561
|
msgstr ""
|
@@ -612,7 +609,7 @@ msgid "Proxy failed to send a report from spool to Foreman. This indicates a cor
|
|
612
609
|
msgstr ""
|
613
610
|
|
614
611
|
msgid "Puppet class"
|
615
|
-
msgstr ""
|
612
|
+
msgstr "Clase Puppet"
|
616
613
|
|
617
614
|
msgid "Rationale"
|
618
615
|
msgstr ""
|
@@ -624,10 +621,10 @@ msgid "Remote action:"
|
|
624
621
|
msgstr ""
|
625
622
|
|
626
623
|
msgid "Report Metrics"
|
627
|
-
msgstr ""
|
624
|
+
msgstr "Métricas de Informe"
|
628
625
|
|
629
626
|
msgid "Report Status"
|
630
|
-
msgstr ""
|
627
|
+
msgstr "Estado do Informe"
|
631
628
|
|
632
629
|
msgid "Reported At"
|
633
630
|
msgstr ""
|
@@ -636,7 +633,7 @@ msgid "Reported at %s"
|
|
636
633
|
msgstr ""
|
637
634
|
|
638
635
|
msgid "Reports"
|
639
|
-
msgstr ""
|
636
|
+
msgstr "Informes"
|
640
637
|
|
641
638
|
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
642
639
|
msgstr ""
|
@@ -645,11 +642,14 @@ msgid "Required %{msg_name} %{class} was not found, please ensure it is imported
|
|
645
642
|
msgstr ""
|
646
643
|
|
647
644
|
msgid "Resource"
|
648
|
-
msgstr ""
|
645
|
+
msgstr "Recurso"
|
649
646
|
|
650
647
|
msgid "Result"
|
651
648
|
msgstr ""
|
652
649
|
|
650
|
+
msgid "Rule Results"
|
651
|
+
msgstr ""
|
652
|
+
|
653
653
|
msgid "Run OpenSCAP scan"
|
654
654
|
msgstr ""
|
655
655
|
|
@@ -681,7 +681,7 @@ msgid "Schedule"
|
|
681
681
|
msgstr ""
|
682
682
|
|
683
683
|
msgid "Select Action"
|
684
|
-
msgstr ""
|
684
|
+
msgstr "Selecciona unha Acción"
|
685
685
|
|
686
686
|
msgid "Select Compliance Policy"
|
687
687
|
msgstr ""
|
@@ -690,7 +690,7 @@ msgid "Select OpenSCAP Proxy"
|
|
690
690
|
msgstr ""
|
691
691
|
|
692
692
|
msgid "Select all items in this page"
|
693
|
-
msgstr ""
|
693
|
+
msgstr "Seleccionar tódolos obxetos desta páxina"
|
694
694
|
|
695
695
|
msgid "Severity"
|
696
696
|
msgstr ""
|
@@ -720,7 +720,7 @@ msgid "Show config information for foreman_scap_client"
|
|
720
720
|
msgstr ""
|
721
721
|
|
722
722
|
msgid "Show log messages:"
|
723
|
-
msgstr ""
|
723
|
+
msgstr "Mostrar rexistro de mensaxes:"
|
724
724
|
|
725
725
|
msgid "Smart Class Parameters"
|
726
726
|
msgstr ""
|
@@ -729,7 +729,7 @@ msgid "Something went wrong while selecting compliance reports - %s"
|
|
729
729
|
msgstr ""
|
730
730
|
|
731
731
|
msgid "Something went wrong while selecting hosts - %s"
|
732
|
-
msgstr ""
|
732
|
+
msgstr "Algo fallou ao seleccionar equipos - %s"
|
733
733
|
|
734
734
|
msgid "Spool errors"
|
735
735
|
msgstr ""
|
@@ -741,7 +741,7 @@ msgid "Status table"
|
|
741
741
|
msgstr ""
|
742
742
|
|
743
743
|
msgid "Submit"
|
744
|
-
msgstr ""
|
744
|
+
msgstr "Introducir"
|
745
745
|
|
746
746
|
msgid "Successfully deleted %s compliance reports"
|
747
747
|
msgstr ""
|
@@ -797,7 +797,7 @@ msgid "This profile will be used to override the one from scap content"
|
|
797
797
|
msgstr ""
|
798
798
|
|
799
799
|
msgid "Total"
|
800
|
-
msgstr ""
|
800
|
+
msgstr "Total"
|
801
801
|
|
802
802
|
msgid "Total hosts with policy: %s"
|
803
803
|
msgstr ""
|
@@ -904,7 +904,7 @@ msgid "does not have the selected SCAP content profile"
|
|
904
904
|
msgstr ""
|
905
905
|
|
906
906
|
msgid "invalid type %s"
|
907
|
-
msgstr ""
|
907
|
+
msgstr "Tipo %s non válido"
|
908
908
|
|
909
909
|
msgid "is not a valid value"
|
910
910
|
msgstr ""
|
@@ -913,7 +913,7 @@ msgid "is not included in SCAP_RESULT"
|
|
913
913
|
msgstr ""
|
914
914
|
|
915
915
|
msgid "items selected. Uncheck to Clear"
|
916
|
-
msgstr ""
|
916
|
+
msgstr "obxetos seleccionados. Desactivar para limpar"
|
917
917
|
|
918
918
|
msgid "must be between 1 and 31"
|
919
919
|
msgstr ""
|
Binary file
|
@@ -1,21 +1,22 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
5
4
|
#
|
5
|
+
# Translators:
|
6
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
6
7
|
msgid ""
|
7
8
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
9
|
+
"Project-Id-Version: Foreman\n"
|
9
10
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
12
|
-
"Language-Team: Italian
|
13
|
-
"
|
11
|
+
"PO-Revision-Date: 2019-10-23 20:36+0000\n"
|
12
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
13
|
+
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
14
|
+
"\n"
|
14
15
|
"MIME-Version: 1.0\n"
|
15
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
17
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"
|
18
|
-
"
|
18
|
+
"Language: it\n"
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19
20
|
|
20
21
|
msgid " for policy %s"
|
21
22
|
msgstr ""
|
@@ -56,13 +57,13 @@ msgid "Action with sub plans"
|
|
56
57
|
msgstr ""
|
57
58
|
|
58
59
|
msgid "Actions"
|
59
|
-
msgstr ""
|
60
|
+
msgstr "Azioni"
|
60
61
|
|
61
62
|
msgid "All messages"
|
62
|
-
msgstr ""
|
63
|
+
msgstr "Tutti i messaggi"
|
63
64
|
|
64
65
|
msgid "Ansible role"
|
65
|
-
msgstr ""
|
66
|
+
msgstr "ruolo Ansible"
|
66
67
|
|
67
68
|
msgid "Ansible variables"
|
68
69
|
msgstr ""
|
@@ -77,10 +78,10 @@ msgid "Assign Compliance Policy"
|
|
77
78
|
msgstr ""
|
78
79
|
|
79
80
|
msgid "Back"
|
80
|
-
msgstr ""
|
81
|
+
msgstr "Indietro"
|
81
82
|
|
82
83
|
msgid "Cancel"
|
83
|
-
msgstr ""
|
84
|
+
msgstr "Annulla"
|
84
85
|
|
85
86
|
msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
|
86
87
|
msgstr ""
|
@@ -116,7 +117,7 @@ msgid "Choose weekday"
|
|
116
117
|
msgstr ""
|
117
118
|
|
118
119
|
msgid "Compliance"
|
119
|
-
msgstr ""
|
120
|
+
msgstr "Conforme"
|
120
121
|
|
121
122
|
msgid "Compliance Hosts"
|
122
123
|
msgstr ""
|
@@ -130,18 +131,12 @@ msgstr ""
|
|
130
131
|
msgid "Compliance Reports Breakdown"
|
131
132
|
msgstr ""
|
132
133
|
|
133
|
-
msgid "Compliance Status"
|
134
|
-
msgstr ""
|
135
|
-
|
136
134
|
msgid "Compliance policy summary"
|
137
135
|
msgstr ""
|
138
136
|
|
139
137
|
msgid "Compliance policy: %s"
|
140
138
|
msgstr ""
|
141
139
|
|
142
|
-
msgid "Compliance reports breakdown"
|
143
|
-
msgstr ""
|
144
|
-
|
145
140
|
msgid "Compliant"
|
146
141
|
msgstr ""
|
147
142
|
|
@@ -173,19 +168,19 @@ msgid "Create client"
|
|
173
168
|
msgstr ""
|
174
169
|
|
175
170
|
msgid "Dashboard"
|
176
|
-
msgstr ""
|
171
|
+
msgstr "Dashboard"
|
177
172
|
|
178
173
|
msgid "DataStream Tailoring file"
|
179
174
|
msgstr ""
|
180
175
|
|
181
176
|
msgid "Date"
|
182
|
-
msgstr ""
|
177
|
+
msgstr "Data"
|
183
178
|
|
184
179
|
msgid "Default XCCDF profile"
|
185
180
|
msgstr ""
|
186
181
|
|
187
182
|
msgid "Delete"
|
188
|
-
msgstr ""
|
183
|
+
msgstr "Elimina"
|
189
184
|
|
190
185
|
msgid "Delete a Policy"
|
191
186
|
msgstr ""
|
@@ -227,13 +222,13 @@ msgid "Deployment Options"
|
|
227
222
|
msgstr ""
|
228
223
|
|
229
224
|
msgid "Description"
|
230
|
-
msgstr ""
|
225
|
+
msgstr "Descrizione"
|
231
226
|
|
232
227
|
msgid "Documentation"
|
233
228
|
msgstr ""
|
234
229
|
|
235
230
|
msgid "Download"
|
236
|
-
msgstr ""
|
231
|
+
msgstr "Scarica"
|
237
232
|
|
238
233
|
msgid "Download ARF report in HTML"
|
239
234
|
msgstr ""
|
@@ -266,7 +261,7 @@ msgid "Effective Profile"
|
|
266
261
|
msgstr ""
|
267
262
|
|
268
263
|
msgid "Failed"
|
269
|
-
msgstr ""
|
264
|
+
msgstr "Non riuscito"
|
270
265
|
|
271
266
|
msgid "Failed and Othered"
|
272
267
|
msgstr ""
|
@@ -297,7 +292,7 @@ msgstr ""
|
|
297
292
|
|
298
293
|
#. TRANSLATORS: initial character of Failed
|
299
294
|
msgid "Failed|F"
|
300
|
-
msgstr ""
|
295
|
+
msgstr "F"
|
301
296
|
|
302
297
|
msgid "File Upload"
|
303
298
|
msgstr ""
|
@@ -306,22 +301,22 @@ msgid "Full Report"
|
|
306
301
|
msgstr ""
|
307
302
|
|
308
303
|
msgid "General"
|
309
|
-
msgstr ""
|
304
|
+
msgstr "Generale"
|
310
305
|
|
311
306
|
msgid "Host"
|
312
|
-
msgstr ""
|
307
|
+
msgstr "Host"
|
313
308
|
|
314
309
|
msgid "Host Breakdown Chart"
|
315
310
|
msgstr ""
|
316
311
|
|
317
312
|
msgid "Host Groups"
|
318
|
-
msgstr ""
|
313
|
+
msgstr "Gruppi host"
|
319
314
|
|
320
315
|
msgid "Host compliance details"
|
321
316
|
msgstr ""
|
322
317
|
|
323
318
|
msgid "Host details"
|
324
|
-
msgstr ""
|
319
|
+
msgstr "Informazioni host"
|
325
320
|
|
326
321
|
msgid "Host does not exist anymore"
|
327
322
|
msgstr ""
|
@@ -336,10 +331,10 @@ msgid "Host is not assigned to policy but reports were found. You may want to de
|
|
336
331
|
msgstr ""
|
337
332
|
|
338
333
|
msgid "Hostgroups"
|
339
|
-
msgstr ""
|
334
|
+
msgstr "Hostgroup"
|
340
335
|
|
341
336
|
msgid "Hostname"
|
342
|
-
msgstr ""
|
337
|
+
msgstr "Nome host"
|
343
338
|
|
344
339
|
msgid "Hosts Breakdown"
|
345
340
|
msgstr ""
|
@@ -363,10 +358,10 @@ msgid "ID of OpenSCAP Proxy"
|
|
363
358
|
msgstr ""
|
364
359
|
|
365
360
|
msgid "Import Puppet classes"
|
366
|
-
msgstr ""
|
361
|
+
msgstr "Importa classi Puppet"
|
367
362
|
|
368
363
|
msgid "Import facts"
|
369
|
-
msgstr ""
|
364
|
+
msgstr "Importa gli eventi"
|
370
365
|
|
371
366
|
msgid "In Foreman, a compliance policy checklist is defined via %s."
|
372
367
|
msgstr ""
|
@@ -408,6 +403,9 @@ msgstr ""
|
|
408
403
|
msgid "List Policies"
|
409
404
|
msgstr ""
|
410
405
|
|
406
|
+
msgid "List SCAP content profiles"
|
407
|
+
msgstr ""
|
408
|
+
|
411
409
|
msgid "List SCAP contents"
|
412
410
|
msgstr ""
|
413
411
|
|
@@ -415,16 +413,16 @@ msgid "List Tailoring files"
|
|
415
413
|
msgstr ""
|
416
414
|
|
417
415
|
msgid "Loading..."
|
418
|
-
msgstr ""
|
416
|
+
msgstr "Caricamento..."
|
419
417
|
|
420
418
|
msgid "Locations"
|
421
|
-
msgstr ""
|
419
|
+
msgstr "Posizioni"
|
422
420
|
|
423
421
|
msgid "Message"
|
424
|
-
msgstr ""
|
422
|
+
msgstr "Messaggio"
|
425
423
|
|
426
424
|
msgid "More details"
|
427
|
-
msgstr ""
|
425
|
+
msgstr "Maggiori dettagli"
|
428
426
|
|
429
427
|
msgid "Never audited"
|
430
428
|
msgstr ""
|
@@ -442,10 +440,10 @@ msgid "New Tailoring File"
|
|
442
440
|
msgstr ""
|
443
441
|
|
444
442
|
msgid "Next"
|
445
|
-
msgstr ""
|
443
|
+
msgstr "Successivo"
|
446
444
|
|
447
445
|
msgid "No"
|
448
|
-
msgstr ""
|
446
|
+
msgstr "No"
|
449
447
|
|
450
448
|
msgid "No ARF reports for this policy"
|
451
449
|
msgstr ""
|
@@ -472,7 +470,7 @@ msgid "No compliance reports were found."
|
|
472
470
|
msgstr ""
|
473
471
|
|
474
472
|
msgid "No hosts selected"
|
475
|
-
msgstr ""
|
473
|
+
msgstr "Nessun host selezionato"
|
476
474
|
|
477
475
|
msgid "No hosts were found."
|
478
476
|
msgstr ""
|
@@ -499,7 +497,7 @@ msgid "No valid policy ID provided"
|
|
499
497
|
msgstr ""
|
500
498
|
|
501
499
|
msgid "None"
|
502
|
-
msgstr ""
|
500
|
+
msgstr "Nessuno"
|
503
501
|
|
504
502
|
msgid "None found"
|
505
503
|
msgstr ""
|
@@ -514,10 +512,10 @@ msgid "Not compliant with the policy"
|
|
514
512
|
msgstr ""
|
515
513
|
|
516
514
|
msgid "Nothing to show"
|
517
|
-
msgstr ""
|
515
|
+
msgstr "Niente da visualizzare"
|
518
516
|
|
519
517
|
msgid "Number of Events"
|
520
|
-
msgstr ""
|
518
|
+
msgstr "Numero di eventi"
|
521
519
|
|
522
520
|
msgid "Number of a day in month, note that not all months have same count of days"
|
523
521
|
msgstr ""
|
@@ -535,13 +533,13 @@ msgid "Openscap Proxy"
|
|
535
533
|
msgstr ""
|
536
534
|
|
537
535
|
msgid "Organizations"
|
538
|
-
msgstr ""
|
536
|
+
msgstr "Organizzazioni"
|
539
537
|
|
540
538
|
msgid "Original file name of the XML file"
|
541
539
|
msgstr ""
|
542
540
|
|
543
541
|
msgid "Other"
|
544
|
-
msgstr ""
|
542
|
+
msgstr "Altro"
|
545
543
|
|
546
544
|
msgid "Othered"
|
547
545
|
msgstr ""
|
@@ -558,10 +556,10 @@ msgid "Passed|P"
|
|
558
556
|
msgstr ""
|
559
557
|
|
560
558
|
msgid "Please Confirm"
|
561
|
-
msgstr ""
|
559
|
+
msgstr "Conferma"
|
562
560
|
|
563
561
|
msgid "Policies"
|
564
|
-
msgstr ""
|
562
|
+
msgstr "Regole"
|
565
563
|
|
566
564
|
msgid "Policies with hosts:"
|
567
565
|
msgstr ""
|
@@ -612,22 +610,22 @@ msgid "Proxy failed to send a report from spool to Foreman. This indicates a cor
|
|
612
610
|
msgstr ""
|
613
611
|
|
614
612
|
msgid "Puppet class"
|
615
|
-
msgstr ""
|
613
|
+
msgstr "Classe del puppet"
|
616
614
|
|
617
615
|
msgid "Rationale"
|
618
616
|
msgstr ""
|
619
617
|
|
620
618
|
msgid "References"
|
621
|
-
msgstr ""
|
619
|
+
msgstr "Riferimenti"
|
622
620
|
|
623
621
|
msgid "Remote action:"
|
624
|
-
msgstr ""
|
622
|
+
msgstr "Azione remota:"
|
625
623
|
|
626
624
|
msgid "Report Metrics"
|
627
|
-
msgstr ""
|
625
|
+
msgstr "Metriche notifica"
|
628
626
|
|
629
627
|
msgid "Report Status"
|
630
|
-
msgstr ""
|
628
|
+
msgstr "Stato notifica"
|
631
629
|
|
632
630
|
msgid "Reported At"
|
633
631
|
msgstr ""
|
@@ -636,7 +634,7 @@ msgid "Reported at %s"
|
|
636
634
|
msgstr ""
|
637
635
|
|
638
636
|
msgid "Reports"
|
639
|
-
msgstr ""
|
637
|
+
msgstr "Notifiche"
|
640
638
|
|
641
639
|
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
642
640
|
msgstr ""
|
@@ -645,9 +643,12 @@ msgid "Required %{msg_name} %{class} was not found, please ensure it is imported
|
|
645
643
|
msgstr ""
|
646
644
|
|
647
645
|
msgid "Resource"
|
648
|
-
msgstr ""
|
646
|
+
msgstr "Risorse"
|
649
647
|
|
650
648
|
msgid "Result"
|
649
|
+
msgstr "Risultato"
|
650
|
+
|
651
|
+
msgid "Rule Results"
|
651
652
|
msgstr ""
|
652
653
|
|
653
654
|
msgid "Run OpenSCAP scan"
|
@@ -663,7 +664,7 @@ msgid "SCAP DataStream file"
|
|
663
664
|
msgstr ""
|
664
665
|
|
665
666
|
msgid "SCAP content"
|
666
|
-
msgstr ""
|
667
|
+
msgstr "Contenuto di SCAP"
|
667
668
|
|
668
669
|
msgid "SCAP content name"
|
669
670
|
msgstr ""
|
@@ -678,10 +679,10 @@ msgid "Scap Contents"
|
|
678
679
|
msgstr ""
|
679
680
|
|
680
681
|
msgid "Schedule"
|
681
|
-
msgstr ""
|
682
|
+
msgstr "Programmazione"
|
682
683
|
|
683
684
|
msgid "Select Action"
|
684
|
-
msgstr ""
|
685
|
+
msgstr "Seleziona azione"
|
685
686
|
|
686
687
|
msgid "Select Compliance Policy"
|
687
688
|
msgstr ""
|
@@ -690,10 +691,10 @@ msgid "Select OpenSCAP Proxy"
|
|
690
691
|
msgstr ""
|
691
692
|
|
692
693
|
msgid "Select all items in this page"
|
693
|
-
msgstr ""
|
694
|
+
msgstr "Seleziona tutti gli elementi in questa pagina"
|
694
695
|
|
695
696
|
msgid "Severity"
|
696
|
-
msgstr ""
|
697
|
+
msgstr "Severità"
|
697
698
|
|
698
699
|
msgid "Show Guide"
|
699
700
|
msgstr ""
|
@@ -720,7 +721,7 @@ msgid "Show config information for foreman_scap_client"
|
|
720
721
|
msgstr ""
|
721
722
|
|
722
723
|
msgid "Show log messages:"
|
723
|
-
msgstr ""
|
724
|
+
msgstr "Mostra i messaggi di log:"
|
724
725
|
|
725
726
|
msgid "Smart Class Parameters"
|
726
727
|
msgstr ""
|
@@ -729,19 +730,19 @@ msgid "Something went wrong while selecting compliance reports - %s"
|
|
729
730
|
msgstr ""
|
730
731
|
|
731
732
|
msgid "Something went wrong while selecting hosts - %s"
|
732
|
-
msgstr ""
|
733
|
+
msgstr "Si è verificato un errore durante la selezione degli host - %s"
|
733
734
|
|
734
735
|
msgid "Spool errors"
|
735
736
|
msgstr ""
|
736
737
|
|
737
738
|
msgid "Status chart"
|
738
|
-
msgstr ""
|
739
|
+
msgstr "Grafico stato"
|
739
740
|
|
740
741
|
msgid "Status table"
|
741
|
-
msgstr ""
|
742
|
+
msgstr "Tabella stato"
|
742
743
|
|
743
744
|
msgid "Submit"
|
744
|
-
msgstr ""
|
745
|
+
msgstr "Invia"
|
745
746
|
|
746
747
|
msgid "Successfully deleted %s compliance reports"
|
747
748
|
msgstr ""
|
@@ -797,7 +798,7 @@ msgid "This profile will be used to override the one from scap content"
|
|
797
798
|
msgstr ""
|
798
799
|
|
799
800
|
msgid "Total"
|
800
|
-
msgstr ""
|
801
|
+
msgstr "Totale"
|
801
802
|
|
802
803
|
msgid "Total hosts with policy: %s"
|
803
804
|
msgstr ""
|
@@ -868,7 +869,7 @@ msgid "View full report"
|
|
868
869
|
msgstr ""
|
869
870
|
|
870
871
|
msgid "XCCDF Profile"
|
871
|
-
msgstr ""
|
872
|
+
msgstr "Profilo XCCDF"
|
872
873
|
|
873
874
|
msgid "XCCDF Profile in Tailoring File"
|
874
875
|
msgstr ""
|
@@ -880,7 +881,7 @@ msgid "XML containing tailoring file"
|
|
880
881
|
msgstr ""
|
881
882
|
|
882
883
|
msgid "Yes"
|
883
|
-
msgstr ""
|
884
|
+
msgstr "Sì"
|
884
885
|
|
885
886
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
886
887
|
msgstr ""
|
@@ -904,7 +905,7 @@ msgid "does not have the selected SCAP content profile"
|
|
904
905
|
msgstr ""
|
905
906
|
|
906
907
|
msgid "invalid type %s"
|
907
|
-
msgstr ""
|
908
|
+
msgstr "tipo di %s non valido"
|
908
909
|
|
909
910
|
msgid "is not a valid value"
|
910
911
|
msgstr ""
|
@@ -913,7 +914,7 @@ msgid "is not included in SCAP_RESULT"
|
|
913
914
|
msgstr ""
|
914
915
|
|
915
916
|
msgid "items selected. Uncheck to Clear"
|
916
|
-
msgstr ""
|
917
|
+
msgstr "oggetti selezionati. Deselezionare per annullare"
|
917
918
|
|
918
919
|
msgid "must be between 1 and 31"
|
919
920
|
msgstr ""
|