foreman_openscap 7.1.1 → 8.0.0
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 +4 -4
- data/app/assets/javascripts/foreman_openscap/locale/cs_CZ/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/de/foreman_openscap.js +907 -814
- data/app/assets/javascripts/foreman_openscap/locale/en/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/en_GB/foreman_openscap.js +549 -453
- data/app/assets/javascripts/foreman_openscap/locale/es/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/fr/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/gl/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/it/foreman_openscap.js +601 -505
- data/app/assets/javascripts/foreman_openscap/locale/ja/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/ka/foreman_openscap.js +96 -0
- data/app/assets/javascripts/foreman_openscap/locale/ko/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/locale/pt_BR/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/ru/foreman_openscap.js +706 -613
- data/app/assets/javascripts/foreman_openscap/locale/sv_SE/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/zh_CN/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/zh_TW/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/reports.js +5 -0
- data/app/controllers/arf_reports_controller.rb +23 -2
- data/app/helpers/arf_reports_helper.rb +17 -4
- data/app/models/foreman_openscap/arf_report.rb +11 -2
- data/app/views/arf_reports/_output.html.erb +5 -1
- data/app/views/job_templates/run_openscap_remediation_-_ansible_default.erb +27 -0
- data/app/views/job_templates/run_openscap_remediation_-_script_default.erb +24 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20230912122310_add_fixes_to_message.rb +5 -0
- data/lib/foreman_openscap/engine.rb +18 -2
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +5 -16
- data/locale/cs_CZ/foreman_openscap.edit.po +145 -17
- data/locale/cs_CZ/foreman_openscap.po +96 -0
- data/locale/de/foreman_openscap.edit.po +248 -282
- data/locale/de/foreman_openscap.po +96 -0
- data/locale/en/foreman_openscap.edit.po +145 -17
- data/locale/en/foreman_openscap.po +96 -0
- data/locale/en_GB/foreman_openscap.edit.po +145 -17
- data/locale/en_GB/foreman_openscap.po +96 -0
- data/locale/es/foreman_openscap.edit.po +241 -279
- data/locale/es/foreman_openscap.po +96 -0
- data/locale/foreman_openscap.pot +164 -12
- data/locale/fr/foreman_openscap.edit.po +330 -363
- data/locale/fr/foreman_openscap.po +96 -0
- data/locale/gl/foreman_openscap.edit.po +145 -17
- data/locale/gl/foreman_openscap.po +96 -0
- data/locale/it/foreman_openscap.edit.po +145 -17
- data/locale/it/foreman_openscap.po +96 -0
- data/locale/ja/foreman_openscap.edit.po +314 -347
- data/locale/ja/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.edit.po +289 -328
- data/locale/ka/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.po.time_stamp +0 -0
- data/locale/ko/foreman_openscap.edit.po +146 -18
- data/locale/ko/foreman_openscap.po +96 -0
- data/locale/pt_BR/foreman_openscap.edit.po +247 -279
- data/locale/pt_BR/foreman_openscap.po +96 -0
- data/locale/ru/foreman_openscap.edit.po +146 -18
- data/locale/ru/foreman_openscap.po +96 -0
- data/locale/sv_SE/foreman_openscap.edit.po +145 -17
- data/locale/sv_SE/foreman_openscap.po +96 -0
- data/locale/zh_CN/foreman_openscap.edit.po +314 -347
- data/locale/zh_CN/foreman_openscap.po +96 -0
- data/locale/zh_TW/foreman_openscap.edit.po +146 -18
- data/locale/zh_TW/foreman_openscap.po +96 -0
- data/webpack/components/EmptyState.js +6 -2
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationSelectors.js +16 -0
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationWizardContext.js +4 -0
- data/webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js +38 -0
- data/webpack/components/OpenscapRemediationWizard/WizardHeader.js +43 -0
- data/webpack/components/OpenscapRemediationWizard/constants.js +14 -0
- data/webpack/components/OpenscapRemediationWizard/helpers.js +33 -0
- data/webpack/components/OpenscapRemediationWizard/index.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/Finish.js +131 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js +217 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js +176 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.scss +4 -0
- data/webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/index.js +4 -0
- data/webpack/index.js +8 -3
- data/webpack/testHelper.js +6 -5
- metadata +20 -3
|
@@ -1,22 +1,23 @@
|
|
|
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_openscap package.
|
|
4
|
-
#
|
|
4
|
+
#
|
|
5
5
|
# Translators:
|
|
6
6
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version:
|
|
9
|
+
"Project-Id-Version: Foreman\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2023-11-28 22:29+0100\n"
|
|
12
11
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
13
12
|
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2016\n"
|
|
14
|
-
"Language-Team: Portuguese (Brazil) (http://
|
|
13
|
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
|
14
|
+
"anguage/pt_BR/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
16
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
18
18
|
"Language: pt_BR\n"
|
|
19
|
-
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n %
|
|
19
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
|
|
20
|
+
"0 == 0 ? 1 : 2;\n"
|
|
20
21
|
|
|
21
22
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:25
|
|
22
23
|
msgid "List ARF reports"
|
|
@@ -46,15 +47,12 @@ msgstr "Fazer download do relatório ARF em HTML"
|
|
|
46
47
|
msgid "Policy with id %s not found."
|
|
47
48
|
msgstr "Política com ID %s não encontrada."
|
|
48
49
|
|
|
49
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103
|
|
50
|
-
#: ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
50
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103 ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
51
51
|
msgid "Could not find host identified by: %s"
|
|
52
52
|
msgstr "Não foi possível encontrar o host identificado por: %s"
|
|
53
53
|
|
|
54
54
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:108
|
|
55
|
-
msgid ""
|
|
56
|
-
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params "
|
|
57
|
-
"when uploading for %s and host is missing openscap_proxy"
|
|
55
|
+
msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
|
|
58
56
|
msgstr "Falha ao carregar relatório ARF. O nome do proxy OpenSCAP ou URL não foi encontrado nos parâmetros ao fazer upload para %s e o host não tem openscap_proxy"
|
|
59
57
|
|
|
60
58
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:120
|
|
@@ -293,8 +291,7 @@ msgstr "Nome do conteúdo SCAP"
|
|
|
293
291
|
msgid "XML containing SCAP content"
|
|
294
292
|
msgstr "XML contendo conteúdo SCAP"
|
|
295
293
|
|
|
296
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42
|
|
297
|
-
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
294
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
298
295
|
msgid "Original file name of the XML file"
|
|
299
296
|
msgstr "Nome do arquivo original do arquivo XML"
|
|
300
297
|
|
|
@@ -327,9 +324,7 @@ msgid "Directory to upload when using \"directory\" upload type"
|
|
|
327
324
|
msgstr "Diretório para carregar ao usar o tipo \"diretório\" de carregamento"
|
|
328
325
|
|
|
329
326
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:86
|
|
330
|
-
msgid ""
|
|
331
|
-
"Please specify import type, received: %{received}, expected one of: "
|
|
332
|
-
"%{expected}"
|
|
327
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
333
328
|
msgstr "Favor especificar o tipo de importação, recebido: %{received}, espera-se um de: % % de{expected}"
|
|
334
329
|
|
|
335
330
|
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
|
|
@@ -377,8 +372,7 @@ msgid "Successfully deleted ARF report."
|
|
|
377
372
|
msgstr "Relatório ARF excluído com êxito."
|
|
378
373
|
|
|
379
374
|
#: ../app/controllers/arf_reports_controller.rb:57
|
|
380
|
-
msgid ""
|
|
381
|
-
"Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
375
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
382
376
|
msgstr "Falha ao excluir o relatório ARF para o host %{host_name} relatado em %{reported_at}"
|
|
383
377
|
|
|
384
378
|
#: ../app/controllers/arf_reports_controller.rb:67
|
|
@@ -389,15 +383,15 @@ msgstr "Falha ao remover relatórios de conformidade %s"
|
|
|
389
383
|
msgid "Successfully deleted %s compliance reports"
|
|
390
384
|
msgstr "Relatórios de conformidade %s removidos com êxito"
|
|
391
385
|
|
|
392
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
386
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
393
387
|
msgid "No compliance reports were found."
|
|
394
388
|
msgstr "Nenhum relatório de conformidade foi encontrado."
|
|
395
389
|
|
|
396
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
390
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
397
391
|
msgid "No compliance reports selected"
|
|
398
392
|
msgstr "Nenhum relatório de conformidade selecionado"
|
|
399
393
|
|
|
400
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
394
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
401
395
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
402
396
|
msgstr "Algo deu errado ao selecionar os relatórios de conformidade - %s"
|
|
403
397
|
|
|
@@ -410,9 +404,7 @@ msgid "The identifier of the host"
|
|
|
410
404
|
msgstr "O identificador do host"
|
|
411
405
|
|
|
412
406
|
#: ../app/controllers/concerns/foreman_openscap/hosts_and_hostgroups_controller_extensions.rb:10
|
|
413
|
-
msgid ""
|
|
414
|
-
"The %s proxy does not have Openscap feature enabled. Either set correct "
|
|
415
|
-
"OpenSCAP Proxy or unset it."
|
|
407
|
+
msgid "The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it."
|
|
416
408
|
msgstr ""
|
|
417
409
|
|
|
418
410
|
#: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
|
|
@@ -441,7 +433,7 @@ msgstr "Não foi fornecida uma ID de política válida"
|
|
|
441
433
|
|
|
442
434
|
#: ../app/controllers/policies_controller.rb:129
|
|
443
435
|
msgid "No hosts were found with that id, name or query filter"
|
|
444
|
-
msgstr "
|
|
436
|
+
msgstr ""
|
|
445
437
|
|
|
446
438
|
#: ../app/controllers/policies_controller.rb:134
|
|
447
439
|
msgid "No hosts selected"
|
|
@@ -451,28 +443,15 @@ msgstr "Não foi selecionado nenhum host"
|
|
|
451
443
|
msgid "Something went wrong while selecting hosts - %s"
|
|
452
444
|
msgstr "Ocorreu um erro ao selecionar hosts - %s"
|
|
453
445
|
|
|
454
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
455
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:8
|
|
456
|
-
#: ../app/helpers/compliance_hosts_helper.rb:15
|
|
457
|
-
#: ../app/views/arf_reports/_list.html.erb:11
|
|
458
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
459
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
446
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:16 ../app/helpers/compliance_dashboard_helper.rb:8 ../app/helpers/compliance_hosts_helper.rb:15 ../app/views/arf_reports/_list.html.erb:11 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11 ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
460
447
|
msgid "Failed"
|
|
461
448
|
msgstr "Falhou"
|
|
462
449
|
|
|
463
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:17
|
|
464
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:6
|
|
465
|
-
#: ../app/helpers/compliance_hosts_helper.rb:14
|
|
466
|
-
#: ../app/views/arf_reports/_list.html.erb:10
|
|
467
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
468
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
450
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:17 ../app/helpers/compliance_dashboard_helper.rb:6 ../app/helpers/compliance_hosts_helper.rb:14 ../app/views/arf_reports/_list.html.erb:10 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
469
451
|
msgid "Passed"
|
|
470
452
|
msgstr "Aprovado(s)"
|
|
471
453
|
|
|
472
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:18
|
|
473
|
-
#: ../app/views/arf_reports/_list.html.erb:12
|
|
474
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
475
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
454
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:18 ../app/views/arf_reports/_list.html.erb:12 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14 ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
476
455
|
msgid "Other"
|
|
477
456
|
msgstr "Outros"
|
|
478
457
|
|
|
@@ -500,10 +479,7 @@ msgstr "Reprovado(s) e Outros"
|
|
|
500
479
|
msgid "Failed only"
|
|
501
480
|
msgstr "Somente reprovado(s)"
|
|
502
481
|
|
|
503
|
-
#: ../app/helpers/arf_reports_helper.rb:20
|
|
504
|
-
#: ../app/views/arf_reports/index.html.erb:1
|
|
505
|
-
#: ../app/views/arf_reports/welcome.html.erb:1
|
|
506
|
-
#: ../app/views/arf_reports/welcome.html.erb:7
|
|
482
|
+
#: ../app/helpers/arf_reports_helper.rb:20 ../app/views/arf_reports/index.html.erb:1 ../app/views/arf_reports/welcome.html.erb:1 ../app/views/arf_reports/welcome.html.erb:7
|
|
507
483
|
msgid "Compliance Reports"
|
|
508
484
|
msgstr "Relatórios de Conformidade"
|
|
509
485
|
|
|
@@ -535,27 +511,27 @@ msgstr " para política %s"
|
|
|
535
511
|
msgid " through %s"
|
|
536
512
|
msgstr " através de %s"
|
|
537
513
|
|
|
538
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
514
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
539
515
|
msgid "Hosts failing this rule"
|
|
540
516
|
msgstr "Hosts causando falhas nesta regra"
|
|
541
517
|
|
|
542
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
518
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
543
519
|
msgid "Hosts passing this rule"
|
|
544
520
|
msgstr "Hosts transmitindo esta regra"
|
|
545
521
|
|
|
546
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
522
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
547
523
|
msgid "Hosts othering this rule"
|
|
548
524
|
msgstr "Hosts diferenciando esta regra"
|
|
549
525
|
|
|
550
|
-
#: ../app/helpers/
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
526
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
527
|
+
msgid "Remediation"
|
|
528
|
+
msgstr ""
|
|
529
|
+
|
|
530
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:3 ../app/views/arf_reports/_list.html.erb:6 ../app/views/arf_reports/delete_multiple.html.erb:7 ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
554
531
|
msgid "Host"
|
|
555
532
|
msgstr "Máquina"
|
|
556
533
|
|
|
557
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:4
|
|
558
|
-
#: ../app/views/arf_reports/_list.html.erb:8
|
|
534
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
|
|
559
535
|
msgid "Policy"
|
|
560
536
|
msgstr "Política"
|
|
561
537
|
|
|
@@ -574,8 +550,7 @@ msgstr "Reprovado|R"
|
|
|
574
550
|
msgid "Othered|O"
|
|
575
551
|
msgstr "Outros|O"
|
|
576
552
|
|
|
577
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:10
|
|
578
|
-
#: ../app/helpers/compliance_hosts_helper.rb:16
|
|
553
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
|
|
579
554
|
msgid "Othered"
|
|
580
555
|
msgstr "Outros"
|
|
581
556
|
|
|
@@ -591,10 +566,7 @@ msgstr "Cancelar Atribuição da Política de Conformidade"
|
|
|
591
566
|
msgid "Change OpenSCAP Proxy"
|
|
592
567
|
msgstr "Alterar proxy OpenSCAP"
|
|
593
568
|
|
|
594
|
-
#: ../app/helpers/compliance_hosts_helper.rb:37
|
|
595
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
596
|
-
#: ../lib/foreman_openscap/engine.rb:159
|
|
597
|
-
#: ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
569
|
+
#: ../app/helpers/compliance_hosts_helper.rb:37 ../app/models/foreman_openscap/compliance_status.rb:8 ../lib/foreman_openscap/engine.rb:159 ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
598
570
|
msgid "Compliance"
|
|
599
571
|
msgstr "Conformidade"
|
|
600
572
|
|
|
@@ -610,11 +582,7 @@ msgstr "Host removido"
|
|
|
610
582
|
msgid "Choose existing SCAP Content"
|
|
611
583
|
msgstr "Escolha um conteúdo SCAP existente"
|
|
612
584
|
|
|
613
|
-
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63
|
|
614
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
615
|
-
#: ../app/views/policies/_form.html.erb:10
|
|
616
|
-
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
617
|
-
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
585
|
+
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63 ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
|
|
618
586
|
msgid "SCAP Content"
|
|
619
587
|
msgstr "Conteúdo SCAP"
|
|
620
588
|
|
|
@@ -642,18 +610,11 @@ msgstr "Perfil XCCDF no arquivo de personalização"
|
|
|
642
610
|
msgid "This profile will be used to override the one from scap content"
|
|
643
611
|
msgstr "Esse perfil será usado para substituir o do conteúdo SCAP"
|
|
644
612
|
|
|
645
|
-
#: ../app/helpers/policies_helper.rb:111
|
|
646
|
-
#: ../app/views/arf_reports/_list.html.erb:54
|
|
647
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116
|
|
648
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
613
|
+
#: ../app/helpers/policies_helper.rb:111 ../app/views/arf_reports/_list.html.erb:54 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
649
614
|
msgid "Submit"
|
|
650
615
|
msgstr "Enviar"
|
|
651
616
|
|
|
652
|
-
#: ../app/helpers/policies_helper.rb:115
|
|
653
|
-
#: ../app/views/arf_reports/_list.html.erb:53
|
|
654
|
-
#: ../webpack/components/ConfirmModal.js:27
|
|
655
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121
|
|
656
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
617
|
+
#: ../app/helpers/policies_helper.rb:115 ../app/views/arf_reports/_list.html.erb:53 ../webpack/components/ConfirmModal.js:27 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
657
618
|
msgid "Cancel"
|
|
658
619
|
msgstr "Cancelar"
|
|
659
620
|
|
|
@@ -665,8 +626,7 @@ msgstr "Hosts compatíveis "
|
|
|
665
626
|
msgid "Incompliant hosts"
|
|
666
627
|
msgstr "Hosts não compatíveis"
|
|
667
628
|
|
|
668
|
-
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
669
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
629
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:24
|
|
670
630
|
msgid "Inconclusive"
|
|
671
631
|
msgstr "Inconclusivo"
|
|
672
632
|
|
|
@@ -679,9 +639,7 @@ msgid "Host is assigned to policy"
|
|
|
679
639
|
msgstr "Host atribuído a política"
|
|
680
640
|
|
|
681
641
|
#: ../app/helpers/policy_dashboard_helper.rb:44
|
|
682
|
-
msgid ""
|
|
683
|
-
"Host is not assigned to policy but reports were found. You may want to "
|
|
684
|
-
"delete the reports or assign the policy again."
|
|
642
|
+
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
685
643
|
msgstr "O host não está atribuído à política, mas foram encontrados relatórios. Talvez seja necessário excluir os relatórios ou atribuir à política novamente."
|
|
686
644
|
|
|
687
645
|
#: ../app/helpers/policy_dashboard_helper.rb:52
|
|
@@ -693,14 +651,11 @@ msgid "Total hosts with reports where policy is no longer assigned."
|
|
|
693
651
|
msgstr "Total de hosts com relatórios onde a política não está mais atribuída."
|
|
694
652
|
|
|
695
653
|
#: ../app/lib/proxy_api/openscap.rb:21
|
|
696
|
-
msgid ""
|
|
697
|
-
"Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
654
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
698
655
|
msgstr "Solicitação expirou. Tente aumentar as configurações -> proxy_request_timeout"
|
|
699
656
|
|
|
700
657
|
#: ../app/lib/proxy_api/openscap.rb:24
|
|
701
|
-
msgid ""
|
|
702
|
-
"Could not validate %s. Please make sure you have appropriate proxy version "
|
|
703
|
-
"to use this functionality"
|
|
658
|
+
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
704
659
|
msgstr "Não foi possível validar %s. Certifique-se de que você tem a versão adequada de proxy para usar essa função"
|
|
705
660
|
|
|
706
661
|
#: ../app/lib/proxy_api/openscap.rb:27
|
|
@@ -735,9 +690,7 @@ msgstr "Nenhum proxy OpenSCAP encontrado para {class} com ID {id}"
|
|
|
735
690
|
msgid "does not consist of 5 parts separated by space"
|
|
736
691
|
msgstr "não consiste em cinco partes separadas por espaço"
|
|
737
692
|
|
|
738
|
-
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21
|
|
739
|
-
#: ../app/models/foreman_openscap/oval_policy.rb:14
|
|
740
|
-
#: ../app/models/foreman_openscap/policy.rb:34
|
|
693
|
+
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21 ../app/models/foreman_openscap/oval_policy.rb:14 ../app/models/foreman_openscap/policy.rb:34
|
|
741
694
|
msgid "is not a valid value"
|
|
742
695
|
msgstr "não é um valor válido"
|
|
743
696
|
|
|
@@ -745,13 +698,11 @@ msgstr "não é um valor válido"
|
|
|
745
698
|
msgid "must be between 1 and 31"
|
|
746
699
|
msgstr "deve estar entre 1 e 31"
|
|
747
700
|
|
|
748
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
749
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
701
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
750
702
|
msgid "Compliant"
|
|
751
703
|
msgstr "Compatível(eis)"
|
|
752
704
|
|
|
753
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:26
|
|
754
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
705
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:26 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
755
706
|
msgid "Incompliant"
|
|
756
707
|
msgstr "Não compatível(eis)"
|
|
757
708
|
|
|
@@ -779,8 +730,7 @@ msgstr "%s vulnerabilidades com o patch disponível encontrado"
|
|
|
779
730
|
msgid "Unknown OVAL status"
|
|
780
731
|
msgstr "Status OVAL desconhecido"
|
|
781
732
|
|
|
782
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
783
|
-
#: ../app/views/policies/_form.html.erb:8
|
|
733
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:8
|
|
784
734
|
msgid "Deployment Options"
|
|
785
735
|
msgstr "Opções de implantação"
|
|
786
736
|
|
|
@@ -788,29 +738,19 @@ msgstr "Opções de implantação"
|
|
|
788
738
|
msgid "Policy Attributes"
|
|
789
739
|
msgstr "Atributos de política"
|
|
790
740
|
|
|
791
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
792
|
-
#: ../app/views/policies/_form.html.erb:11
|
|
793
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
741
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
794
742
|
msgid "Schedule"
|
|
795
743
|
msgstr "Agendamento"
|
|
796
744
|
|
|
797
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
798
|
-
#: ../app/views/policies/_form.html.erb:13
|
|
799
|
-
#: ../app/views/scap_contents/_form.html.erb:11
|
|
800
|
-
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
745
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
|
|
801
746
|
msgid "Locations"
|
|
802
747
|
msgstr "Locais"
|
|
803
748
|
|
|
804
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
805
|
-
#: ../app/views/policies/_form.html.erb:16
|
|
806
|
-
#: ../app/views/scap_contents/_form.html.erb:14
|
|
807
|
-
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
749
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
|
|
808
750
|
msgid "Organizations"
|
|
809
751
|
msgstr "Organizações"
|
|
810
752
|
|
|
811
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
812
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99
|
|
813
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
753
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99 ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
814
754
|
msgid "Hostgroups"
|
|
815
755
|
msgstr "Grupos de hosts"
|
|
816
756
|
|
|
@@ -839,9 +779,7 @@ msgid "does not have the selected SCAP content profile"
|
|
|
839
779
|
msgstr "não tem o perfil de conteúdo SCAP selecionado"
|
|
840
780
|
|
|
841
781
|
#: ../app/models/foreman_openscap/policy.rb:271
|
|
842
|
-
msgid ""
|
|
843
|
-
"cannot assign to %s, all assigned policies must be deployed in the same way,"
|
|
844
|
-
" check 'deploy by' for each assigned policy"
|
|
782
|
+
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
845
783
|
msgstr "não pode atribuir a %s, todas as políticas atribuídas devem ser implantadas da mesma forma, verifique 'implantar por' para cada política atribuída"
|
|
846
784
|
|
|
847
785
|
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
|
|
@@ -849,21 +787,15 @@ msgid "invalid type %s"
|
|
|
849
787
|
msgstr "tipo %s inválido"
|
|
850
788
|
|
|
851
789
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:23
|
|
852
|
-
msgid ""
|
|
853
|
-
"Requires Ansible plugin, %s Ansible role and variables. This will assign the"
|
|
854
|
-
" role to the hosts or selected hostgroups."
|
|
790
|
+
msgid "Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups."
|
|
855
791
|
msgstr ""
|
|
856
792
|
|
|
857
793
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:24
|
|
858
|
-
msgid ""
|
|
859
|
-
"To deploy foreman_scap_client, ansible roles run needs to be triggered "
|
|
860
|
-
"manually. Manual run is also required after any change to this policy."
|
|
794
|
+
msgid "To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy."
|
|
861
795
|
msgstr ""
|
|
862
796
|
|
|
863
797
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:34
|
|
864
|
-
msgid ""
|
|
865
|
-
"theforeman.foreman_scap_client Ansible Role not found, please import it "
|
|
866
|
-
"before running this action again."
|
|
798
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
867
799
|
msgstr "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
868
800
|
|
|
869
801
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:57
|
|
@@ -875,21 +807,15 @@ msgid "Ansible variables"
|
|
|
875
807
|
msgstr "Variáveis do Ansible"
|
|
876
808
|
|
|
877
809
|
#: ../app/services/foreman_openscap/client_config/manual.rb:14
|
|
878
|
-
msgid ""
|
|
879
|
-
"This leaves the setup of the foreman_scap_client solely on the user. The "
|
|
880
|
-
"policy still needs to be defined in order to link incoming ARF reports."
|
|
810
|
+
msgid "This leaves the setup of the foreman_scap_client solely on the user. The policy still needs to be defined in order to link incoming ARF reports."
|
|
881
811
|
msgstr ""
|
|
882
812
|
|
|
883
813
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:17
|
|
884
|
-
msgid ""
|
|
885
|
-
"Requires %s Puppet class. This will assign the class to the hosts or "
|
|
886
|
-
"selected hostgroups."
|
|
814
|
+
msgid "Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups."
|
|
887
815
|
msgstr ""
|
|
888
816
|
|
|
889
817
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:18
|
|
890
|
-
msgid ""
|
|
891
|
-
"Every puppet run ensures the foreman_scap_client is configured according to "
|
|
892
|
-
"the policy."
|
|
818
|
+
msgid "Every puppet run ensures the foreman_scap_client is configured according to the policy."
|
|
893
819
|
msgstr ""
|
|
894
820
|
|
|
895
821
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:39
|
|
@@ -901,27 +827,19 @@ msgid "Smart Class Parameters"
|
|
|
901
827
|
msgstr "Parâmetros de classe inteligentes"
|
|
902
828
|
|
|
903
829
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:19
|
|
904
|
-
msgid ""
|
|
905
|
-
"%{type} was selected to deploy policy to clients, but %{type} is not "
|
|
906
|
-
"available. Are you missing a plugin?"
|
|
830
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
907
831
|
msgstr "{type} foi selecionado para implantar a política para os clientes, mas {type} não está disponível. Está faltando um plugin?"
|
|
908
832
|
|
|
909
833
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:26
|
|
910
|
-
msgid ""
|
|
911
|
-
"Required %{msg_name} %{class} was not found, please ensure it is imported "
|
|
912
|
-
"first."
|
|
834
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
913
835
|
msgstr "%{msg_name} {class} necessária não foi encontrada, certifique-se de que ele seja importado primeiro."
|
|
914
836
|
|
|
915
837
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:34
|
|
916
|
-
msgid ""
|
|
917
|
-
"The following %{key_name} were missing for %{item_name}: %{key_names}. Make "
|
|
918
|
-
"sure they are imported before proceeding."
|
|
838
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
919
839
|
msgstr "Os seguintes %{key_name} estavam ausentes para %{item_name}: %{key_names}. Certifique-se de que eles sejam importados antes de prosseguir."
|
|
920
840
|
|
|
921
841
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:56
|
|
922
|
-
msgid ""
|
|
923
|
-
"Failed to save when overriding parameters for %{config_tool}, cause: "
|
|
924
|
-
"%{errors}"
|
|
842
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
925
843
|
msgstr "Falha ao salvar durante a substituição dos parâmetros para %{config_tool}, causa: {errors}"
|
|
926
844
|
|
|
927
845
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
@@ -929,14 +847,11 @@ msgid "This feature is temporarily disabled. "
|
|
|
929
847
|
msgstr "Esse recurso está temporariamente desabilitado."
|
|
930
848
|
|
|
931
849
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
932
|
-
msgid ""
|
|
933
|
-
"The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
850
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
934
851
|
msgstr "Os proxies inteligentes a seguir precisam ser atualizados para desbloquear o recurso: %s. "
|
|
935
852
|
|
|
936
853
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
937
|
-
msgid ""
|
|
938
|
-
"The following proxies could not be reached: %s. Please make sure they are "
|
|
939
|
-
"available so Foreman can check their versions."
|
|
854
|
+
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
940
855
|
msgstr "Não foi possível alcançar os proxies a seguir: %s. Certifique-se de que eles estejam disponíveis para que o Foreman possa verificar suas versões."
|
|
941
856
|
|
|
942
857
|
#: ../app/services/foreman_openscap/oval/configure.rb:65
|
|
@@ -960,9 +875,7 @@ msgid "Is foreman_ansible present?"
|
|
|
960
875
|
msgstr "O capataz está presente?"
|
|
961
876
|
|
|
962
877
|
#: ../app/services/foreman_openscap/oval/setup.rb:62
|
|
963
|
-
msgid ""
|
|
964
|
-
"foreman_ansible plugin not found, please install it before running this "
|
|
965
|
-
"action again."
|
|
878
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
966
879
|
msgstr "não encontrado, favor instalá-lo antes de executar esta ação novamente."
|
|
967
880
|
|
|
968
881
|
#: ../app/services/foreman_openscap/oval/setup.rb:66
|
|
@@ -974,14 +887,10 @@ msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
|
974
887
|
msgstr "As variáveis necessárias para oforeman.foreman_scap_client estão presentes?"
|
|
975
888
|
|
|
976
889
|
#: ../app/services/foreman_openscap/oval/setup.rb:72
|
|
977
|
-
msgid ""
|
|
978
|
-
"The following Ansible Variables were not found: %{missing_vars}, please "
|
|
979
|
-
"import them before running this action again."
|
|
890
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
980
891
|
msgstr "As seguintes Variáveis Ansíveis não foram encontradas: %{missing_vars}, favor importá-las antes de executar esta ação novamente."
|
|
981
892
|
|
|
982
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:76
|
|
983
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:81
|
|
984
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:86
|
|
893
|
+
#: ../app/services/foreman_openscap/oval/setup.rb:76 ../app/services/foreman_openscap/oval/setup.rb:81 ../app/services/foreman_openscap/oval/setup.rb:86
|
|
985
894
|
msgid "Is %s param set to be overriden?"
|
|
986
895
|
msgstr "O %s param está pronto para ser substituído?"
|
|
987
896
|
|
|
@@ -1013,9 +922,7 @@ msgstr "O arquivo alterado não inclui perfis de conteúdo SCAP existentes"
|
|
|
1013
922
|
msgid "More details"
|
|
1014
923
|
msgstr "Mais detalhes"
|
|
1015
924
|
|
|
1016
|
-
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
1017
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62
|
|
1018
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
925
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
1019
926
|
msgid "Description"
|
|
1020
927
|
msgstr "Descrição"
|
|
1021
928
|
|
|
@@ -1035,8 +942,7 @@ msgstr "Selecionar todos os itens desta página"
|
|
|
1035
942
|
msgid "items selected. Uncheck to Clear"
|
|
1036
943
|
msgstr "itens selecionados. Desselecione para Limpar"
|
|
1037
944
|
|
|
1038
|
-
#: ../app/views/arf_reports/_list.html.erb:7
|
|
1039
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
945
|
+
#: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
1040
946
|
msgid "Reported At"
|
|
1041
947
|
msgstr "Relatado em "
|
|
1042
948
|
|
|
@@ -1044,12 +950,7 @@ msgstr "Relatado em "
|
|
|
1044
950
|
msgid "Openscap Proxy"
|
|
1045
951
|
msgstr "Proxy OpenSCAP"
|
|
1046
952
|
|
|
1047
|
-
#: ../app/views/arf_reports/_list.html.erb:13
|
|
1048
|
-
#: ../app/views/arf_reports/_output.html.erb:16
|
|
1049
|
-
#: ../app/views/policies/_list.html.erb:8
|
|
1050
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:12
|
|
1051
|
-
#: ../app/views/scap_contents/_list.html.erb:6
|
|
1052
|
-
#: ../app/views/tailoring_files/_list.html.erb:6
|
|
953
|
+
#: ../app/views/arf_reports/_list.html.erb:13 ../app/views/arf_reports/_output.html.erb:16 ../app/views/policies/_list.html.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:12 ../app/views/scap_contents/_list.html.erb:6 ../app/views/tailoring_files/_list.html.erb:6
|
|
1053
954
|
msgid "Actions"
|
|
1054
955
|
msgstr "Ações"
|
|
1055
956
|
|
|
@@ -1129,15 +1030,12 @@ msgstr "Baixar XML em bzip"
|
|
|
1129
1030
|
msgid "Download HTML"
|
|
1130
1031
|
msgstr "Fazer download de HTML"
|
|
1131
1032
|
|
|
1132
|
-
#: ../app/views/arf_reports/show_html.html.erb:10
|
|
1133
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1033
|
+
#: ../app/views/arf_reports/show_html.html.erb:10 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1134
1034
|
msgid "Loading..."
|
|
1135
1035
|
msgstr "Carregando..."
|
|
1136
1036
|
|
|
1137
1037
|
#: ../app/views/arf_reports/welcome.html.erb:9
|
|
1138
|
-
msgid ""
|
|
1139
|
-
"You don't seem to have any ARF report. ARF report is a summary of a single "
|
|
1140
|
-
"scan occurrence on a particular host for a given Compliance Policy."
|
|
1038
|
+
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."
|
|
1141
1039
|
msgstr "Parece que você não tem um relatório ARF. O relatório ARF é um resumo de uma única ocorrência de verificação em um host em específico para uma determinada política de conformidade."
|
|
1142
1040
|
|
|
1143
1041
|
#: ../app/views/arf_reports/welcome.html.erb:12
|
|
@@ -1167,8 +1065,7 @@ msgstr "relatórios %s ao longo do tempo"
|
|
|
1167
1065
|
msgid "No report for this policy"
|
|
1168
1066
|
msgstr "Nenhum relatório para esta política"
|
|
1169
1067
|
|
|
1170
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
1171
|
-
#: ../lib/foreman_openscap/engine.rb:183
|
|
1068
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:183
|
|
1172
1069
|
msgid "Latest Compliance Reports"
|
|
1173
1070
|
msgstr "Relatórios de conformidade mais recentes "
|
|
1174
1071
|
|
|
@@ -1184,8 +1081,7 @@ msgstr "Host não existe mais "
|
|
|
1184
1081
|
msgid "Policy is missing"
|
|
1185
1082
|
msgstr "Política está ausente"
|
|
1186
1083
|
|
|
1187
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
1188
|
-
#: ../lib/foreman_openscap/engine.rb:185
|
|
1084
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:185
|
|
1189
1085
|
msgid "Compliance Reports Breakdown"
|
|
1190
1086
|
msgstr "Detalhamento de relatórios de conformidade"
|
|
1191
1087
|
|
|
@@ -1201,13 +1097,11 @@ msgstr "Nome da máquina"
|
|
|
1201
1097
|
msgid "Changed?"
|
|
1202
1098
|
msgstr "Alterado(a)?"
|
|
1203
1099
|
|
|
1204
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1205
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1100
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1206
1101
|
msgid "Yes"
|
|
1207
1102
|
msgstr "Sim"
|
|
1208
1103
|
|
|
1209
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1210
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1104
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1211
1105
|
msgid "No"
|
|
1212
1106
|
msgstr "Não"
|
|
1213
1107
|
|
|
@@ -1258,38 +1152,23 @@ msgstr "Geral"
|
|
|
1258
1152
|
msgid "Host Groups"
|
|
1259
1153
|
msgstr "Grupos de host"
|
|
1260
1154
|
|
|
1261
|
-
#: ../app/views/policies/_form.html.erb:45
|
|
1262
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1155
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1263
1156
|
msgid "Choose period"
|
|
1264
1157
|
msgstr "Selecionar período"
|
|
1265
1158
|
|
|
1266
|
-
#: ../app/views/policies/_form.html.erb:47
|
|
1267
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1159
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1268
1160
|
msgid "Choose weekday"
|
|
1269
1161
|
msgstr "Selecionar dia útil"
|
|
1270
1162
|
|
|
1271
|
-
#: ../app/views/policies/_form.html.erb:48
|
|
1272
|
-
|
|
1273
|
-
msgid ""
|
|
1274
|
-
"Number of a day in month, note that not all months have same count of days"
|
|
1163
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:13
|
|
1164
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
1275
1165
|
msgstr "Número de dias no mês, observe que nem todos os meses possuem o mesmo número de dias"
|
|
1276
1166
|
|
|
1277
|
-
#: ../app/views/policies/_form.html.erb:49
|
|
1278
|
-
|
|
1279
|
-
msgid ""
|
|
1280
|
-
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5"
|
|
1281
|
-
" values by space"
|
|
1167
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:14
|
|
1168
|
+
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1282
1169
|
msgstr "Você pode especificar cron line personalizado, ex. \"0 3 * * *\", separe cada um dos 5 valores por espaço "
|
|
1283
1170
|
|
|
1284
|
-
#: ../app/views/policies/_list.html.erb:3
|
|
1285
|
-
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1286
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1287
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1288
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
1289
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1290
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56
|
|
1291
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31
|
|
1292
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1171
|
+
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1293
1172
|
msgid "Name"
|
|
1294
1173
|
msgstr "Nome"
|
|
1295
1174
|
|
|
@@ -1299,7 +1178,7 @@ msgstr ""
|
|
|
1299
1178
|
|
|
1300
1179
|
#: ../app/views/policies/_list.html.erb:5
|
|
1301
1180
|
msgid "Profile"
|
|
1302
|
-
msgstr "
|
|
1181
|
+
msgstr ""
|
|
1303
1182
|
|
|
1304
1183
|
#: ../app/views/policies/_list.html.erb:7
|
|
1305
1184
|
msgid "Effective Profile"
|
|
@@ -1321,25 +1200,19 @@ msgstr "Exibir Guia"
|
|
|
1321
1200
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
1322
1201
|
msgstr "Excluir política de conformidade %s com todos os relatórios?"
|
|
1323
1202
|
|
|
1324
|
-
#: ../app/views/policies/create.html.erb:1
|
|
1325
|
-
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1203
|
+
#: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1326
1204
|
msgid "New Compliance Policy"
|
|
1327
1205
|
msgstr "Nova Política de Conformidade"
|
|
1328
1206
|
|
|
1329
|
-
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
1330
|
-
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1207
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1331
1208
|
msgid "Select Compliance Policy"
|
|
1332
1209
|
msgstr "Selecionar Política de Conformidade"
|
|
1333
1210
|
|
|
1334
|
-
#: ../app/views/policies/edit.html.erb:1
|
|
1335
|
-
#: ../app/views/scap_contents/edit.html.erb:1
|
|
1336
|
-
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1211
|
+
#: ../app/views/policies/edit.html.erb:1 ../app/views/scap_contents/edit.html.erb:1 ../app/views/tailoring_files/edit.html.erb:1
|
|
1337
1212
|
msgid "Edit %s"
|
|
1338
1213
|
msgstr "Editar"
|
|
1339
1214
|
|
|
1340
|
-
#: ../app/views/policies/index.html.erb:2
|
|
1341
|
-
#: ../app/views/policies/welcome.html.erb:1
|
|
1342
|
-
#: ../app/views/policies/welcome.html.erb:6
|
|
1215
|
+
#: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
|
|
1343
1216
|
msgid "Compliance Policies"
|
|
1344
1217
|
msgstr "Políticas de Conformidade"
|
|
1345
1218
|
|
|
@@ -1376,9 +1249,7 @@ msgid "SCAP content"
|
|
|
1376
1249
|
msgstr "Conteúdo SCAP"
|
|
1377
1250
|
|
|
1378
1251
|
#: ../app/views/policies/welcome.html.erb:8
|
|
1379
|
-
msgid ""
|
|
1380
|
-
"Once SCAP content is present, you can create a policy, assign select host "
|
|
1381
|
-
"groups and schedule to run."
|
|
1252
|
+
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
1382
1253
|
msgstr "Quando o conteúdo SCAP estiver presente, você poderá criar uma política, atribuir grupos de host específicos e agendar a execução"
|
|
1383
1254
|
|
|
1384
1255
|
#: ../app/views/policies/welcome.html.erb:12
|
|
@@ -1441,8 +1312,7 @@ msgstr "Tabela de status"
|
|
|
1441
1312
|
msgid "Latest reports for policy: %s"
|
|
1442
1313
|
msgstr "Relatórios mais recentes para a política: %s"
|
|
1443
1314
|
|
|
1444
|
-
#: ../app/views/scap_contents/_form.html.erb:9
|
|
1445
|
-
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
1315
|
+
#: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
|
|
1446
1316
|
msgid "File Upload"
|
|
1447
1317
|
msgstr "Carregamento de Arquivo"
|
|
1448
1318
|
|
|
@@ -1454,18 +1324,15 @@ msgstr "Arquivo SCAP DataStream"
|
|
|
1454
1324
|
msgid "Title"
|
|
1455
1325
|
msgstr ""
|
|
1456
1326
|
|
|
1457
|
-
#: ../app/views/scap_contents/_list.html.erb:4
|
|
1458
|
-
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1327
|
+
#: ../app/views/scap_contents/_list.html.erb:4 ../app/views/tailoring_files/_list.html.erb:4
|
|
1459
1328
|
msgid "File name"
|
|
1460
1329
|
msgstr ""
|
|
1461
1330
|
|
|
1462
|
-
#: ../app/views/scap_contents/_list.html.erb:5
|
|
1463
|
-
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1331
|
+
#: ../app/views/scap_contents/_list.html.erb:5 ../app/views/tailoring_files/_list.html.erb:5
|
|
1464
1332
|
msgid "Created at"
|
|
1465
1333
|
msgstr ""
|
|
1466
1334
|
|
|
1467
|
-
#: ../app/views/scap_contents/_list.html.erb:17
|
|
1468
|
-
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1335
|
+
#: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
|
|
1469
1336
|
msgid "Download"
|
|
1470
1337
|
msgstr "Baixar"
|
|
1471
1338
|
|
|
@@ -1489,21 +1356,24 @@ msgstr "Carregar novo arquivo de conteúdo SCAP"
|
|
|
1489
1356
|
msgid ""
|
|
1490
1357
|
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
|
|
1491
1358
|
" configuration issues related to security. "
|
|
1492
|
-
msgstr "
|
|
1359
|
+
msgstr ""
|
|
1360
|
+
"O protocolo de automação de segurança de conteúdos (SCAP, Security Content Automation Protocol), combina diversos padrões abertos que são usados para enumerar falhas de software e\n"
|
|
1361
|
+
" problemas de configuração relacionados a segurança. "
|
|
1493
1362
|
|
|
1494
1363
|
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
1495
1364
|
msgid ""
|
|
1496
1365
|
"In Foreman, scap_contents represent the SCAP security guides on your hosts, and create SCAP profiles for you to assign to hosts / host groups\n"
|
|
1497
1366
|
" via %s"
|
|
1498
|
-
msgstr "
|
|
1367
|
+
msgstr ""
|
|
1368
|
+
"No Foreman, scap_contents representa os guias de segurança SCAP nos seus hosts e cria perfis SCAP para você atribuir aos hosts / grupos de hosts\n"
|
|
1369
|
+
" por %s"
|
|
1499
1370
|
|
|
1500
1371
|
#: ../app/views/scap_contents/welcome.html.erb:14
|
|
1501
1372
|
msgid "New SCAP Content"
|
|
1502
1373
|
msgstr "Novo conteúdo SCAP"
|
|
1503
1374
|
|
|
1504
1375
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
1505
|
-
msgid ""
|
|
1506
|
-
"%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1376
|
+
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1507
1377
|
msgstr "%s erros de spool detectados. Inspecione o arquivo apropriado diretamente no proxy"
|
|
1508
1378
|
|
|
1509
1379
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:8
|
|
@@ -1515,10 +1385,7 @@ msgid "None found"
|
|
|
1515
1385
|
msgstr "Nenhum(a) localizado(a)"
|
|
1516
1386
|
|
|
1517
1387
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:6
|
|
1518
|
-
msgid ""
|
|
1519
|
-
"Proxy failed to send a report from spool to Foreman. This indicates a "
|
|
1520
|
-
"corrupted report format. Report has been moved to directory for storing "
|
|
1521
|
-
"corrupted files on proxy for later inspection."
|
|
1388
|
+
msgid "Proxy failed to send a report from spool to Foreman. This indicates a corrupted report format. Report has been moved to directory for storing corrupted files on proxy for later inspection."
|
|
1522
1389
|
msgstr "Falha do proxy ao enviar um relatório do spoll ao Foreman. Isso indica um formato de relatório corrompido. O relatório foi movido para o diretório de armazenamento de arquivos corrompidos no proxy para inspeção posterior."
|
|
1523
1390
|
|
|
1524
1391
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
@@ -1533,10 +1400,7 @@ msgstr "Arquivo de personalização DataStream"
|
|
|
1533
1400
|
msgid "Delete tailoring file %s?"
|
|
1534
1401
|
msgstr "Excluir arquivo de personalização %s?"
|
|
1535
1402
|
|
|
1536
|
-
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1537
|
-
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1538
|
-
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1539
|
-
#: ../lib/foreman_openscap/engine.rb:169
|
|
1403
|
+
#: ../app/views/tailoring_files/index.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:6 ../lib/foreman_openscap/engine.rb:169
|
|
1540
1404
|
msgid "Tailoring Files"
|
|
1541
1405
|
msgstr "Arquivos de personalização"
|
|
1542
1406
|
|
|
@@ -1549,16 +1413,16 @@ msgid "Upload new Tailoring File"
|
|
|
1549
1413
|
msgstr "Atualizar novo arquivo de personalização"
|
|
1550
1414
|
|
|
1551
1415
|
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
1552
|
-
msgid ""
|
|
1553
|
-
"It may sometimes be required to adjust the security policy to your specific "
|
|
1554
|
-
"needs. "
|
|
1416
|
+
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
1555
1417
|
msgstr "Algumas vezes, poderá ser necessário ajustar a política de segurança para suas necessidades específicas."
|
|
1556
1418
|
|
|
1557
1419
|
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1558
1420
|
msgid ""
|
|
1559
1421
|
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
|
|
1560
1422
|
" via %s"
|
|
1561
|
-
msgstr "
|
|
1423
|
+
msgstr ""
|
|
1424
|
+
"No Foreman, tailoring_files representam as modificações personalizadas para os perfis XCCDF padrão e podem ser aplicados aos hosts\n"
|
|
1425
|
+
" por %s"
|
|
1562
1426
|
|
|
1563
1427
|
#: ../app/views/tailoring_files/welcome.html.erb:13
|
|
1564
1428
|
msgid "New Tailoring File"
|
|
@@ -1573,9 +1437,7 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
|
1573
1437
|
msgstr "Um resumo de relatórios para políticas OpenSCAP"
|
|
1574
1438
|
|
|
1575
1439
|
#: ../lib/foreman_openscap/bulk_upload.rb:20
|
|
1576
|
-
msgid ""
|
|
1577
|
-
"Can't find scap-security-guide RPM, are you sure it is installed on your "
|
|
1578
|
-
"server?"
|
|
1440
|
+
msgid "Can't find scap-security-guide RPM, are you sure it is installed on your server?"
|
|
1579
1441
|
msgstr ""
|
|
1580
1442
|
|
|
1581
1443
|
#: ../lib/foreman_openscap/bulk_upload.rb:29
|
|
@@ -1618,21 +1480,16 @@ msgstr "Conteúdos SCAP"
|
|
|
1618
1480
|
msgid "Reports"
|
|
1619
1481
|
msgstr "Relatórios"
|
|
1620
1482
|
|
|
1621
|
-
#: ../lib/foreman_openscap/engine.rb:172
|
|
1622
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1483
|
+
#: ../lib/foreman_openscap/engine.rb:172 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1623
1484
|
msgid "OVAL Contents"
|
|
1624
1485
|
msgstr "Conteúdo do OVAL"
|
|
1625
1486
|
|
|
1626
|
-
#: ../lib/foreman_openscap/engine.rb:177
|
|
1627
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1487
|
+
#: ../lib/foreman_openscap/engine.rb:177 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1628
1488
|
msgid "OVAL Policies"
|
|
1629
1489
|
msgstr "OVAL Políticas"
|
|
1630
1490
|
|
|
1631
1491
|
#: ../lib/foreman_openscap/engine.rb:199
|
|
1632
|
-
msgid ""
|
|
1633
|
-
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. "
|
|
1634
|
-
"Leave blank and override appropriate parameters when using proxy load "
|
|
1635
|
-
"balancer."
|
|
1492
|
+
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
|
1636
1493
|
msgstr "Proxy OpenSCAP a ser usado para buscar conteúdo SCAP e carregar relatórios ARF. Deixe em branco e substitua os parâmetros apropriados ao usar o balanceador de carga do proxy."
|
|
1637
1494
|
|
|
1638
1495
|
#: ../lib/foreman_openscap/engine.rb:203 ../lib/foreman_openscap/engine.rb:208
|
|
@@ -1643,37 +1500,161 @@ msgstr "Proxy OpenSCAP"
|
|
|
1643
1500
|
msgid "ID of OpenSCAP Proxy"
|
|
1644
1501
|
msgstr "ID do proxy OpenSCAP"
|
|
1645
1502
|
|
|
1646
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1503
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1647
1504
|
msgid "Run OpenSCAP scan"
|
|
1648
1505
|
msgstr "Executar verificação OpenSCAP"
|
|
1649
1506
|
|
|
1650
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1507
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1651
1508
|
msgid "Run OVAL scan"
|
|
1652
1509
|
msgstr "Executar OVAL scan"
|
|
1653
1510
|
|
|
1511
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1512
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1513
|
+
msgstr ""
|
|
1514
|
+
|
|
1515
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1516
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1517
|
+
msgstr ""
|
|
1518
|
+
|
|
1654
1519
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1655
1520
|
msgid "Confirm"
|
|
1656
1521
|
msgstr ""
|
|
1657
1522
|
|
|
1658
1523
|
#: ../webpack/components/EditableInput.js:78
|
|
1659
1524
|
msgid "None provided"
|
|
1660
|
-
msgstr "
|
|
1525
|
+
msgstr ""
|
|
1661
1526
|
|
|
1662
1527
|
#: ../webpack/components/HostExtentions/HostKebabItems.js:37
|
|
1663
1528
|
msgid "There's no available report for this host"
|
|
1664
1529
|
msgstr ""
|
|
1665
1530
|
|
|
1666
|
-
#: ../webpack/components/
|
|
1667
|
-
msgid "
|
|
1531
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1532
|
+
msgid "View selected hosts"
|
|
1533
|
+
msgstr ""
|
|
1534
|
+
|
|
1535
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1536
|
+
msgid "Review hosts"
|
|
1537
|
+
msgstr ""
|
|
1538
|
+
|
|
1539
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1540
|
+
msgid "Select snippet"
|
|
1541
|
+
msgstr ""
|
|
1542
|
+
|
|
1543
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1544
|
+
msgid "Review remediation"
|
|
1545
|
+
msgstr ""
|
|
1546
|
+
|
|
1547
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1548
|
+
msgid "Run"
|
|
1549
|
+
msgstr ""
|
|
1550
|
+
|
|
1551
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1552
|
+
msgid "Done"
|
|
1553
|
+
msgstr ""
|
|
1554
|
+
|
|
1555
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1556
|
+
msgid "Remediate %s rule"
|
|
1557
|
+
msgstr ""
|
|
1558
|
+
|
|
1559
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1560
|
+
msgid "Job details"
|
|
1561
|
+
msgstr ""
|
|
1562
|
+
|
|
1563
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1564
|
+
msgid "Close"
|
|
1668
1565
|
msgstr ""
|
|
1669
1566
|
|
|
1670
|
-
#: ../webpack/components/withLoading.js:12
|
|
1567
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1671
1568
|
msgid "Error!"
|
|
1672
1569
|
msgstr "Erro!"
|
|
1673
1570
|
|
|
1571
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1572
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1573
|
+
msgstr ""
|
|
1574
|
+
|
|
1575
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1576
|
+
msgid "OS"
|
|
1577
|
+
msgstr ""
|
|
1578
|
+
|
|
1579
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1580
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1583
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1584
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1585
|
+
msgstr ""
|
|
1586
|
+
|
|
1587
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1588
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1589
|
+
msgstr ""
|
|
1590
|
+
|
|
1591
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1592
|
+
msgid "A reboot is required after applying remediation."
|
|
1593
|
+
msgstr ""
|
|
1594
|
+
|
|
1595
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1596
|
+
msgid "A reboot might be required after applying remediation."
|
|
1597
|
+
msgstr ""
|
|
1598
|
+
|
|
1599
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1600
|
+
msgid "Successfully copied to clipboard!"
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1603
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1604
|
+
msgid "Copy to clipboard"
|
|
1605
|
+
msgstr ""
|
|
1606
|
+
|
|
1607
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1608
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1609
|
+
msgstr ""
|
|
1610
|
+
|
|
1611
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1612
|
+
msgid "Remediation might render the system non-functional."
|
|
1613
|
+
msgstr ""
|
|
1614
|
+
|
|
1615
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1616
|
+
msgid "Other hosts failing this rule"
|
|
1617
|
+
msgstr ""
|
|
1618
|
+
|
|
1619
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1620
|
+
msgid "Reboot the system(s)"
|
|
1621
|
+
msgstr ""
|
|
1622
|
+
|
|
1623
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1624
|
+
msgid "Method"
|
|
1625
|
+
msgstr ""
|
|
1626
|
+
|
|
1627
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1628
|
+
msgid "Remote job"
|
|
1629
|
+
msgstr ""
|
|
1630
|
+
|
|
1631
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1632
|
+
msgid "Manual"
|
|
1633
|
+
msgstr ""
|
|
1634
|
+
|
|
1635
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1636
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1637
|
+
msgstr ""
|
|
1638
|
+
|
|
1639
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1640
|
+
msgid "Snippet"
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1643
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1644
|
+
msgid "Select remediation method"
|
|
1645
|
+
msgstr ""
|
|
1646
|
+
|
|
1647
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1648
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1649
|
+
msgstr ""
|
|
1650
|
+
|
|
1651
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1652
|
+
msgid "Are you sure you want to delete %s?"
|
|
1653
|
+
msgstr ""
|
|
1654
|
+
|
|
1674
1655
|
#: ../webpack/components/withLoading.js:64
|
|
1675
1656
|
msgid "Permission denied"
|
|
1676
|
-
msgstr "
|
|
1657
|
+
msgstr ""
|
|
1677
1658
|
|
|
1678
1659
|
#: ../webpack/helpers/mutationHelper.js:7
|
|
1679
1660
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
@@ -1691,8 +1672,7 @@ msgstr ""
|
|
|
1691
1672
|
msgid "No OVAL Contents found."
|
|
1692
1673
|
msgstr "Não foi encontrado nenhum conteúdo OVAL."
|
|
1693
1674
|
|
|
1694
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42
|
|
1695
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1675
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1696
1676
|
msgid "Delete OVAL Content"
|
|
1697
1677
|
msgstr ""
|
|
1698
1678
|
|
|
@@ -1700,23 +1680,17 @@ msgstr ""
|
|
|
1700
1680
|
msgid "OVAL Content successfully deleted."
|
|
1701
1681
|
msgstr ""
|
|
1702
1682
|
|
|
1703
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51
|
|
1704
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39
|
|
1705
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1706
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1683
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1707
1684
|
msgid "OVAL Content"
|
|
1708
1685
|
msgstr "Conteúdo OVAL"
|
|
1709
1686
|
|
|
1710
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56
|
|
1711
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1687
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1712
1688
|
msgid "Create OVAL Content"
|
|
1713
1689
|
msgstr ""
|
|
1714
1690
|
|
|
1715
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20
|
|
1716
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103
|
|
1717
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1691
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1718
1692
|
msgid "URL"
|
|
1719
|
-
msgstr "
|
|
1693
|
+
msgstr ""
|
|
1720
1694
|
|
|
1721
1695
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:21
|
|
1722
1696
|
msgid "Original File Name"
|
|
@@ -1742,8 +1716,7 @@ msgstr ""
|
|
|
1742
1716
|
msgid "OVAL Content from file"
|
|
1743
1717
|
msgstr ""
|
|
1744
1718
|
|
|
1745
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92
|
|
1746
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1719
|
+
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1747
1720
|
msgid "File"
|
|
1748
1721
|
msgstr ""
|
|
1749
1722
|
|
|
@@ -1755,8 +1728,7 @@ msgstr ""
|
|
|
1755
1728
|
msgid "Unknown error when submitting data, please try again later."
|
|
1756
1729
|
msgstr ""
|
|
1757
1730
|
|
|
1758
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26
|
|
1759
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1731
|
+
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1760
1732
|
msgid "No OVAL Content found"
|
|
1761
1733
|
msgstr ""
|
|
1762
1734
|
|
|
@@ -1764,8 +1736,7 @@ msgstr ""
|
|
|
1764
1736
|
msgid "No OVAL Policies found"
|
|
1765
1737
|
msgstr "Não foram encontradas políticas OVAL"
|
|
1766
1738
|
|
|
1767
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41
|
|
1768
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1739
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1769
1740
|
msgid "Delete OVAL Policy"
|
|
1770
1741
|
msgstr ""
|
|
1771
1742
|
|
|
@@ -1777,8 +1748,7 @@ msgstr ""
|
|
|
1777
1748
|
msgid "OVAL policy"
|
|
1778
1749
|
msgstr ""
|
|
1779
1750
|
|
|
1780
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48
|
|
1781
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1751
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1782
1752
|
msgid "Create OVAL Policy"
|
|
1783
1753
|
msgstr ""
|
|
1784
1754
|
|
|
@@ -1811,9 +1781,7 @@ msgid "Failed to create OVAL Policy: %s"
|
|
|
1811
1781
|
msgstr ""
|
|
1812
1782
|
|
|
1813
1783
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:23
|
|
1814
|
-
msgid ""
|
|
1815
|
-
"OVAL Content is required to create OVAL Policy. Please create one before "
|
|
1816
|
-
"proceeding."
|
|
1784
|
+
msgid "OVAL Content is required to create OVAL Policy. Please create one before proceeding."
|
|
1817
1785
|
msgstr ""
|
|
1818
1786
|
|
|
1819
1787
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js:38
|
|
@@ -1854,7 +1822,7 @@ msgstr "Digitalizar todos os grupos anfitriões"
|
|
|
1854
1822
|
|
|
1855
1823
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:53
|
|
1856
1824
|
msgid "Details"
|
|
1857
|
-
msgstr "
|
|
1825
|
+
msgstr ""
|
|
1858
1826
|
|
|
1859
1827
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:59
|
|
1860
1828
|
msgid "CVEs"
|