foreman_openscap 0.8.3 → 0.8.4

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.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/compliance/arf_reports_controller.rb +15 -6
  3. data/app/controllers/api/v2/compliance/policies_controller.rb +4 -2
  4. data/app/controllers/api/v2/compliance/scap_contents_controller.rb +3 -2
  5. data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +3 -2
  6. data/app/controllers/arf_reports_controller.rb +4 -4
  7. data/app/controllers/policies_controller.rb +6 -5
  8. data/app/controllers/scap_contents_controller.rb +3 -3
  9. data/app/helpers/arf_report_dashboard_helper.rb +1 -1
  10. data/app/helpers/arf_reports_helper.rb +8 -8
  11. data/app/helpers/compliance_dashboard_helper.rb +0 -2
  12. data/app/helpers/compliance_hosts_helper.rb +7 -8
  13. data/app/helpers/policies_helper.rb +18 -18
  14. data/app/helpers/policy_dashboard_helper.rb +3 -3
  15. data/app/lib/proxy_api/available_proxy.rb +2 -2
  16. data/app/lib/proxy_api/openscap.rb +1 -1
  17. data/app/mailers/foreman_openscap/policy_mailer.rb +0 -2
  18. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +7 -7
  19. data/app/models/concerns/foreman_openscap/data_stream_content.rb +1 -1
  20. data/app/models/concerns/foreman_openscap/host_extensions.rb +16 -6
  21. data/app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb +1 -1
  22. data/app/models/foreman_openscap/arf_report.rb +5 -5
  23. data/app/models/foreman_openscap/policy.rb +6 -6
  24. data/app/models/foreman_openscap/scap_content.rb +2 -2
  25. data/app/models/foreman_openscap/tailoring_file.rb +1 -1
  26. data/app/services/foreman_openscap/arf_report_status_calculator.rb +0 -1
  27. data/app/services/foreman_openscap/host_report_dashboard/data.rb +2 -3
  28. data/app/services/foreman_openscap/openscap_proxy_version_check.rb +0 -1
  29. data/app/services/foreman_openscap/policy_dashboard/data.rb +7 -6
  30. data/app/services/foreman_openscap/report_dashboard/data.rb +1 -0
  31. data/app/views/api/v2/compliance/common/_loc.json.rabl +1 -1
  32. data/app/views/api/v2/compliance/common/_org.json.rabl +1 -1
  33. data/app/views/api/v2/compliance/policies/base.json.rabl +1 -1
  34. data/app/views/arf_reports/_list.html.erb +1 -1
  35. data/app/views/arf_reports/delete_multiple.html.erb +1 -1
  36. data/app/views/arf_reports/welcome.html.erb +12 -0
  37. data/app/views/compliance_hosts/show.html.erb +3 -1
  38. data/app/views/policy_dashboard/_policy_reports.html.erb +1 -1
  39. data/app/views/scap_contents/_list.html.erb +1 -1
  40. data/app/views/smart_proxies/_openscap_spool.html.erb +1 -1
  41. data/app/views/tailoring_files/_list.html.erb +1 -1
  42. data/config/routes.rb +9 -11
  43. data/db/migrate/20141015115511_add_arf_report_unique_constraint.rb +1 -1
  44. data/db/migrate/20141113221054_create_scaptimony_scap_content_profiles.rb +2 -3
  45. data/db/migrate/20141206211151_create_scaptimony_assets_policies.rb +1 -1
  46. data/db/migrate/20150115155947_add_scaptimony_scap_content_digest.rb +1 -1
  47. data/db/migrate/20150821100137_migrate_from_scaptimony.rb +1 -1
  48. data/db/migrate/20150929152345_move_arf_reports_to_reports_table.rb +0 -1
  49. data/db/migrate/20161223153249_add_permissions_to_arf_report.rb +2 -2
  50. data/db/migrate/20171016125613_add_content_title_unique_constraint.foreman_openscap.rb +6 -0
  51. data/lib/foreman_openscap/bulk_upload.rb +1 -1
  52. data/lib/foreman_openscap/engine.rb +54 -56
  53. data/lib/foreman_openscap/version.rb +1 -1
  54. data/lib/tasks/foreman_openscap_tasks.rake +11 -2
  55. data/locale/de/foreman_openscap.po +52 -13
  56. data/locale/en_GB/foreman_openscap.po +52 -13
  57. data/locale/es/foreman_openscap.po +52 -13
  58. data/locale/foreman_openscap.pot +140 -90
  59. data/locale/fr/foreman_openscap.po +52 -13
  60. data/locale/gl/foreman_openscap.po +52 -13
  61. data/locale/it/foreman_openscap.po +52 -13
  62. data/locale/ja/foreman_openscap.po +52 -13
  63. data/locale/ko/foreman_openscap.po +52 -13
  64. data/locale/pt_BR/foreman_openscap.po +52 -13
  65. data/locale/ru/foreman_openscap.po +52 -13
  66. data/locale/sv_SE/foreman_openscap.po +52 -13
  67. data/locale/zh_CN/foreman_openscap.po +52 -13
  68. data/locale/zh_TW/foreman_openscap.po +52 -13
  69. data/test/factories/arf_report_factory.rb +1 -1
  70. data/test/factories/asset_factory.rb +2 -2
  71. data/test/factories/compliance_host_factory.rb +2 -2
  72. data/test/factories/compliance_log_factory.rb +1 -1
  73. data/test/factories/policy_arf_report_factory.rb +1 -1
  74. data/test/factories/policy_factory.rb +3 -3
  75. data/test/factories/scap_content_related.rb +2 -2
  76. data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +28 -9
  77. data/test/functional/api/v2/compliance/policies_controller_test.rb +16 -16
  78. data/test/functional/api/v2/compliance/scap_contents_controller_test.rb +8 -9
  79. data/test/functional/api/v2/compliance/tailoring_files_controller_test.rb +10 -11
  80. data/test/functional/arf_reports_controller_test.rb +4 -4
  81. data/test/functional/openscap_proxies_controller_test.rb +5 -3
  82. data/test/functional/tailoring_files_controller_test.rb +1 -1
  83. data/test/test_plugin_helper.rb +7 -7
  84. data/test/unit/arf_report_status_calculator_test.rb +0 -1
  85. data/test/unit/arf_report_test.rb +50 -50
  86. data/test/unit/compliance_status_test.rb +13 -13
  87. data/test/unit/concerns/host_extensions_test.rb +38 -22
  88. data/test/unit/concerns/openscap_proxy_extenstions_test.rb +5 -6
  89. data/test/unit/message_cleaner_test.rb +7 -7
  90. data/test/unit/openscap_host_test.rb +13 -13
  91. data/test/unit/policy_mailer_test.rb +12 -12
  92. data/test/unit/policy_test.rb +30 -30
  93. data/test/unit/scap_content_test.rb +4 -4
  94. data/test/unit/services/report_dashboard/data_test.rb +6 -6
  95. data/test/unit/services/tailoring_files_proxy_check_test.rb +1 -1
  96. metadata +4 -2
@@ -18,10 +18,13 @@ msgstr ""
18
18
  " && (n%100<10 || n%100>=20) ? 1 : 2;\n"
19
19
  "\n"
20
20
 
21
- msgid "%s - The following compliance reports are about to be changed"
21
+ msgid " for policy %s"
22
22
  msgstr ""
23
23
 
24
- msgid "%s ago"
24
+ msgid " through %s"
25
+ msgstr ""
26
+
27
+ msgid "%s - The following compliance reports are about to be changed"
25
28
  msgstr ""
26
29
 
27
30
  msgid "%s compliance report by policy"
@@ -50,6 +53,9 @@ msgstr ""
50
53
  msgid "Apply policy to host groups"
51
54
  msgstr ""
52
55
 
56
+ msgid "Apply policy to hosts"
57
+ msgstr ""
58
+
53
59
  msgid "Assign Compliance Policy"
54
60
  msgstr ""
55
61
 
@@ -59,7 +65,10 @@ msgstr ""
59
65
  msgid "Cancel"
60
66
  msgstr ""
61
67
 
62
- msgid "Cannot generate HTML guide for %{scap_content}/%{profile}"
68
+ msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
69
+ msgstr ""
70
+
71
+ msgid "Cannot generate HTML guide, scap content is missing."
63
72
  msgstr ""
64
73
 
65
74
  msgid "Changed"
@@ -101,6 +110,9 @@ msgstr ""
101
110
  msgid "Compliance Status"
102
111
  msgstr ""
103
112
 
113
+ msgid "Compliance policy summary"
114
+ msgstr ""
115
+
104
116
  msgid "Compliance policy: %s"
105
117
  msgstr ""
106
118
 
@@ -152,6 +164,9 @@ msgstr ""
152
164
  msgid "Delete an ARF Report"
153
165
  msgstr ""
154
166
 
167
+ msgid "Delete compliance policy %s with all of its reports?"
168
+ msgstr ""
169
+
155
170
  msgid "Delete compliance policy %s with all the reports?"
156
171
  msgstr ""
157
172
 
@@ -164,6 +179,9 @@ msgstr ""
164
179
  msgid "Delete tailoring file %s?"
165
180
  msgstr ""
166
181
 
182
+ msgid "Deleted policy"
183
+ msgstr ""
184
+
167
185
  msgid "Deletes a Tailoring file"
168
186
  msgstr ""
169
187
 
@@ -173,6 +191,9 @@ msgstr ""
173
191
  msgid "Description"
174
192
  msgstr ""
175
193
 
194
+ msgid "Documentation"
195
+ msgstr ""
196
+
176
197
  msgid "Download"
177
198
  msgstr ""
178
199
 
@@ -227,6 +248,9 @@ msgstr ""
227
248
  msgid "Failed to downloaded ARF report in HTML: %s"
228
249
  msgstr ""
229
250
 
251
+ msgid "Failed to upload Arf Report, no OpenSCAP proxy set for host %s"
252
+ msgstr ""
253
+
230
254
  #. TRANSLATORS: initial character of Failed
231
255
  msgid "Failed|F"
232
256
  msgstr ""
@@ -276,6 +300,9 @@ msgstr ""
276
300
  msgid "Hosts Breakdown"
277
301
  msgstr ""
278
302
 
303
+ msgid "ID of OpenSCAP Proxy"
304
+ msgstr ""
305
+
279
306
  msgid "In Foreman, a compliance policy checklist is defined via %s."
280
307
  msgstr ""
281
308
 
@@ -364,7 +391,10 @@ msgstr ""
364
391
  msgid "No ARF reports for this policy"
365
392
  msgstr ""
366
393
 
367
- msgid "No OpenSCAP proxy found for %{class} with %{id}"
394
+ msgid "No OpenSCAP proxy found for %{class} with id %{id}"
395
+ msgstr ""
396
+
397
+ msgid "No Tailoring file assigned for policy with id %s"
368
398
  msgstr ""
369
399
 
370
400
  msgid "No available proxy to validate. Returned with error: %s"
@@ -385,6 +415,9 @@ msgstr ""
385
415
  msgid "No hosts were found."
386
416
  msgstr ""
387
417
 
418
+ msgid "No proxy found!"
419
+ msgstr ""
420
+
388
421
  msgid "No proxy with OpenSCAP feature is running."
389
422
  msgstr ""
390
423
 
@@ -397,9 +430,6 @@ msgstr ""
397
430
  msgid "No reports available"
398
431
  msgstr ""
399
432
 
400
- msgid "No valid OpenSCAP proxy server found."
401
- msgstr ""
402
-
403
433
  msgid "No valid policy ID provided"
404
434
  msgstr ""
405
435
 
@@ -430,10 +460,13 @@ msgstr ""
430
460
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
431
461
  msgstr ""
432
462
 
433
- msgid "Openscap Proxy"
463
+ msgid "OpenSCAP Proxy"
434
464
  msgstr ""
435
465
 
436
- msgid "Openscap policy summary"
466
+ msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports"
467
+ msgstr ""
468
+
469
+ msgid "Openscap Proxy"
437
470
  msgstr ""
438
471
 
439
472
  msgid "Organizations"
@@ -468,6 +501,9 @@ msgstr ""
468
501
  msgid "Policies with hosts:"
469
502
  msgstr ""
470
503
 
504
+ msgid "Policy"
505
+ msgstr ""
506
+
471
507
  msgid "Policy %s"
472
508
  msgstr ""
473
509
 
@@ -691,9 +727,6 @@ msgstr ""
691
727
  msgid "Unknown Compliance status"
692
728
  msgstr ""
693
729
 
694
- msgid "Unsupported report status format"
695
- msgstr ""
696
-
697
730
  msgid "Update a Policy"
698
731
  msgstr ""
699
732
 
@@ -754,12 +787,18 @@ msgstr ""
754
787
  msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
755
788
  msgstr ""
756
789
 
790
+ msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
791
+ msgstr ""
792
+
757
793
  msgid "does not come from selected tailoring file"
758
794
  msgstr ""
759
795
 
760
796
  msgid "does not consist of 5 parts separated by space"
761
797
  msgstr ""
762
798
 
799
+ msgid "does not have the selected SCAP content profile"
800
+ msgstr ""
801
+
763
802
  msgid "invalid type %s"
764
803
  msgstr ""
765
804
 
@@ -784,5 +823,5 @@ msgstr ""
784
823
  msgid "must have Openscap feature"
785
824
  msgstr ""
786
825
 
787
- msgid "these Complianace reports"
826
+ msgid "these Compliance reports"
788
827
  msgstr ""
@@ -17,10 +17,13 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
18
  "\n"
19
19
 
20
- msgid "%s - The following compliance reports are about to be changed"
20
+ msgid " for policy %s"
21
21
  msgstr ""
22
22
 
23
- msgid "%s ago"
23
+ msgid " through %s"
24
+ msgstr ""
25
+
26
+ msgid "%s - The following compliance reports are about to be changed"
24
27
  msgstr ""
25
28
 
26
29
  msgid "%s compliance report by policy"
@@ -49,6 +52,9 @@ msgstr ""
49
52
  msgid "Apply policy to host groups"
50
53
  msgstr ""
51
54
 
55
+ msgid "Apply policy to hosts"
56
+ msgstr ""
57
+
52
58
  msgid "Assign Compliance Policy"
53
59
  msgstr ""
54
60
 
@@ -58,7 +64,10 @@ msgstr ""
58
64
  msgid "Cancel"
59
65
  msgstr ""
60
66
 
61
- msgid "Cannot generate HTML guide for %{scap_content}/%{profile}"
67
+ msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
68
+ msgstr ""
69
+
70
+ msgid "Cannot generate HTML guide, scap content is missing."
62
71
  msgstr ""
63
72
 
64
73
  msgid "Changed"
@@ -100,6 +109,9 @@ msgstr ""
100
109
  msgid "Compliance Status"
101
110
  msgstr ""
102
111
 
112
+ msgid "Compliance policy summary"
113
+ msgstr ""
114
+
103
115
  msgid "Compliance policy: %s"
104
116
  msgstr ""
105
117
 
@@ -151,6 +163,9 @@ msgstr ""
151
163
  msgid "Delete an ARF Report"
152
164
  msgstr ""
153
165
 
166
+ msgid "Delete compliance policy %s with all of its reports?"
167
+ msgstr ""
168
+
154
169
  msgid "Delete compliance policy %s with all the reports?"
155
170
  msgstr ""
156
171
 
@@ -163,6 +178,9 @@ msgstr ""
163
178
  msgid "Delete tailoring file %s?"
164
179
  msgstr ""
165
180
 
181
+ msgid "Deleted policy"
182
+ msgstr ""
183
+
166
184
  msgid "Deletes a Tailoring file"
167
185
  msgstr ""
168
186
 
@@ -172,6 +190,9 @@ msgstr ""
172
190
  msgid "Description"
173
191
  msgstr ""
174
192
 
193
+ msgid "Documentation"
194
+ msgstr ""
195
+
175
196
  msgid "Download"
176
197
  msgstr ""
177
198
 
@@ -226,6 +247,9 @@ msgstr ""
226
247
  msgid "Failed to downloaded ARF report in HTML: %s"
227
248
  msgstr ""
228
249
 
250
+ msgid "Failed to upload Arf Report, no OpenSCAP proxy set for host %s"
251
+ msgstr ""
252
+
229
253
  #. TRANSLATORS: initial character of Failed
230
254
  msgid "Failed|F"
231
255
  msgstr ""
@@ -275,6 +299,9 @@ msgstr ""
275
299
  msgid "Hosts Breakdown"
276
300
  msgstr ""
277
301
 
302
+ msgid "ID of OpenSCAP Proxy"
303
+ msgstr ""
304
+
278
305
  msgid "In Foreman, a compliance policy checklist is defined via %s."
279
306
  msgstr ""
280
307
 
@@ -363,7 +390,10 @@ msgstr ""
363
390
  msgid "No ARF reports for this policy"
364
391
  msgstr ""
365
392
 
366
- msgid "No OpenSCAP proxy found for %{class} with %{id}"
393
+ msgid "No OpenSCAP proxy found for %{class} with id %{id}"
394
+ msgstr ""
395
+
396
+ msgid "No Tailoring file assigned for policy with id %s"
367
397
  msgstr ""
368
398
 
369
399
  msgid "No available proxy to validate. Returned with error: %s"
@@ -384,6 +414,9 @@ msgstr ""
384
414
  msgid "No hosts were found."
385
415
  msgstr ""
386
416
 
417
+ msgid "No proxy found!"
418
+ msgstr ""
419
+
387
420
  msgid "No proxy with OpenSCAP feature is running."
388
421
  msgstr ""
389
422
 
@@ -396,9 +429,6 @@ msgstr ""
396
429
  msgid "No reports available"
397
430
  msgstr ""
398
431
 
399
- msgid "No valid OpenSCAP proxy server found."
400
- msgstr ""
401
-
402
432
  msgid "No valid policy ID provided"
403
433
  msgstr ""
404
434
 
@@ -429,10 +459,13 @@ msgstr ""
429
459
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
430
460
  msgstr ""
431
461
 
432
- msgid "Openscap Proxy"
462
+ msgid "OpenSCAP Proxy"
433
463
  msgstr ""
434
464
 
435
- msgid "Openscap policy summary"
465
+ msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports"
466
+ msgstr ""
467
+
468
+ msgid "Openscap Proxy"
436
469
  msgstr ""
437
470
 
438
471
  msgid "Organizations"
@@ -467,6 +500,9 @@ msgstr ""
467
500
  msgid "Policies with hosts:"
468
501
  msgstr ""
469
502
 
503
+ msgid "Policy"
504
+ msgstr ""
505
+
470
506
  msgid "Policy %s"
471
507
  msgstr ""
472
508
 
@@ -690,9 +726,6 @@ msgstr ""
690
726
  msgid "Unknown Compliance status"
691
727
  msgstr ""
692
728
 
693
- msgid "Unsupported report status format"
694
- msgstr ""
695
-
696
729
  msgid "Update a Policy"
697
730
  msgstr ""
698
731
 
@@ -753,12 +786,18 @@ msgstr ""
753
786
  msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
754
787
  msgstr ""
755
788
 
789
+ msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
790
+ msgstr ""
791
+
756
792
  msgid "does not come from selected tailoring file"
757
793
  msgstr ""
758
794
 
759
795
  msgid "does not consist of 5 parts separated by space"
760
796
  msgstr ""
761
797
 
798
+ msgid "does not have the selected SCAP content profile"
799
+ msgstr ""
800
+
762
801
  msgid "invalid type %s"
763
802
  msgstr ""
764
803
 
@@ -783,5 +822,5 @@ msgstr ""
783
822
  msgid "must have Openscap feature"
784
823
  msgstr ""
785
824
 
786
- msgid "these Complianace reports"
825
+ msgid "these Compliance reports"
787
826
  msgstr ""
@@ -17,10 +17,13 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
  "\n"
19
19
 
20
- msgid "%s - The following compliance reports are about to be changed"
20
+ msgid " for policy %s"
21
21
  msgstr ""
22
22
 
23
- msgid "%s ago"
23
+ msgid " through %s"
24
+ msgstr ""
25
+
26
+ msgid "%s - The following compliance reports are about to be changed"
24
27
  msgstr ""
25
28
 
26
29
  msgid "%s compliance report by policy"
@@ -49,6 +52,9 @@ msgstr ""
49
52
  msgid "Apply policy to host groups"
50
53
  msgstr ""
51
54
 
55
+ msgid "Apply policy to hosts"
56
+ msgstr ""
57
+
52
58
  msgid "Assign Compliance Policy"
53
59
  msgstr ""
54
60
 
@@ -58,7 +64,10 @@ msgstr ""
58
64
  msgid "Cancel"
59
65
  msgstr ""
60
66
 
61
- msgid "Cannot generate HTML guide for %{scap_content}/%{profile}"
67
+ msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
68
+ msgstr ""
69
+
70
+ msgid "Cannot generate HTML guide, scap content is missing."
62
71
  msgstr ""
63
72
 
64
73
  msgid "Changed"
@@ -100,6 +109,9 @@ msgstr ""
100
109
  msgid "Compliance Status"
101
110
  msgstr ""
102
111
 
112
+ msgid "Compliance policy summary"
113
+ msgstr ""
114
+
103
115
  msgid "Compliance policy: %s"
104
116
  msgstr ""
105
117
 
@@ -151,6 +163,9 @@ msgstr ""
151
163
  msgid "Delete an ARF Report"
152
164
  msgstr ""
153
165
 
166
+ msgid "Delete compliance policy %s with all of its reports?"
167
+ msgstr ""
168
+
154
169
  msgid "Delete compliance policy %s with all the reports?"
155
170
  msgstr ""
156
171
 
@@ -163,6 +178,9 @@ msgstr ""
163
178
  msgid "Delete tailoring file %s?"
164
179
  msgstr ""
165
180
 
181
+ msgid "Deleted policy"
182
+ msgstr ""
183
+
166
184
  msgid "Deletes a Tailoring file"
167
185
  msgstr ""
168
186
 
@@ -172,6 +190,9 @@ msgstr ""
172
190
  msgid "Description"
173
191
  msgstr ""
174
192
 
193
+ msgid "Documentation"
194
+ msgstr ""
195
+
175
196
  msgid "Download"
176
197
  msgstr ""
177
198
 
@@ -226,6 +247,9 @@ msgstr ""
226
247
  msgid "Failed to downloaded ARF report in HTML: %s"
227
248
  msgstr ""
228
249
 
250
+ msgid "Failed to upload Arf Report, no OpenSCAP proxy set for host %s"
251
+ msgstr ""
252
+
229
253
  #. TRANSLATORS: initial character of Failed
230
254
  msgid "Failed|F"
231
255
  msgstr ""
@@ -275,6 +299,9 @@ msgstr ""
275
299
  msgid "Hosts Breakdown"
276
300
  msgstr ""
277
301
 
302
+ msgid "ID of OpenSCAP Proxy"
303
+ msgstr ""
304
+
278
305
  msgid "In Foreman, a compliance policy checklist is defined via %s."
279
306
  msgstr ""
280
307
 
@@ -363,7 +390,10 @@ msgstr ""
363
390
  msgid "No ARF reports for this policy"
364
391
  msgstr ""
365
392
 
366
- msgid "No OpenSCAP proxy found for %{class} with %{id}"
393
+ msgid "No OpenSCAP proxy found for %{class} with id %{id}"
394
+ msgstr ""
395
+
396
+ msgid "No Tailoring file assigned for policy with id %s"
367
397
  msgstr ""
368
398
 
369
399
  msgid "No available proxy to validate. Returned with error: %s"
@@ -384,6 +414,9 @@ msgstr ""
384
414
  msgid "No hosts were found."
385
415
  msgstr ""
386
416
 
417
+ msgid "No proxy found!"
418
+ msgstr ""
419
+
387
420
  msgid "No proxy with OpenSCAP feature is running."
388
421
  msgstr ""
389
422
 
@@ -396,9 +429,6 @@ msgstr ""
396
429
  msgid "No reports available"
397
430
  msgstr ""
398
431
 
399
- msgid "No valid OpenSCAP proxy server found."
400
- msgstr ""
401
-
402
432
  msgid "No valid policy ID provided"
403
433
  msgstr ""
404
434
 
@@ -429,10 +459,13 @@ msgstr ""
429
459
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
430
460
  msgstr ""
431
461
 
432
- msgid "Openscap Proxy"
462
+ msgid "OpenSCAP Proxy"
433
463
  msgstr ""
434
464
 
435
- msgid "Openscap policy summary"
465
+ msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports"
466
+ msgstr ""
467
+
468
+ msgid "Openscap Proxy"
436
469
  msgstr ""
437
470
 
438
471
  msgid "Organizations"
@@ -467,6 +500,9 @@ msgstr ""
467
500
  msgid "Policies with hosts:"
468
501
  msgstr ""
469
502
 
503
+ msgid "Policy"
504
+ msgstr ""
505
+
470
506
  msgid "Policy %s"
471
507
  msgstr ""
472
508
 
@@ -690,9 +726,6 @@ msgstr ""
690
726
  msgid "Unknown Compliance status"
691
727
  msgstr ""
692
728
 
693
- msgid "Unsupported report status format"
694
- msgstr ""
695
-
696
729
  msgid "Update a Policy"
697
730
  msgstr ""
698
731
 
@@ -753,12 +786,18 @@ msgstr ""
753
786
  msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
754
787
  msgstr ""
755
788
 
789
+ msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
790
+ msgstr ""
791
+
756
792
  msgid "does not come from selected tailoring file"
757
793
  msgstr ""
758
794
 
759
795
  msgid "does not consist of 5 parts separated by space"
760
796
  msgstr ""
761
797
 
798
+ msgid "does not have the selected SCAP content profile"
799
+ msgstr ""
800
+
762
801
  msgid "invalid type %s"
763
802
  msgstr ""
764
803
 
@@ -783,5 +822,5 @@ msgstr ""
783
822
  msgid "must have Openscap feature"
784
823
  msgstr ""
785
824
 
786
- msgid "these Complianace reports"
825
+ msgid "these Compliance reports"
787
826
  msgstr ""