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
|
@@ -17,344 +17,352 @@
|
|
|
17
17
|
"domain": "foreman_openscap",
|
|
18
18
|
"plural_forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
],
|
|
23
|
-
"Show an ARF report": [
|
|
24
|
-
"Mostrar um relatório ARF"
|
|
25
|
-
],
|
|
26
|
-
"Delete an ARF Report": [
|
|
27
|
-
"Excluir um relatório ARF"
|
|
28
|
-
],
|
|
29
|
-
"Upload an ARF report": [
|
|
30
|
-
"Carregar um relatório Arf"
|
|
20
|
+
" for policy %s": [
|
|
21
|
+
" para política %s"
|
|
31
22
|
],
|
|
32
|
-
"
|
|
33
|
-
"
|
|
23
|
+
" through %s": [
|
|
24
|
+
" através de %s"
|
|
34
25
|
],
|
|
35
|
-
"
|
|
36
|
-
"
|
|
26
|
+
"%s - The following compliance reports are about to be changed": [
|
|
27
|
+
"%s - Os relatórios de conformidade a seguir serão alterados em breve"
|
|
37
28
|
],
|
|
38
|
-
"
|
|
39
|
-
"
|
|
29
|
+
"%s compliance report by policy": [
|
|
30
|
+
"%s relatório de conformidade por política",
|
|
31
|
+
"%s relatórios de conformidade por política",
|
|
32
|
+
"%s relatórios de conformidade por política"
|
|
40
33
|
],
|
|
41
|
-
"
|
|
42
|
-
"
|
|
34
|
+
"%s content": [
|
|
35
|
+
""
|
|
43
36
|
],
|
|
44
|
-
"
|
|
45
|
-
"
|
|
37
|
+
"%s does not exist, skipping.": [
|
|
38
|
+
""
|
|
46
39
|
],
|
|
47
|
-
"
|
|
48
|
-
"
|
|
40
|
+
"%s is a directory, expecting file.": [
|
|
41
|
+
""
|
|
49
42
|
],
|
|
50
|
-
"
|
|
51
|
-
"
|
|
43
|
+
"%s latest report": [
|
|
44
|
+
"relatório mais recente %s"
|
|
52
45
|
],
|
|
53
|
-
"
|
|
54
|
-
"
|
|
46
|
+
"%s reports over time": [
|
|
47
|
+
"relatórios %s ao longo do tempo"
|
|
55
48
|
],
|
|
56
|
-
"
|
|
57
|
-
"
|
|
49
|
+
"%s spool errors detected, inspect the appropriate file directly on proxy": [
|
|
50
|
+
"%s erros de spool detectados. Inspecione o arquivo apropriado diretamente no proxy"
|
|
58
51
|
],
|
|
59
|
-
"
|
|
60
|
-
"
|
|
52
|
+
"%s vulnerabilities found": [
|
|
53
|
+
"%s vulnerabilidades encontradas"
|
|
61
54
|
],
|
|
62
|
-
"
|
|
63
|
-
"
|
|
55
|
+
"%s vulnerabilities with available patch found": [
|
|
56
|
+
"%s vulnerabilidades com o patch disponível encontrado"
|
|
64
57
|
],
|
|
65
|
-
"
|
|
66
|
-
"
|
|
58
|
+
"%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?": [
|
|
59
|
+
"{type} foi selecionado para implantar a política para os clientes, mas {type} não está disponível. Está faltando um plugin?"
|
|
67
60
|
],
|
|
68
|
-
"
|
|
69
|
-
"
|
|
61
|
+
"<b>Foreman</b> OpenSCAP summary": [
|
|
62
|
+
"Resumo do OpenSCAP do <b>Foreman</b>"
|
|
70
63
|
],
|
|
71
|
-
"
|
|
72
|
-
"
|
|
64
|
+
"A reboot is required after applying remediation.": [
|
|
65
|
+
""
|
|
73
66
|
],
|
|
74
|
-
"
|
|
75
|
-
"
|
|
67
|
+
"A reboot might be required after applying remediation.": [
|
|
68
|
+
""
|
|
76
69
|
],
|
|
77
|
-
"
|
|
78
|
-
"
|
|
70
|
+
"A summary of reports for OpenSCAP policies": [
|
|
71
|
+
"Um resumo de relatórios para políticas OpenSCAP"
|
|
79
72
|
],
|
|
80
|
-
"
|
|
81
|
-
"
|
|
73
|
+
"Action with sub plans": [
|
|
74
|
+
"Ação com subplanos "
|
|
82
75
|
],
|
|
83
|
-
"
|
|
84
|
-
"
|
|
76
|
+
"Actions": [
|
|
77
|
+
"Ações"
|
|
85
78
|
],
|
|
86
|
-
"
|
|
87
|
-
"
|
|
79
|
+
"All messages": [
|
|
80
|
+
"Todas as mensagens"
|
|
88
81
|
],
|
|
89
|
-
"
|
|
90
|
-
"
|
|
82
|
+
"Ansible role": [
|
|
83
|
+
"Função do Ansible"
|
|
91
84
|
],
|
|
92
|
-
"
|
|
93
|
-
"
|
|
85
|
+
"Ansible variables": [
|
|
86
|
+
"Variáveis do Ansible"
|
|
94
87
|
],
|
|
95
|
-
"
|
|
96
|
-
"
|
|
88
|
+
"Apply policy to host groups": [
|
|
89
|
+
"Aplicar política a grupos de hosts"
|
|
97
90
|
],
|
|
98
|
-
"
|
|
99
|
-
"
|
|
91
|
+
"Apply policy to hosts": [
|
|
92
|
+
"Aplicar política aos hosts"
|
|
100
93
|
],
|
|
101
|
-
"
|
|
102
|
-
"
|
|
94
|
+
"Are required variables for theforeman.foreman_scap_client present?": [
|
|
95
|
+
"As variáveis necessárias para oforeman.foreman_scap_client estão presentes?"
|
|
103
96
|
],
|
|
104
|
-
"
|
|
105
|
-
"
|
|
97
|
+
"Are you sure you want to delete %s?": [
|
|
98
|
+
""
|
|
106
99
|
],
|
|
107
|
-
"
|
|
108
|
-
"
|
|
100
|
+
"Array of host IDs": [
|
|
101
|
+
"Matriz de IDs de host"
|
|
109
102
|
],
|
|
110
|
-
"
|
|
111
|
-
"
|
|
103
|
+
"Array of hostgroup IDs": [
|
|
104
|
+
"Matriz de IDs de grupos anfitriões"
|
|
112
105
|
],
|
|
113
|
-
"
|
|
114
|
-
"
|
|
106
|
+
"Assign Compliance Policy": [
|
|
107
|
+
"Atribuir Política de Conformidade"
|
|
115
108
|
],
|
|
116
109
|
"Assign hostgroups to an OVAL Policy": [
|
|
117
110
|
"Atribuir grupos de anfitriões a uma política OVAL"
|
|
118
111
|
],
|
|
119
|
-
"Array of hostgroup IDs": [
|
|
120
|
-
"Matriz de IDs de grupos anfitriões"
|
|
121
|
-
],
|
|
122
|
-
"hostgroups": [
|
|
123
|
-
"Grupos de hosts"
|
|
124
|
-
],
|
|
125
112
|
"Assign hosts to an OVAL Policy": [
|
|
126
113
|
"Atribuir anfitriões a uma política OVAL"
|
|
127
114
|
],
|
|
128
|
-
"
|
|
129
|
-
"
|
|
115
|
+
"Assign openscap_proxy to %s before proceeding.": [
|
|
116
|
+
"Atribua openscap_proxy para %s antes de prosseguir."
|
|
130
117
|
],
|
|
131
|
-
"
|
|
132
|
-
"
|
|
118
|
+
"Back": [
|
|
119
|
+
"Retornar"
|
|
133
120
|
],
|
|
134
|
-
"
|
|
121
|
+
"By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule.": [
|
|
135
122
|
""
|
|
136
123
|
],
|
|
137
|
-
"
|
|
138
|
-
"
|
|
124
|
+
"CVEs": [
|
|
125
|
+
""
|
|
139
126
|
],
|
|
140
|
-
"
|
|
141
|
-
"
|
|
127
|
+
"Can't find scap-security-guide RPM, are you sure it is installed on your server?": [
|
|
128
|
+
""
|
|
142
129
|
],
|
|
143
|
-
"
|
|
144
|
-
"
|
|
130
|
+
"Cancel": [
|
|
131
|
+
"Cancelar"
|
|
145
132
|
],
|
|
146
|
-
"
|
|
147
|
-
"
|
|
133
|
+
"Cannot generate HTML guide, no valid OpenSCAP proxy server found.": [
|
|
134
|
+
"Não é possível gerar guia HTML, nenhum servidor proxy OpenSCAP válido encontrado."
|
|
148
135
|
],
|
|
149
|
-
"
|
|
150
|
-
"
|
|
136
|
+
"Cannot generate HTML guide, scap content is missing.": [
|
|
137
|
+
"Não é possível gerar guia HTML, o conteúdo SCAP está ausente"
|
|
151
138
|
],
|
|
152
|
-
"
|
|
153
|
-
"
|
|
139
|
+
"Change OpenSCAP Proxy": [
|
|
140
|
+
"Alterar proxy OpenSCAP"
|
|
154
141
|
],
|
|
155
|
-
"
|
|
156
|
-
"
|
|
142
|
+
"Changed": [
|
|
143
|
+
"Alterado(a)"
|
|
157
144
|
],
|
|
158
|
-
"
|
|
159
|
-
"
|
|
145
|
+
"Changed file does not include existing SCAP content profiles": [
|
|
146
|
+
"O arquivo alterado não inclui perfis de conteúdo SCAP existentes"
|
|
160
147
|
],
|
|
161
|
-
"
|
|
162
|
-
"
|
|
148
|
+
"Changed?": [
|
|
149
|
+
"Alterado(a)?"
|
|
163
150
|
],
|
|
164
|
-
"
|
|
165
|
-
"
|
|
151
|
+
"Choose OVAL Content": [
|
|
152
|
+
""
|
|
166
153
|
],
|
|
167
|
-
"
|
|
168
|
-
"
|
|
154
|
+
"Choose Tailoring File": [
|
|
155
|
+
"Escolher um arquivo de personalização"
|
|
169
156
|
],
|
|
170
|
-
"
|
|
171
|
-
"
|
|
157
|
+
"Choose day in month": [
|
|
158
|
+
"Escolher dia no mês"
|
|
172
159
|
],
|
|
173
|
-
"
|
|
174
|
-
"
|
|
160
|
+
"Choose existing SCAP Content": [
|
|
161
|
+
"Escolha um conteúdo SCAP existente"
|
|
175
162
|
],
|
|
176
|
-
"
|
|
177
|
-
"
|
|
163
|
+
"Choose period": [
|
|
164
|
+
"Selecionar período"
|
|
178
165
|
],
|
|
179
|
-
"
|
|
180
|
-
"
|
|
166
|
+
"Choose weekday": [
|
|
167
|
+
"Selecionar dia útil"
|
|
181
168
|
],
|
|
182
|
-
"
|
|
183
|
-
"
|
|
169
|
+
"Close": [
|
|
170
|
+
""
|
|
184
171
|
],
|
|
185
|
-
"
|
|
186
|
-
"
|
|
172
|
+
"Compliance": [
|
|
173
|
+
"Conformidade"
|
|
187
174
|
],
|
|
188
|
-
"
|
|
189
|
-
"
|
|
175
|
+
"Compliance Policies": [
|
|
176
|
+
"Políticas de Conformidade"
|
|
190
177
|
],
|
|
191
|
-
"
|
|
192
|
-
"
|
|
178
|
+
"Compliance Reports": [
|
|
179
|
+
"Relatórios de Conformidade"
|
|
193
180
|
],
|
|
194
|
-
"
|
|
195
|
-
"
|
|
181
|
+
"Compliance Reports Breakdown": [
|
|
182
|
+
"Detalhamento de relatórios de conformidade"
|
|
196
183
|
],
|
|
197
|
-
"
|
|
198
|
-
"
|
|
184
|
+
"Compliance policy summary": [
|
|
185
|
+
"Resumo de política de conformidade"
|
|
199
186
|
],
|
|
200
|
-
"
|
|
201
|
-
"
|
|
187
|
+
"Compliance policy: %s": [
|
|
188
|
+
"Política de conformidade: %s"
|
|
202
189
|
],
|
|
203
|
-
"
|
|
204
|
-
"
|
|
190
|
+
"Compliant": [
|
|
191
|
+
"Compatível(eis)"
|
|
205
192
|
],
|
|
206
|
-
"
|
|
207
|
-
"
|
|
193
|
+
"Compliant hosts": [
|
|
194
|
+
"Hosts compatíveis "
|
|
208
195
|
],
|
|
209
|
-
"
|
|
210
|
-
"
|
|
196
|
+
"Compliant with the policy": [
|
|
197
|
+
"Compatível com a política"
|
|
211
198
|
],
|
|
212
|
-
"
|
|
213
|
-
"
|
|
199
|
+
"Confirm": [
|
|
200
|
+
""
|
|
214
201
|
],
|
|
215
|
-
"
|
|
216
|
-
"
|
|
202
|
+
"Content": [
|
|
203
|
+
""
|
|
217
204
|
],
|
|
218
|
-
"
|
|
219
|
-
"
|
|
205
|
+
"Copy to clipboard": [
|
|
206
|
+
""
|
|
220
207
|
],
|
|
221
|
-
"
|
|
222
|
-
"
|
|
208
|
+
"Could not find host identified by: %s": [
|
|
209
|
+
"Não foi possível encontrar o host identificado por: %s"
|
|
223
210
|
],
|
|
224
|
-
"
|
|
225
|
-
"
|
|
211
|
+
"Could not update Ansible Variables with override: true": [
|
|
212
|
+
"Não foi possível atualizar Variáveis Ansíveis com substituição: verdadeiro"
|
|
213
|
+
],
|
|
214
|
+
"Could not validate %s. Please make sure you have appropriate proxy version to use this functionality": [
|
|
215
|
+
"Não foi possível validar %s. Certifique-se de que você tem a versão adequada de proxy para usar essa função"
|
|
216
|
+
],
|
|
217
|
+
"Could not validate %{file_type}. Error %{error}": [
|
|
218
|
+
"Não foi possível validar %{file_type}. Erro % % de{error}"
|
|
219
|
+
],
|
|
220
|
+
"Create OVAL Content": [
|
|
221
|
+
""
|
|
222
|
+
],
|
|
223
|
+
"Create OVAL Policy": [
|
|
224
|
+
""
|
|
225
|
+
],
|
|
226
|
+
"Create OVAL content": [
|
|
227
|
+
"Criar conteúdo OVAL"
|
|
226
228
|
],
|
|
227
229
|
"Create SCAP content": [
|
|
228
230
|
"Criar conteúdo SCAP"
|
|
229
231
|
],
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
+
"Create a Policy": [
|
|
233
|
+
"Criar uma política"
|
|
232
234
|
],
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
+
"Create a Tailoring file": [
|
|
236
|
+
"Criar um arquivo de personalização"
|
|
235
237
|
],
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
+
"Create an OVAL Policy": [
|
|
239
|
+
"Criar uma política OVAL"
|
|
238
240
|
],
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
+
"Created at": [
|
|
242
|
+
""
|
|
241
243
|
],
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
+
"Custom cron: %s": [
|
|
245
|
+
""
|
|
244
246
|
],
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
+
"Dashboard": [
|
|
248
|
+
"Painel"
|
|
247
249
|
],
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
+
"DataStream Tailoring file": [
|
|
251
|
+
"Arquivo de personalização DataStream"
|
|
250
252
|
],
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
+
"Date": [
|
|
254
|
+
"Data"
|
|
253
255
|
],
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
+
"Default XCCDF profile": [
|
|
257
|
+
"Perfil XCCDF padrão "
|
|
256
258
|
],
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
+
"Delete": [
|
|
260
|
+
"Excluir"
|
|
259
261
|
],
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
+
"Delete OVAL Content": [
|
|
263
|
+
""
|
|
262
264
|
],
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
+
"Delete OVAL Policy": [
|
|
266
|
+
""
|
|
265
267
|
],
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
+
"Delete a Policy": [
|
|
269
|
+
"Excluir uma política"
|
|
268
270
|
],
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
+
"Delete an ARF Report": [
|
|
272
|
+
"Excluir um relatório ARF"
|
|
271
273
|
],
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
+
"Delete an OVAL Policy": [
|
|
275
|
+
"Eliminar uma política OVAL"
|
|
274
276
|
],
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
+
"Delete compliance policy %s with all of its reports?": [
|
|
278
|
+
"Excluir política de conformidade %s com todos os relatórios?"
|
|
277
279
|
],
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
+
"Delete compliance report for %s?": [
|
|
281
|
+
"Remover relatório de conformidade para %s?"
|
|
280
282
|
],
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
+
"Delete reports": [
|
|
284
|
+
"Remover relatórios"
|
|
283
285
|
],
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
+
"Delete scap content %s?": [
|
|
287
|
+
"Excluir conteúdo scap %s?"
|
|
286
288
|
],
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
+
"Delete tailoring file %s?": [
|
|
290
|
+
"Excluir arquivo de personalização %s?"
|
|
289
291
|
],
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
+
"Deleted policy": [
|
|
293
|
+
"Política excluída"
|
|
292
294
|
],
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
+
"Deletes a Tailoring file": [
|
|
296
|
+
"Exclui um arquivo de personalização"
|
|
295
297
|
],
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
+
"Deletes an OVAL content": [
|
|
299
|
+
"Elimina um conteúdo OVAL"
|
|
298
300
|
],
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
+
"Deletes an SCAP content": [
|
|
302
|
+
"Remove um conteúdo SCAP"
|
|
301
303
|
],
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
+
"Deployment Options": [
|
|
305
|
+
"Opções de implantação"
|
|
304
306
|
],
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
+
"Description": [
|
|
308
|
+
"Descrição"
|
|
307
309
|
],
|
|
308
|
-
"
|
|
310
|
+
"Details": [
|
|
309
311
|
""
|
|
310
312
|
],
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
+
"Details for Compliance Policy %s": [
|
|
314
|
+
"Detalhes da Política de Conformidade %s"
|
|
313
315
|
],
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
+
"Directory to upload when using \\\"directory\\\" upload type": [
|
|
317
|
+
"Diretório para carregar ao usar o tipo \\\"diretório\\\" de carregamento"
|
|
316
318
|
],
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
+
"Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment.": [
|
|
320
|
+
""
|
|
319
321
|
],
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
+
"Documentation": [
|
|
323
|
+
"Documentação"
|
|
322
324
|
],
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
+
"Done": [
|
|
326
|
+
""
|
|
325
327
|
],
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
+
"Download": [
|
|
329
|
+
"Baixar"
|
|
328
330
|
],
|
|
329
|
-
"
|
|
330
|
-
""
|
|
331
|
+
"Download ARF report in HTML": [
|
|
332
|
+
"Fazer download do relatório ARF em HTML"
|
|
331
333
|
],
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
+
"Download HTML": [
|
|
335
|
+
"Fazer download de HTML"
|
|
334
336
|
],
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
+
"Download XML in bzip": [
|
|
338
|
+
"Baixar XML em bzip"
|
|
337
339
|
],
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
+
"Download a Tailoring file as XML": [
|
|
341
|
+
"Fazer download de um arquivo personalização como XML"
|
|
340
342
|
],
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
+
"Download an SCAP content as XML": [
|
|
344
|
+
"Fazer download de um conteúdo SCAP como XML"
|
|
343
345
|
],
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
+
"Download bzipped ARF report": [
|
|
347
|
+
"Fazer download do relatório ARF compactado com bzip2 "
|
|
346
348
|
],
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
+
"Edit %s": [
|
|
350
|
+
"Editar"
|
|
349
351
|
],
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
+
"Effective Profile": [
|
|
353
|
+
"Perfil efetivo"
|
|
352
354
|
],
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
+
"Error!": [
|
|
356
|
+
"Erro!"
|
|
355
357
|
],
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
+
"Every puppet run ensures the foreman_scap_client is configured according to the policy.": [
|
|
359
|
+
""
|
|
360
|
+
],
|
|
361
|
+
"Expected an array of files to upload, got: %s.": [
|
|
362
|
+
""
|
|
363
|
+
],
|
|
364
|
+
"Failed": [
|
|
365
|
+
"Falhou"
|
|
358
366
|
],
|
|
359
367
|
"Failed and Othered": [
|
|
360
368
|
"Reprovado(s) e Outros"
|
|
@@ -362,107 +370,134 @@
|
|
|
362
370
|
"Failed only": [
|
|
363
371
|
"Somente reprovado(s)"
|
|
364
372
|
],
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
],
|
|
368
|
-
"Delete reports": [
|
|
369
|
-
"Remover relatórios"
|
|
370
|
-
],
|
|
371
|
-
"Select Action": [
|
|
372
|
-
"Selecionar Ação"
|
|
373
|
-
],
|
|
374
|
-
"%s - The following compliance reports are about to be changed": [
|
|
375
|
-
"%s - Os relatórios de conformidade a seguir serão alterados em breve"
|
|
376
|
-
],
|
|
377
|
-
"No proxy found!": [
|
|
378
|
-
"Nenhum proxy encontrado!"
|
|
373
|
+
"Failed saving %s:": [
|
|
374
|
+
""
|
|
379
375
|
],
|
|
380
|
-
"
|
|
381
|
-
"
|
|
376
|
+
"Failed to create OVAL Policy: %s": [
|
|
377
|
+
""
|
|
382
378
|
],
|
|
383
|
-
"
|
|
384
|
-
"
|
|
379
|
+
"Failed to delete %s compliance reports": [
|
|
380
|
+
"Falha ao remover relatórios de conformidade %s"
|
|
385
381
|
],
|
|
386
|
-
"
|
|
387
|
-
"
|
|
382
|
+
"Failed to delete ARF Report for host %{host_name} reported at %{reported_at}": [
|
|
383
|
+
"Falha ao excluir o relatório ARF para o host %{host_name} relatado em %{reported_at}"
|
|
388
384
|
],
|
|
389
|
-
"
|
|
390
|
-
"
|
|
385
|
+
"Failed to downloaded ARF report as bzip: %s": [
|
|
386
|
+
"Falha ao fazer o donwload do relatório ARF como bzip: %s"
|
|
391
387
|
],
|
|
392
|
-
"
|
|
393
|
-
"
|
|
388
|
+
"Failed to downloaded ARF report in HTML: %s": [
|
|
389
|
+
"Falha ao fazer download do relatório ARF em HTML: %s"
|
|
394
390
|
],
|
|
395
|
-
"
|
|
396
|
-
"
|
|
391
|
+
"Failed to fetch content file from %s": [
|
|
392
|
+
""
|
|
397
393
|
],
|
|
398
|
-
"
|
|
399
|
-
"
|
|
394
|
+
"Failed to fetch spool status from proxy": [
|
|
395
|
+
"Falha ao buscar o status do spool no proxy"
|
|
400
396
|
],
|
|
401
|
-
"
|
|
402
|
-
"
|
|
397
|
+
"Failed to save when overriding parameters for %{config_tool}, cause: %{errors}": [
|
|
398
|
+
"Falha ao salvar durante a substituição dos parâmetros para %{config_tool}, causa: {errors}"
|
|
403
399
|
],
|
|
404
|
-
"
|
|
405
|
-
"
|
|
400
|
+
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy": [
|
|
401
|
+
"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"
|
|
406
402
|
],
|
|
407
403
|
"Failed|F": [
|
|
408
404
|
"Reprovado|R"
|
|
409
405
|
],
|
|
410
|
-
"
|
|
411
|
-
"
|
|
406
|
+
"File": [
|
|
407
|
+
""
|
|
412
408
|
],
|
|
413
|
-
"
|
|
414
|
-
"
|
|
409
|
+
"File Upload": [
|
|
410
|
+
"Carregamento de Arquivo"
|
|
415
411
|
],
|
|
416
|
-
"
|
|
417
|
-
"
|
|
412
|
+
"File name": [
|
|
413
|
+
""
|
|
418
414
|
],
|
|
419
|
-
"
|
|
420
|
-
"
|
|
415
|
+
"File paths to upload when using \\\"files\\\" upload type": [
|
|
416
|
+
"Caminhos de arquivos a serem carregados ao usar \\\"arquivos\\\" tipo upload"
|
|
421
417
|
],
|
|
422
|
-
"
|
|
423
|
-
"
|
|
418
|
+
"Full Report": [
|
|
419
|
+
"Relatório completo"
|
|
424
420
|
],
|
|
425
|
-
"
|
|
426
|
-
"
|
|
421
|
+
"General": [
|
|
422
|
+
"Geral"
|
|
423
|
+
],
|
|
424
|
+
"Has Errata?": [
|
|
425
|
+
"%s Errata"
|
|
426
|
+
],
|
|
427
|
+
"Host": [
|
|
428
|
+
"Máquina"
|
|
429
|
+
],
|
|
430
|
+
"Host Breakdown Chart": [
|
|
431
|
+
"Gráfico de Detalhamento de Host"
|
|
432
|
+
],
|
|
433
|
+
"Host Groups": [
|
|
434
|
+
"Grupos de host"
|
|
427
435
|
],
|
|
428
436
|
"Host compliance details": [
|
|
429
437
|
"Detalhes de conformidade do host "
|
|
430
438
|
],
|
|
439
|
+
"Host details": [
|
|
440
|
+
"Detalhes do Host"
|
|
441
|
+
],
|
|
442
|
+
"Host does not exist anymore": [
|
|
443
|
+
"Host não existe mais "
|
|
444
|
+
],
|
|
445
|
+
"Host is assigned to policy": [
|
|
446
|
+
"Host atribuído a política"
|
|
447
|
+
],
|
|
431
448
|
"Host is deleted": [
|
|
432
449
|
"Host removido"
|
|
433
450
|
],
|
|
434
|
-
"
|
|
435
|
-
"
|
|
451
|
+
"Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again.": [
|
|
452
|
+
"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."
|
|
436
453
|
],
|
|
437
|
-
"
|
|
438
|
-
"
|
|
454
|
+
"Hostgroups": [
|
|
455
|
+
"Grupos de hosts"
|
|
439
456
|
],
|
|
440
|
-
"
|
|
441
|
-
"
|
|
457
|
+
"Hostname": [
|
|
458
|
+
"Nome da máquina"
|
|
442
459
|
],
|
|
443
|
-
"
|
|
444
|
-
"
|
|
460
|
+
"Hosts Breakdown": [
|
|
461
|
+
"Detalhamento dos Hosts"
|
|
445
462
|
],
|
|
446
|
-
"
|
|
447
|
-
"
|
|
463
|
+
"Hosts Count": [
|
|
464
|
+
"Contagem de hosts"
|
|
448
465
|
],
|
|
449
|
-
"
|
|
450
|
-
"
|
|
466
|
+
"Hosts failing this rule": [
|
|
467
|
+
"Hosts causando falhas nesta regra"
|
|
451
468
|
],
|
|
452
|
-
"
|
|
453
|
-
"
|
|
469
|
+
"Hosts no longer assigned: %s": [
|
|
470
|
+
"Hosts não mais atribuídos: %s"
|
|
454
471
|
],
|
|
455
|
-
"
|
|
456
|
-
"
|
|
472
|
+
"Hosts othering this rule": [
|
|
473
|
+
"Hosts diferenciando esta regra"
|
|
457
474
|
],
|
|
458
|
-
"
|
|
459
|
-
"
|
|
475
|
+
"Hosts passing this rule": [
|
|
476
|
+
"Hosts transmitindo esta regra"
|
|
460
477
|
],
|
|
461
|
-
"
|
|
462
|
-
"
|
|
478
|
+
"How the policy should be deployed": [
|
|
479
|
+
"Como a política deve ser implantada"
|
|
463
480
|
],
|
|
464
|
-
"
|
|
465
|
-
"
|
|
481
|
+
"ID of OpenSCAP Proxy": [
|
|
482
|
+
"ID do proxy OpenSCAP"
|
|
483
|
+
],
|
|
484
|
+
"Import Puppet classes": [
|
|
485
|
+
"Importar classes de Puppet"
|
|
486
|
+
],
|
|
487
|
+
"Import facts": [
|
|
488
|
+
"Importar fatos"
|
|
489
|
+
],
|
|
490
|
+
"In Foreman, a compliance policy checklist is defined via %s.": [
|
|
491
|
+
"No Foreman, uma lista de verificação de políticas de conformidade é definida por %s."
|
|
492
|
+
],
|
|
493
|
+
"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 via %s": [
|
|
494
|
+
"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 por %s"
|
|
495
|
+
],
|
|
496
|
+
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\\n via %s": [
|
|
497
|
+
"No Foreman, tailoring_files representam as modificações personalizadas para os perfis XCCDF padrão e podem ser aplicados aos hosts\\n por %s"
|
|
498
|
+
],
|
|
499
|
+
"Incompliant": [
|
|
500
|
+
"Não compatível(eis)"
|
|
466
501
|
],
|
|
467
502
|
"Incompliant hosts": [
|
|
468
503
|
"Hosts não compatíveis"
|
|
@@ -470,837 +505,895 @@
|
|
|
470
505
|
"Inconclusive": [
|
|
471
506
|
"Inconclusivo"
|
|
472
507
|
],
|
|
473
|
-
"
|
|
474
|
-
"
|
|
508
|
+
"Inconclusive results": [
|
|
509
|
+
"Resultados inconclusivos"
|
|
475
510
|
],
|
|
476
|
-
"
|
|
477
|
-
"
|
|
511
|
+
"Is %s param set to be overriden?": [
|
|
512
|
+
"O %s param está pronto para ser substituído?"
|
|
478
513
|
],
|
|
479
|
-
"
|
|
480
|
-
"O
|
|
514
|
+
"Is foreman_ansible present?": [
|
|
515
|
+
"O capataz está presente?"
|
|
481
516
|
],
|
|
482
|
-
"
|
|
483
|
-
"
|
|
517
|
+
"Is theforeman.foreman_scap_client present?": [
|
|
518
|
+
"Oforeman.foreman_scap_client está presente?"
|
|
484
519
|
],
|
|
485
|
-
"
|
|
486
|
-
"
|
|
520
|
+
"It may sometimes be required to adjust the security policy to your specific needs. ": [
|
|
521
|
+
"Algumas vezes, poderá ser necessário ajustar a política de segurança para suas necessidades específicas."
|
|
487
522
|
],
|
|
488
|
-
"
|
|
489
|
-
"
|
|
523
|
+
"Job details": [
|
|
524
|
+
""
|
|
490
525
|
],
|
|
491
|
-
"
|
|
492
|
-
"
|
|
526
|
+
"Latest Compliance Reports": [
|
|
527
|
+
"Relatórios de conformidade mais recentes "
|
|
493
528
|
],
|
|
494
|
-
"
|
|
495
|
-
"
|
|
529
|
+
"Latest reports for policy: %s": [
|
|
530
|
+
"Relatórios mais recentes para a política: %s"
|
|
496
531
|
],
|
|
497
|
-
"
|
|
498
|
-
"
|
|
532
|
+
"List ARF reports": [
|
|
533
|
+
"Listar relatórios ARF"
|
|
499
534
|
],
|
|
500
|
-
"
|
|
501
|
-
"
|
|
535
|
+
"List OVAL Policies": [
|
|
536
|
+
"Listar políticas OVAL"
|
|
502
537
|
],
|
|
503
|
-
"
|
|
504
|
-
"
|
|
538
|
+
"List OVAL contents": [
|
|
539
|
+
"Listar o conteúdo OVAL"
|
|
505
540
|
],
|
|
506
|
-
"
|
|
507
|
-
"
|
|
541
|
+
"List Policies": [
|
|
542
|
+
"Listar políticas"
|
|
508
543
|
],
|
|
509
|
-
"
|
|
510
|
-
"
|
|
544
|
+
"List SCAP content profiles": [
|
|
545
|
+
"Listar perfis de conteúdo SCAP"
|
|
511
546
|
],
|
|
512
|
-
"
|
|
513
|
-
"
|
|
547
|
+
"List SCAP contents": [
|
|
548
|
+
"Listar conteúdos SCAP"
|
|
514
549
|
],
|
|
515
|
-
"
|
|
516
|
-
"
|
|
550
|
+
"List Tailoring files": [
|
|
551
|
+
"Lista de arquivos de personalização"
|
|
517
552
|
],
|
|
518
|
-
"
|
|
519
|
-
"
|
|
553
|
+
"Loading...": [
|
|
554
|
+
"Carregando..."
|
|
520
555
|
],
|
|
521
|
-
"
|
|
522
|
-
"
|
|
556
|
+
"Locations": [
|
|
557
|
+
"Locais"
|
|
523
558
|
],
|
|
524
|
-
"
|
|
525
|
-
"
|
|
559
|
+
"Manual": [
|
|
560
|
+
""
|
|
526
561
|
],
|
|
527
|
-
"
|
|
528
|
-
"
|
|
562
|
+
"Message": [
|
|
563
|
+
"Mensagem"
|
|
529
564
|
],
|
|
530
|
-
"
|
|
531
|
-
"
|
|
565
|
+
"Method": [
|
|
566
|
+
""
|
|
532
567
|
],
|
|
533
|
-
"
|
|
534
|
-
"
|
|
568
|
+
"Monthly, day of month: %s": [
|
|
569
|
+
""
|
|
535
570
|
],
|
|
536
|
-
"
|
|
537
|
-
"
|
|
571
|
+
"More details": [
|
|
572
|
+
"Mais detalhes"
|
|
538
573
|
],
|
|
539
|
-
"
|
|
540
|
-
"
|
|
574
|
+
"Name": [
|
|
575
|
+
"Nome"
|
|
541
576
|
],
|
|
542
|
-
"
|
|
543
|
-
"
|
|
577
|
+
"Never audited": [
|
|
578
|
+
"Nunca auditado"
|
|
544
579
|
],
|
|
545
|
-
"
|
|
546
|
-
"
|
|
580
|
+
"New Compliance Policy": [
|
|
581
|
+
"Nova Política de Conformidade"
|
|
547
582
|
],
|
|
548
|
-
"
|
|
549
|
-
"
|
|
583
|
+
"New OVAL Content": [
|
|
584
|
+
""
|
|
550
585
|
],
|
|
551
|
-
"Policy
|
|
552
|
-
"
|
|
586
|
+
"New Policy": [
|
|
587
|
+
"Nova política"
|
|
553
588
|
],
|
|
554
|
-
"
|
|
555
|
-
"
|
|
589
|
+
"New SCAP Content": [
|
|
590
|
+
"Novo conteúdo SCAP"
|
|
556
591
|
],
|
|
557
|
-
"
|
|
558
|
-
"
|
|
592
|
+
"New Tailoring File": [
|
|
593
|
+
"Novo arquivo de personalização"
|
|
559
594
|
],
|
|
560
|
-
"
|
|
561
|
-
"
|
|
595
|
+
"Next": [
|
|
596
|
+
"Próximo"
|
|
562
597
|
],
|
|
563
|
-
"
|
|
564
|
-
"
|
|
598
|
+
"No": [
|
|
599
|
+
"Não"
|
|
565
600
|
],
|
|
566
|
-
"
|
|
567
|
-
"
|
|
601
|
+
"No ARF reports for this policy": [
|
|
602
|
+
"Nenhum relatório Arf para esta política"
|
|
568
603
|
],
|
|
569
|
-
"
|
|
570
|
-
"Não
|
|
604
|
+
"No CVEs found.": [
|
|
605
|
+
"Não foram encontrados CVEs."
|
|
571
606
|
],
|
|
572
|
-
"
|
|
573
|
-
"
|
|
607
|
+
"No Hostgroups found.": [
|
|
608
|
+
""
|
|
574
609
|
],
|
|
575
|
-
"
|
|
576
|
-
"
|
|
610
|
+
"No OVAL Content found": [
|
|
611
|
+
""
|
|
577
612
|
],
|
|
578
|
-
"
|
|
579
|
-
"
|
|
613
|
+
"No OVAL Contents found.": [
|
|
614
|
+
"Não foi encontrado nenhum conteúdo OVAL."
|
|
580
615
|
],
|
|
581
|
-
"
|
|
582
|
-
"
|
|
616
|
+
"No OVAL Policies found": [
|
|
617
|
+
"Não foram encontradas políticas OVAL"
|
|
583
618
|
],
|
|
584
|
-
"
|
|
585
|
-
"
|
|
619
|
+
"No OVAL Policy found": [
|
|
620
|
+
"Não foi encontrada nenhuma política OVAL"
|
|
586
621
|
],
|
|
587
|
-
"
|
|
588
|
-
"
|
|
622
|
+
"No OpenSCAP Proxy selected.": [
|
|
623
|
+
"Nenhum proxy OpenSCAP selecionado."
|
|
589
624
|
],
|
|
590
|
-
"
|
|
591
|
-
""
|
|
625
|
+
"No OpenSCAP proxy found for %{class} with id %{id}": [
|
|
626
|
+
"Nenhum proxy OpenSCAP encontrado para {class} com ID {id}"
|
|
592
627
|
],
|
|
593
|
-
"
|
|
594
|
-
""
|
|
628
|
+
"No Tailoring file assigned for policy with id %s": [
|
|
629
|
+
"Nenhum arquivo de personalização atribuído à política com ID %s"
|
|
595
630
|
],
|
|
596
|
-
"
|
|
597
|
-
"
|
|
631
|
+
"No Vulnerabilities found": [
|
|
632
|
+
"Não foram encontradas Vulnerabilidades"
|
|
598
633
|
],
|
|
599
|
-
"
|
|
600
|
-
"
|
|
634
|
+
"No available proxy to validate. Returned with error: %s": [
|
|
635
|
+
"Nenhum proxy disponível para validação. Retorno com erro: %s"
|
|
601
636
|
],
|
|
602
|
-
"
|
|
603
|
-
"
|
|
637
|
+
"No compliance policy selected.": [
|
|
638
|
+
"Nenhuma política de conformidade selecionada."
|
|
604
639
|
],
|
|
605
|
-
"
|
|
606
|
-
""
|
|
640
|
+
"No compliance reports selected": [
|
|
641
|
+
"Nenhum relatório de conformidade selecionado"
|
|
607
642
|
],
|
|
608
|
-
"
|
|
609
|
-
""
|
|
643
|
+
"No compliance reports were found.": [
|
|
644
|
+
"Nenhum relatório de conformidade foi encontrado."
|
|
610
645
|
],
|
|
611
|
-
"
|
|
646
|
+
"No hosts selected": [
|
|
647
|
+
"Não foi selecionado nenhum host"
|
|
648
|
+
],
|
|
649
|
+
"No hosts were found with that id, name or query filter": [
|
|
612
650
|
""
|
|
613
651
|
],
|
|
614
|
-
"
|
|
615
|
-
"
|
|
652
|
+
"No proxy found for %{name} or %{url}": [
|
|
653
|
+
"Nenhum proxy encontrado para %{name} ou %{url}"
|
|
616
654
|
],
|
|
617
|
-
"
|
|
618
|
-
"
|
|
655
|
+
"No proxy found!": [
|
|
656
|
+
"Nenhum proxy encontrado!"
|
|
619
657
|
],
|
|
620
|
-
"
|
|
621
|
-
"
|
|
658
|
+
"No proxy with OpenSCAP feature is running.": [
|
|
659
|
+
"Nenhum proxy com recurso OpenSCAP está em execução."
|
|
622
660
|
],
|
|
623
|
-
"
|
|
624
|
-
"
|
|
661
|
+
"No proxy with OpenSCAP feature was found.": [
|
|
662
|
+
"Nenhum proxy com recurso OpenSCAP foi encontrado."
|
|
625
663
|
],
|
|
626
|
-
"
|
|
627
|
-
"
|
|
664
|
+
"No report for this policy": [
|
|
665
|
+
"Nenhum relatório para esta política"
|
|
628
666
|
],
|
|
629
|
-
"
|
|
630
|
-
"
|
|
667
|
+
"No reports available": [
|
|
668
|
+
"Nenhum relatório disponível"
|
|
631
669
|
],
|
|
632
|
-
"
|
|
633
|
-
"
|
|
670
|
+
"No such directory: %s. Please check the path you have provided.": [
|
|
671
|
+
""
|
|
634
672
|
],
|
|
635
|
-
"
|
|
636
|
-
"
|
|
673
|
+
"No valid policy ID provided": [
|
|
674
|
+
"Não foi fornecida uma ID de política válida"
|
|
637
675
|
],
|
|
638
|
-
"
|
|
639
|
-
"
|
|
676
|
+
"None": [
|
|
677
|
+
"Nenhum"
|
|
640
678
|
],
|
|
641
|
-
"
|
|
642
|
-
"
|
|
679
|
+
"None found": [
|
|
680
|
+
"Nenhum(a) localizado(a)"
|
|
643
681
|
],
|
|
644
|
-
"
|
|
645
|
-
"
|
|
682
|
+
"None provided": [
|
|
683
|
+
""
|
|
646
684
|
],
|
|
647
|
-
"
|
|
648
|
-
"
|
|
685
|
+
"None!": [
|
|
686
|
+
"Nenhum(a)!"
|
|
649
687
|
],
|
|
650
|
-
"
|
|
651
|
-
"
|
|
688
|
+
"Not audited": [
|
|
689
|
+
"Sem auditoria"
|
|
652
690
|
],
|
|
653
|
-
"
|
|
654
|
-
"
|
|
691
|
+
"Not compliant with the policy": [
|
|
692
|
+
"Não compatível com a política"
|
|
655
693
|
],
|
|
656
|
-
"
|
|
657
|
-
"
|
|
694
|
+
"Nothing to show": [
|
|
695
|
+
"Nada para exibir"
|
|
658
696
|
],
|
|
659
|
-
"
|
|
660
|
-
"
|
|
697
|
+
"Number of Events": [
|
|
698
|
+
"Número de Eventos"
|
|
661
699
|
],
|
|
662
|
-
"
|
|
663
|
-
"
|
|
700
|
+
"Number of a day in month, note that not all months have same count of days": [
|
|
701
|
+
"Número de dias no mês, observe que nem todos os meses possuem o mesmo número de dias"
|
|
664
702
|
],
|
|
665
|
-
"
|
|
666
|
-
"
|
|
703
|
+
"OS": [
|
|
704
|
+
""
|
|
667
705
|
],
|
|
668
|
-
"
|
|
669
|
-
"
|
|
706
|
+
"OVAL Content": [
|
|
707
|
+
"Conteúdo OVAL"
|
|
670
708
|
],
|
|
671
|
-
"
|
|
709
|
+
"OVAL Content %s successfully created": [
|
|
672
710
|
""
|
|
673
711
|
],
|
|
674
|
-
"
|
|
712
|
+
"OVAL Content Source": [
|
|
675
713
|
""
|
|
676
714
|
],
|
|
677
|
-
"
|
|
678
|
-
"
|
|
715
|
+
"OVAL Content from URL": [
|
|
716
|
+
""
|
|
679
717
|
],
|
|
680
|
-
"
|
|
681
|
-
"
|
|
718
|
+
"OVAL Content from file": [
|
|
719
|
+
""
|
|
682
720
|
],
|
|
683
|
-
"
|
|
684
|
-
"
|
|
721
|
+
"OVAL Content is required to create OVAL Policy. Please create one before proceeding.": [
|
|
722
|
+
""
|
|
685
723
|
],
|
|
686
|
-
"
|
|
687
|
-
"
|
|
724
|
+
"OVAL Content successfully deleted.": [
|
|
725
|
+
""
|
|
688
726
|
],
|
|
689
|
-
"
|
|
690
|
-
"
|
|
727
|
+
"OVAL Contents": [
|
|
728
|
+
"Conteúdo do OVAL"
|
|
691
729
|
],
|
|
692
|
-
"
|
|
693
|
-
"
|
|
730
|
+
"OVAL Contents table": [
|
|
731
|
+
"OVAL Tabela de conteúdos"
|
|
694
732
|
],
|
|
695
|
-
"
|
|
696
|
-
"
|
|
733
|
+
"OVAL Policies": [
|
|
734
|
+
"OVAL Políticas"
|
|
697
735
|
],
|
|
698
|
-
"
|
|
699
|
-
"
|
|
736
|
+
"OVAL Policies Table": [
|
|
737
|
+
"Tabela de Políticas OVAL"
|
|
700
738
|
],
|
|
701
|
-
"
|
|
702
|
-
"
|
|
739
|
+
"OVAL Policy description": [
|
|
740
|
+
"OVAL Descrição da política"
|
|
741
|
+
],
|
|
742
|
+
"OVAL Policy name": [
|
|
743
|
+
"OVAL Nome da política"
|
|
744
|
+
],
|
|
745
|
+
"OVAL Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
746
|
+
"Linha cron de agendamento da política (apenas se o período for == \\\"personalizado\\\")"
|
|
747
|
+
],
|
|
748
|
+
"OVAL Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
749
|
+
"Dia do mês de agendamento da política (apenas se o período for == \\\"mensalmente\\\")"
|
|
750
|
+
],
|
|
751
|
+
"OVAL Policy schedule period (weekly, monthly, custom)": [
|
|
752
|
+
"Período de agendamento da política (semanalmente, mensalmente, personalizado)"
|
|
753
|
+
],
|
|
754
|
+
"OVAL Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
755
|
+
"Dia da semana de agendamento da política (apenas se o período for == \\\"semanalmente\\\")"
|
|
756
|
+
],
|
|
757
|
+
"OVAL Policy succesfully created.": [
|
|
758
|
+
""
|
|
759
|
+
],
|
|
760
|
+
"OVAL content name": [
|
|
761
|
+
"OVAL nome do conteúdo"
|
|
703
762
|
],
|
|
704
|
-
"
|
|
705
|
-
"
|
|
763
|
+
"OVAL policy": [
|
|
764
|
+
""
|
|
706
765
|
],
|
|
707
|
-
"
|
|
708
|
-
"
|
|
766
|
+
"OVAL policy successfully configured with %s.": [
|
|
767
|
+
"Política OVAL configurada com sucesso com %s."
|
|
709
768
|
],
|
|
710
|
-
"
|
|
711
|
-
"
|
|
769
|
+
"OVAL policy was successfully deleted.": [
|
|
770
|
+
""
|
|
712
771
|
],
|
|
713
|
-
"
|
|
714
|
-
"
|
|
772
|
+
"OVAL policy was successfully updated.": [
|
|
773
|
+
""
|
|
715
774
|
],
|
|
716
|
-
"
|
|
717
|
-
"
|
|
775
|
+
"OVAL scan": [
|
|
776
|
+
"Varredura OVAL"
|
|
718
777
|
],
|
|
719
|
-
"
|
|
720
|
-
"
|
|
778
|
+
"Once SCAP content is present, you can create a policy, assign select host groups and schedule to run.": [
|
|
779
|
+
"Quando o conteúdo SCAP estiver presente, você poderá criar uma política, atribuir grupos de host específicos e agendar a execução"
|
|
721
780
|
],
|
|
722
|
-
"
|
|
723
|
-
"
|
|
781
|
+
"OpenSCAP Proxy": [
|
|
782
|
+
"Proxy OpenSCAP"
|
|
724
783
|
],
|
|
725
|
-
"
|
|
726
|
-
"
|
|
784
|
+
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer.": [
|
|
785
|
+
"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."
|
|
727
786
|
],
|
|
728
|
-
"
|
|
729
|
-
"
|
|
787
|
+
"Openscap Proxy": [
|
|
788
|
+
"Proxy OpenSCAP"
|
|
730
789
|
],
|
|
731
|
-
"
|
|
732
|
-
"
|
|
790
|
+
"Organizations": [
|
|
791
|
+
"Organizações"
|
|
733
792
|
],
|
|
734
|
-
"
|
|
735
|
-
"
|
|
793
|
+
"Original File Name": [
|
|
794
|
+
""
|
|
736
795
|
],
|
|
737
|
-
"
|
|
738
|
-
"
|
|
796
|
+
"Original file name of the OVAL content file": [
|
|
797
|
+
"Nome do arquivo original do arquivo de conteúdo OVAL"
|
|
739
798
|
],
|
|
740
|
-
"
|
|
741
|
-
"
|
|
799
|
+
"Original file name of the XML file": [
|
|
800
|
+
"Nome do arquivo original do arquivo XML"
|
|
742
801
|
],
|
|
743
|
-
"
|
|
744
|
-
"
|
|
802
|
+
"Other": [
|
|
803
|
+
"Outros"
|
|
745
804
|
],
|
|
746
|
-
"
|
|
747
|
-
"
|
|
805
|
+
"Other hosts failing this rule": [
|
|
806
|
+
""
|
|
748
807
|
],
|
|
749
|
-
"
|
|
750
|
-
"
|
|
808
|
+
"Othered": [
|
|
809
|
+
"Outros"
|
|
751
810
|
],
|
|
752
|
-
"
|
|
753
|
-
"
|
|
811
|
+
"Othered|O": [
|
|
812
|
+
"Outros|O"
|
|
754
813
|
],
|
|
755
|
-
"
|
|
756
|
-
"
|
|
814
|
+
"Passed": [
|
|
815
|
+
"Aprovado(s)"
|
|
757
816
|
],
|
|
758
|
-
"
|
|
759
|
-
"
|
|
817
|
+
"Passed|P": [
|
|
818
|
+
"Aprovado|A"
|
|
760
819
|
],
|
|
761
|
-
"
|
|
762
|
-
"
|
|
820
|
+
"Period": [
|
|
821
|
+
""
|
|
763
822
|
],
|
|
764
|
-
"
|
|
765
|
-
"
|
|
823
|
+
"Permission denied": [
|
|
824
|
+
""
|
|
766
825
|
],
|
|
767
|
-
"
|
|
768
|
-
"
|
|
826
|
+
"Please Confirm": [
|
|
827
|
+
"Por favor confirme"
|
|
769
828
|
],
|
|
770
|
-
"
|
|
771
|
-
"
|
|
829
|
+
"Please make sure you understand them by reading our": [
|
|
830
|
+
"Por favor, certifique-se de compreendê-los lendo nosso"
|
|
772
831
|
],
|
|
773
|
-
"
|
|
774
|
-
"
|
|
832
|
+
"Please specify import type, received: %{received}, expected one of: %{expected}": [
|
|
833
|
+
"Favor especificar o tipo de importação, recebido: %{received}, espera-se um de: % % de{expected}"
|
|
775
834
|
],
|
|
776
|
-
"
|
|
777
|
-
"
|
|
835
|
+
"Policies": [
|
|
836
|
+
"Políticas"
|
|
778
837
|
],
|
|
779
|
-
"
|
|
780
|
-
"
|
|
838
|
+
"Policies with hosts:": [
|
|
839
|
+
"Políticas com hosts:"
|
|
781
840
|
],
|
|
782
|
-
"
|
|
783
|
-
"
|
|
784
|
-
"%s relatórios de conformidade por política",
|
|
785
|
-
"%s relatórios de conformidade por política"
|
|
841
|
+
"Policy": [
|
|
842
|
+
"Política"
|
|
786
843
|
],
|
|
787
844
|
"Policy %s": [
|
|
788
845
|
"Política %s"
|
|
789
846
|
],
|
|
790
|
-
"
|
|
791
|
-
"
|
|
847
|
+
"Policy Attributes": [
|
|
848
|
+
"Atributos de política"
|
|
792
849
|
],
|
|
793
|
-
"
|
|
794
|
-
"
|
|
850
|
+
"Policy OVAL content ID": [
|
|
851
|
+
"Política OVAL ID do conteúdo"
|
|
795
852
|
],
|
|
796
|
-
"
|
|
797
|
-
"
|
|
853
|
+
"Policy SCAP content ID": [
|
|
854
|
+
"ID de conteúdo SCAP de política"
|
|
798
855
|
],
|
|
799
|
-
"
|
|
800
|
-
"
|
|
856
|
+
"Policy SCAP content profile ID": [
|
|
857
|
+
"ID de perfil de conteúdo SCAP de política"
|
|
801
858
|
],
|
|
802
|
-
"
|
|
803
|
-
"
|
|
859
|
+
"Policy assigned": [
|
|
860
|
+
"Política atribuída"
|
|
804
861
|
],
|
|
805
|
-
"
|
|
806
|
-
"
|
|
862
|
+
"Policy description": [
|
|
863
|
+
"Descrição da política"
|
|
807
864
|
],
|
|
808
865
|
"Policy is missing": [
|
|
809
866
|
"Política está ausente"
|
|
810
867
|
],
|
|
811
|
-
"
|
|
812
|
-
"
|
|
813
|
-
],
|
|
814
|
-
"Changed": [
|
|
815
|
-
"Alterado(a)"
|
|
816
|
-
],
|
|
817
|
-
"Hostname": [
|
|
818
|
-
"Nome da máquina"
|
|
819
|
-
],
|
|
820
|
-
"Changed?": [
|
|
821
|
-
"Alterado(a)?"
|
|
822
|
-
],
|
|
823
|
-
"Yes": [
|
|
824
|
-
"Sim"
|
|
825
|
-
],
|
|
826
|
-
"No": [
|
|
827
|
-
"Não"
|
|
828
|
-
],
|
|
829
|
-
"No ARF reports for this policy": [
|
|
830
|
-
"Nenhum relatório Arf para esta política"
|
|
868
|
+
"Policy name": [
|
|
869
|
+
"Nome da política "
|
|
831
870
|
],
|
|
832
|
-
"
|
|
833
|
-
"
|
|
871
|
+
"Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
872
|
+
"Linha cron de agendamento da política (apenas se o período for == \\\"personalizado\\\")"
|
|
834
873
|
],
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"Total de %{hosts} hosts",
|
|
838
|
-
"Total de %{hosts} hosts"
|
|
874
|
+
"Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
875
|
+
"Dia do mês de agendamento da política (apenas se o período for == \\\"mensalmente\\\")"
|
|
839
876
|
],
|
|
840
|
-
"
|
|
841
|
-
"
|
|
877
|
+
"Policy schedule period (weekly, monthly, custom)": [
|
|
878
|
+
"Período de agendamento da política (semanalmente, mensalmente, personalizado)"
|
|
842
879
|
],
|
|
843
|
-
"
|
|
844
|
-
"
|
|
880
|
+
"Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
881
|
+
"Dia da semana de agendamento da política (apenas se o período for == \\\"semanalmente\\\")"
|
|
845
882
|
],
|
|
846
|
-
"
|
|
847
|
-
"
|
|
883
|
+
"Policy with id %s not found.": [
|
|
884
|
+
"Política com ID %s não encontrada."
|
|
848
885
|
],
|
|
849
|
-
"
|
|
850
|
-
"
|
|
886
|
+
"Profile": [
|
|
887
|
+
""
|
|
851
888
|
],
|
|
852
|
-
"
|
|
853
|
-
"
|
|
889
|
+
"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.": [
|
|
890
|
+
"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."
|
|
854
891
|
],
|
|
855
|
-
"
|
|
856
|
-
"
|
|
892
|
+
"Puppet class": [
|
|
893
|
+
"Classe de puppet"
|
|
857
894
|
],
|
|
858
|
-
"
|
|
859
|
-
"
|
|
895
|
+
"Rationale": [
|
|
896
|
+
"Base lógica"
|
|
860
897
|
],
|
|
861
|
-
"
|
|
862
|
-
"
|
|
898
|
+
"Reboot the system(s)": [
|
|
899
|
+
""
|
|
863
900
|
],
|
|
864
|
-
"
|
|
865
|
-
"
|
|
901
|
+
"Red Hat %s default content": [
|
|
902
|
+
""
|
|
866
903
|
],
|
|
867
|
-
"
|
|
868
|
-
"
|
|
904
|
+
"Ref Id": [
|
|
905
|
+
"Ref. Id"
|
|
869
906
|
],
|
|
870
|
-
"
|
|
871
|
-
"
|
|
907
|
+
"References": [
|
|
908
|
+
"Referências"
|
|
872
909
|
],
|
|
873
|
-
"
|
|
874
|
-
"
|
|
910
|
+
"Remediate %s rule": [
|
|
911
|
+
""
|
|
875
912
|
],
|
|
876
|
-
"
|
|
877
|
-
"
|
|
913
|
+
"Remediation": [
|
|
914
|
+
""
|
|
878
915
|
],
|
|
879
|
-
"
|
|
916
|
+
"Remediation might render the system non-functional.": [
|
|
880
917
|
""
|
|
881
918
|
],
|
|
882
|
-
"
|
|
919
|
+
"Remote action:": [
|
|
920
|
+
"Ação remota:"
|
|
921
|
+
],
|
|
922
|
+
"Remote job": [
|
|
883
923
|
""
|
|
884
924
|
],
|
|
885
|
-
"
|
|
886
|
-
"
|
|
925
|
+
"Report Metrics": [
|
|
926
|
+
"Relatar Medidas"
|
|
887
927
|
],
|
|
888
|
-
"
|
|
889
|
-
"
|
|
928
|
+
"Report Status": [
|
|
929
|
+
"Relatar Status"
|
|
890
930
|
],
|
|
891
|
-
"
|
|
892
|
-
"
|
|
931
|
+
"Reported At": [
|
|
932
|
+
"Relatado em "
|
|
893
933
|
],
|
|
894
|
-
"
|
|
895
|
-
"
|
|
934
|
+
"Reported at %s": [
|
|
935
|
+
"Relatar em"
|
|
896
936
|
],
|
|
897
|
-
"
|
|
898
|
-
"
|
|
937
|
+
"Reports": [
|
|
938
|
+
"Relatórios"
|
|
899
939
|
],
|
|
900
|
-
"
|
|
901
|
-
"
|
|
940
|
+
"Request the following permissions from administrator: %s.": [
|
|
941
|
+
""
|
|
902
942
|
],
|
|
903
|
-
"
|
|
904
|
-
"
|
|
943
|
+
"Request timed out. Please try increasing Settings -> proxy_request_timeout": [
|
|
944
|
+
"Solicitação expirou. Tente aumentar as configurações -> proxy_request_timeout"
|
|
905
945
|
],
|
|
906
|
-
"
|
|
907
|
-
"
|
|
946
|
+
"Required %{msg_name} %{class} was not found, please ensure it is imported first.": [
|
|
947
|
+
"%{msg_name} {class} necessária não foi encontrada, certifique-se de que ele seja importado primeiro."
|
|
908
948
|
],
|
|
909
|
-
"
|
|
910
|
-
"
|
|
949
|
+
"Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups.": [
|
|
950
|
+
""
|
|
911
951
|
],
|
|
912
|
-
"
|
|
913
|
-
"
|
|
952
|
+
"Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups.": [
|
|
953
|
+
""
|
|
914
954
|
],
|
|
915
|
-
"
|
|
916
|
-
"
|
|
955
|
+
"Resource": [
|
|
956
|
+
"Recurso"
|
|
917
957
|
],
|
|
918
|
-
"
|
|
919
|
-
"
|
|
958
|
+
"Result": [
|
|
959
|
+
"Resultado"
|
|
920
960
|
],
|
|
921
|
-
"
|
|
922
|
-
"
|
|
961
|
+
"Review hosts": [
|
|
962
|
+
""
|
|
923
963
|
],
|
|
924
|
-
"
|
|
925
|
-
"
|
|
964
|
+
"Review remediation": [
|
|
965
|
+
""
|
|
926
966
|
],
|
|
927
|
-
"
|
|
928
|
-
"
|
|
967
|
+
"Review the remediation snippet and apply it to the host manually.": [
|
|
968
|
+
""
|
|
929
969
|
],
|
|
930
|
-
"
|
|
931
|
-
"
|
|
970
|
+
"Review the remediation snippet that will be applied to selected host(s).": [
|
|
971
|
+
""
|
|
932
972
|
],
|
|
933
|
-
"
|
|
934
|
-
"
|
|
973
|
+
"Rule Results": [
|
|
974
|
+
"Resultados de regras"
|
|
935
975
|
],
|
|
936
|
-
"
|
|
937
|
-
"
|
|
976
|
+
"Run": [
|
|
977
|
+
""
|
|
938
978
|
],
|
|
939
|
-
"
|
|
940
|
-
"
|
|
979
|
+
"Run OVAL scan": [
|
|
980
|
+
"Executar OVAL scan"
|
|
941
981
|
],
|
|
942
|
-
"
|
|
943
|
-
"
|
|
982
|
+
"Run OpenSCAP remediation with Ansible": [
|
|
983
|
+
""
|
|
944
984
|
],
|
|
945
|
-
"
|
|
946
|
-
"
|
|
985
|
+
"Run OpenSCAP remediation with Shell": [
|
|
986
|
+
""
|
|
947
987
|
],
|
|
948
|
-
"
|
|
949
|
-
"
|
|
988
|
+
"Run OpenSCAP scan": [
|
|
989
|
+
"Executar verificação OpenSCAP"
|
|
950
990
|
],
|
|
951
|
-
"
|
|
952
|
-
"
|
|
991
|
+
"SCAP Content": [
|
|
992
|
+
"Conteúdo SCAP"
|
|
953
993
|
],
|
|
954
|
-
"
|
|
955
|
-
"
|
|
994
|
+
"SCAP Contents": [
|
|
995
|
+
"Conteúdos SCAP"
|
|
956
996
|
],
|
|
957
|
-
"
|
|
958
|
-
"
|
|
997
|
+
"SCAP DataStream file": [
|
|
998
|
+
"Arquivo SCAP DataStream"
|
|
959
999
|
],
|
|
960
|
-
"
|
|
961
|
-
"
|
|
1000
|
+
"SCAP content": [
|
|
1001
|
+
"Conteúdo SCAP"
|
|
962
1002
|
],
|
|
963
|
-
"
|
|
964
|
-
"
|
|
1003
|
+
"SCAP content name": [
|
|
1004
|
+
"Nome do conteúdo SCAP"
|
|
965
1005
|
],
|
|
966
|
-
"
|
|
967
|
-
"
|
|
1006
|
+
"SCAP contents": [
|
|
1007
|
+
"Conteúdos SCAP"
|
|
968
1008
|
],
|
|
969
|
-
"
|
|
970
|
-
"
|
|
1009
|
+
"SCAP policies summary": [
|
|
1010
|
+
"Resumo de políticas SCAP"
|
|
971
1011
|
],
|
|
972
|
-
"
|
|
973
|
-
"
|
|
1012
|
+
"Scan All Hostgroups": [
|
|
1013
|
+
"Digitalizar todos os grupos anfitriões"
|
|
974
1014
|
],
|
|
975
|
-
"
|
|
976
|
-
"
|
|
1015
|
+
"Schedule": [
|
|
1016
|
+
"Agendamento"
|
|
977
1017
|
],
|
|
978
|
-
"
|
|
979
|
-
"
|
|
1018
|
+
"Select Action": [
|
|
1019
|
+
"Selecionar Ação"
|
|
980
1020
|
],
|
|
981
|
-
"
|
|
982
|
-
"
|
|
1021
|
+
"Select Compliance Policy": [
|
|
1022
|
+
"Selecionar Política de Conformidade"
|
|
983
1023
|
],
|
|
984
|
-
"
|
|
985
|
-
"
|
|
1024
|
+
"Select OpenSCAP Proxy": [
|
|
1025
|
+
"Selecionar proxy OpenSCAP"
|
|
986
1026
|
],
|
|
987
|
-
"
|
|
988
|
-
"
|
|
1027
|
+
"Select all items in this page": [
|
|
1028
|
+
"Selecionar todos os itens desta página"
|
|
989
1029
|
],
|
|
990
|
-
"
|
|
1030
|
+
"Select remediation method": [
|
|
991
1031
|
""
|
|
992
1032
|
],
|
|
993
|
-
"
|
|
1033
|
+
"Select snippet": [
|
|
994
1034
|
""
|
|
995
1035
|
],
|
|
996
|
-
"
|
|
1036
|
+
"Severity": [
|
|
1037
|
+
"Severidade"
|
|
1038
|
+
],
|
|
1039
|
+
"Show Guide": [
|
|
1040
|
+
"Exibir Guia"
|
|
1041
|
+
],
|
|
1042
|
+
"Show a Policy": [
|
|
1043
|
+
"Exibir uma política"
|
|
1044
|
+
],
|
|
1045
|
+
"Show a Tailoring file": [
|
|
1046
|
+
"Exibir um arquivo de personalização"
|
|
1047
|
+
],
|
|
1048
|
+
"Show a policy's OVAL content": [
|
|
997
1049
|
""
|
|
998
1050
|
],
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1051
|
+
"Show a policy's SCAP content": [
|
|
1052
|
+
"Exibir um conteúdo SCAP da política"
|
|
1001
1053
|
],
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1054
|
+
"Show a policy's Tailoring file": [
|
|
1055
|
+
"Exibir o arquivo de personalização da política"
|
|
1004
1056
|
],
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1057
|
+
"Show an ARF report": [
|
|
1058
|
+
"Mostrar um relatório ARF"
|
|
1007
1059
|
],
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1060
|
+
"Show an OVAL Policy": [
|
|
1061
|
+
"Mostrar uma política OVAL"
|
|
1010
1062
|
],
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1063
|
+
"Show an OVAL content": [
|
|
1064
|
+
"Mostrar um conteúdo OVAL"
|
|
1013
1065
|
],
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1066
|
+
"Show an SCAP content": [
|
|
1067
|
+
"Exibir um conteúdo SCAP"
|
|
1016
1068
|
],
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1069
|
+
"Show config information for foreman_scap_client": [
|
|
1070
|
+
"Exibir informações de configuração de foreman_scap_client"
|
|
1019
1071
|
],
|
|
1020
|
-
"
|
|
1021
|
-
"
|
|
1072
|
+
"Show log messages:": [
|
|
1073
|
+
"Exibir mensagens de logs:"
|
|
1022
1074
|
],
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1075
|
+
"Smart Class Parameters": [
|
|
1076
|
+
"Parâmetros de classe inteligentes"
|
|
1025
1077
|
],
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1078
|
+
"Snippet": [
|
|
1079
|
+
""
|
|
1028
1080
|
],
|
|
1029
|
-
"
|
|
1030
|
-
"
|
|
1081
|
+
"Something went wrong while selecting compliance reports - %s": [
|
|
1082
|
+
"Algo deu errado ao selecionar os relatórios de conformidade - %s"
|
|
1031
1083
|
],
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1084
|
+
"Something went wrong while selecting hosts - %s": [
|
|
1085
|
+
"Ocorreu um erro ao selecionar hosts - %s"
|
|
1034
1086
|
],
|
|
1035
1087
|
"Spool errors": [
|
|
1036
1088
|
"Erros de spool"
|
|
1037
1089
|
],
|
|
1038
|
-
"
|
|
1039
|
-
"
|
|
1090
|
+
"Status chart": [
|
|
1091
|
+
"Tabela de status"
|
|
1040
1092
|
],
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
1093
|
+
"Status table": [
|
|
1094
|
+
"Tabela de status"
|
|
1043
1095
|
],
|
|
1044
|
-
"
|
|
1045
|
-
"
|
|
1096
|
+
"Submit": [
|
|
1097
|
+
"Enviar"
|
|
1046
1098
|
],
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
1099
|
+
"Successfully copied to clipboard!": [
|
|
1100
|
+
""
|
|
1049
1101
|
],
|
|
1050
|
-
"
|
|
1051
|
-
"
|
|
1102
|
+
"Successfully deleted %s compliance reports": [
|
|
1103
|
+
"Relatórios de conformidade %s removidos com êxito"
|
|
1052
1104
|
],
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1105
|
+
"Successfully deleted ARF report.": [
|
|
1106
|
+
"Relatório ARF excluído com êxito."
|
|
1055
1107
|
],
|
|
1056
|
-
"
|
|
1057
|
-
"
|
|
1108
|
+
"Summary from %{time} ago to now": [
|
|
1109
|
+
"Resumo de {time} atrás até agora"
|
|
1058
1110
|
],
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1111
|
+
"Summary report for OpenScap from Foreman": [
|
|
1112
|
+
"Relatório de resumo para OpenScap do Foreman"
|
|
1061
1113
|
],
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1114
|
+
"Summary report from Foreman server at %{foreman_url}": [
|
|
1115
|
+
"Relatório de resumo do servidor Foreman em %{foreman_url}"
|
|
1064
1116
|
],
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1117
|
+
"Sync contents that have remote source URL": [
|
|
1118
|
+
"Conteúdo de sincronização que tem URL de fonte remota"
|
|
1067
1119
|
],
|
|
1068
|
-
"
|
|
1069
|
-
""
|
|
1120
|
+
"Table of CVEs for OVAL policy": [
|
|
1121
|
+
"Tabela de CVEs para a política OVAL"
|
|
1070
1122
|
],
|
|
1071
|
-
"
|
|
1123
|
+
"Table of hostgroups for OVAL policy": [
|
|
1072
1124
|
""
|
|
1073
1125
|
],
|
|
1074
|
-
"
|
|
1075
|
-
""
|
|
1126
|
+
"Tailoring File": [
|
|
1127
|
+
"Arquivo de personalização"
|
|
1076
1128
|
],
|
|
1077
|
-
"
|
|
1078
|
-
""
|
|
1129
|
+
"Tailoring Files": [
|
|
1130
|
+
"Arquivos de personalização"
|
|
1079
1131
|
],
|
|
1080
|
-
"
|
|
1081
|
-
""
|
|
1132
|
+
"Tailoring file ID": [
|
|
1133
|
+
"ID do arquivo de personalização"
|
|
1082
1134
|
],
|
|
1083
|
-
"
|
|
1084
|
-
""
|
|
1135
|
+
"Tailoring file name": [
|
|
1136
|
+
"Nome do arquivo de personalização"
|
|
1085
1137
|
],
|
|
1086
|
-
"
|
|
1087
|
-
""
|
|
1138
|
+
"Tailoring file profile ID": [
|
|
1139
|
+
"ID do perfil do arquivo de personalização"
|
|
1088
1140
|
],
|
|
1089
|
-
"%s
|
|
1141
|
+
"The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it.": [
|
|
1090
1142
|
""
|
|
1091
1143
|
],
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1094
|
-
],
|
|
1095
|
-
"SCAP contents": [
|
|
1096
|
-
"Conteúdos SCAP"
|
|
1097
|
-
],
|
|
1098
|
-
"Reports": [
|
|
1099
|
-
"Relatórios"
|
|
1144
|
+
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\\n configuration issues related to security. ": [
|
|
1145
|
+
"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 problemas de configuração relacionados a segurança. "
|
|
1100
1146
|
],
|
|
1101
|
-
"
|
|
1102
|
-
"
|
|
1147
|
+
"The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding.": [
|
|
1148
|
+
"Os seguintes %{key_name} estavam ausentes para %{item_name}: %{key_names}. Certifique-se de que eles sejam importados antes de prosseguir."
|
|
1103
1149
|
],
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1150
|
+
"The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again.": [
|
|
1151
|
+
"As seguintes Variáveis Ansíveis não foram encontradas: %{missing_vars}, favor importá-las antes de executar esta ação novamente."
|
|
1106
1152
|
],
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1153
|
+
"The following Smart Proxies need to be updated to unlock the feature: %s. ": [
|
|
1154
|
+
"Os proxies inteligentes a seguir precisam ser atualizados para desbloquear o recurso: %s. "
|
|
1109
1155
|
],
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1156
|
+
"The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions.": [
|
|
1157
|
+
"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."
|
|
1112
1158
|
],
|
|
1113
|
-
"
|
|
1114
|
-
"
|
|
1159
|
+
"The identifier of the host": [
|
|
1160
|
+
"O identificador do host"
|
|
1115
1161
|
],
|
|
1116
|
-
"
|
|
1117
|
-
"
|
|
1162
|
+
"The job has started on selected host(s), you can check the status on the job details page.": [
|
|
1163
|
+
""
|
|
1118
1164
|
],
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1165
|
+
"There are significant differences in deployment options.": [
|
|
1166
|
+
"Existem diferenças significativas nas opções de implantação."
|
|
1121
1167
|
],
|
|
1122
|
-
"
|
|
1168
|
+
"There is no job to remediate with. Please remediate manually.": [
|
|
1123
1169
|
""
|
|
1124
1170
|
],
|
|
1125
|
-
"
|
|
1171
|
+
"There was a following error when deleting %(name)s: %(error)s": [
|
|
1126
1172
|
""
|
|
1127
1173
|
],
|
|
1128
|
-
"There
|
|
1174
|
+
"There was a following error when updating OVAL policy: %s": [
|
|
1129
1175
|
""
|
|
1130
1176
|
],
|
|
1131
|
-
"
|
|
1177
|
+
"There's no available report for this host": [
|
|
1132
1178
|
""
|
|
1133
1179
|
],
|
|
1134
|
-
"
|
|
1135
|
-
"
|
|
1180
|
+
"This feature is temporarily disabled. ": [
|
|
1181
|
+
"Esse recurso está temporariamente desabilitado."
|
|
1136
1182
|
],
|
|
1137
|
-
"
|
|
1183
|
+
"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.": [
|
|
1138
1184
|
""
|
|
1139
1185
|
],
|
|
1140
|
-
"
|
|
1141
|
-
""
|
|
1186
|
+
"This profile will be used to override the one from scap content": [
|
|
1187
|
+
"Esse perfil será usado para substituir o do conteúdo SCAP"
|
|
1142
1188
|
],
|
|
1143
|
-
"
|
|
1189
|
+
"Title": [
|
|
1144
1190
|
""
|
|
1145
1191
|
],
|
|
1146
|
-
"
|
|
1192
|
+
"To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy.": [
|
|
1147
1193
|
""
|
|
1148
1194
|
],
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1195
|
+
"Total": [
|
|
1196
|
+
"Total"
|
|
1151
1197
|
],
|
|
1152
|
-
"
|
|
1153
|
-
""
|
|
1198
|
+
"Total hosts with policy: %s": [
|
|
1199
|
+
"Total de hosts com política: %s"
|
|
1154
1200
|
],
|
|
1155
|
-
"
|
|
1156
|
-
""
|
|
1201
|
+
"Total hosts with reports where policy is no longer assigned.": [
|
|
1202
|
+
"Total de hosts com relatórios onde a política não está mais atribuída."
|
|
1157
1203
|
],
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1204
|
+
"Total of one host": [
|
|
1205
|
+
"Total de um host",
|
|
1206
|
+
"Total de %{hosts} hosts",
|
|
1207
|
+
"Total de %{hosts} hosts"
|
|
1160
1208
|
],
|
|
1161
|
-
"
|
|
1209
|
+
"Type a hostgroup name...": [
|
|
1162
1210
|
""
|
|
1163
1211
|
],
|
|
1212
|
+
"Type of the upload": [
|
|
1213
|
+
"Tipo de upload"
|
|
1214
|
+
],
|
|
1164
1215
|
"URL": [
|
|
1165
1216
|
""
|
|
1166
1217
|
],
|
|
1167
|
-
"
|
|
1168
|
-
""
|
|
1218
|
+
"URL of the OVAL content file": [
|
|
1219
|
+
"URL do arquivo de conteúdo OVAL"
|
|
1169
1220
|
],
|
|
1170
|
-
"
|
|
1171
|
-
"
|
|
1221
|
+
"Unable to get HTML version of requested report from Smart Proxy": [
|
|
1222
|
+
"Não foi possível obter a versão HTML do relatório solicitado a partir de Smart Proxy"
|
|
1172
1223
|
],
|
|
1173
|
-
"
|
|
1174
|
-
""
|
|
1224
|
+
"Unable to get XML version of requested report from Smart Proxy": [
|
|
1225
|
+
"Não foi possível obter a versão XML do relatório solicitado a partir de Smart Proxy"
|
|
1175
1226
|
],
|
|
1176
|
-
"
|
|
1177
|
-
""
|
|
1227
|
+
"Unassign Compliance Policy": [
|
|
1228
|
+
"Cancelar Atribuição da Política de Conformidade"
|
|
1178
1229
|
],
|
|
1179
|
-
"
|
|
1180
|
-
""
|
|
1230
|
+
"Unknown Compliance status": [
|
|
1231
|
+
"Status de conformidade desconhecido"
|
|
1181
1232
|
],
|
|
1182
|
-
"OVAL
|
|
1183
|
-
""
|
|
1233
|
+
"Unknown OVAL status": [
|
|
1234
|
+
"Status OVAL desconhecido"
|
|
1184
1235
|
],
|
|
1185
|
-
"
|
|
1236
|
+
"Unknown error when submitting data, please try again later.": [
|
|
1186
1237
|
""
|
|
1187
1238
|
],
|
|
1188
|
-
"
|
|
1239
|
+
"Unknown schedule": [
|
|
1189
1240
|
""
|
|
1190
1241
|
],
|
|
1191
|
-
"
|
|
1192
|
-
""
|
|
1242
|
+
"Update a Policy": [
|
|
1243
|
+
"Atualizar uma política"
|
|
1193
1244
|
],
|
|
1194
|
-
"
|
|
1195
|
-
""
|
|
1245
|
+
"Update a Tailoring file": [
|
|
1246
|
+
"Atualizar um arquivo de personalização"
|
|
1196
1247
|
],
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1248
|
+
"Update an OVAL Policy": [
|
|
1249
|
+
"Atualizar uma política OVAL"
|
|
1199
1250
|
],
|
|
1200
|
-
"
|
|
1201
|
-
""
|
|
1251
|
+
"Update an OVAL content": [
|
|
1252
|
+
"Atualizar um conteúdo OVAL"
|
|
1202
1253
|
],
|
|
1203
|
-
"
|
|
1204
|
-
""
|
|
1254
|
+
"Update an SCAP content": [
|
|
1255
|
+
"Atualizar um conteúdo SCAP"
|
|
1205
1256
|
],
|
|
1206
|
-
"
|
|
1207
|
-
""
|
|
1257
|
+
"Updated hosts: Assigned with OpenSCAP Proxy: %s": [
|
|
1258
|
+
"Hosts atualizados: atribuídos com proxy de OpenSCAP: %s"
|
|
1208
1259
|
],
|
|
1209
|
-
"
|
|
1210
|
-
""
|
|
1260
|
+
"Updated hosts: Assigned with compliance policy: %s": [
|
|
1261
|
+
"Hosts atualizados: atribuídos com política de conformidade: %s"
|
|
1211
1262
|
],
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1263
|
+
"Updated hosts: Unassigned from compliance policy '%s'": [
|
|
1264
|
+
"Hosts atualizados: Cancelada atribuição à política '%s'"
|
|
1214
1265
|
],
|
|
1215
|
-
"
|
|
1216
|
-
""
|
|
1266
|
+
"Upload New SCAP Content": [
|
|
1267
|
+
"Carregar Novo Conteúdo SCAP"
|
|
1217
1268
|
],
|
|
1218
|
-
"
|
|
1219
|
-
""
|
|
1269
|
+
"Upload New Tailoring file": [
|
|
1270
|
+
"Atualizar novo arquivo de personalização"
|
|
1220
1271
|
],
|
|
1221
|
-
"
|
|
1222
|
-
""
|
|
1272
|
+
"Upload an ARF report": [
|
|
1273
|
+
"Carregar um relatório Arf"
|
|
1223
1274
|
],
|
|
1224
|
-
"
|
|
1225
|
-
""
|
|
1275
|
+
"Upload an OVAL report - a list of CVEs for given host": [
|
|
1276
|
+
"Upload de um relatório OVAL - uma lista de CVEs para determinado host"
|
|
1226
1277
|
],
|
|
1227
|
-
"
|
|
1228
|
-
""
|
|
1278
|
+
"Upload new SCAP content file": [
|
|
1279
|
+
"Carregar novo arquivo de conteúdo SCAP"
|
|
1229
1280
|
],
|
|
1230
|
-
"
|
|
1281
|
+
"Upload new Tailoring File": [
|
|
1282
|
+
"Atualizar novo arquivo de personalização"
|
|
1283
|
+
],
|
|
1284
|
+
"Upload scap contents in bulk": [
|
|
1285
|
+
"Carregar o conteúdo do scap em massa"
|
|
1286
|
+
],
|
|
1287
|
+
"View Report": [
|
|
1288
|
+
"Visualizar relatório"
|
|
1289
|
+
],
|
|
1290
|
+
"View full report": [
|
|
1291
|
+
"Visualizar relatório completo"
|
|
1292
|
+
],
|
|
1293
|
+
"View selected hosts": [
|
|
1231
1294
|
""
|
|
1232
1295
|
],
|
|
1233
|
-
"
|
|
1296
|
+
"Was %s configured successfully?": [
|
|
1297
|
+
"O %s foi configurado com sucesso?"
|
|
1298
|
+
],
|
|
1299
|
+
"Was %{model_name} %{name} configured successfully?": [
|
|
1300
|
+
"Foi %{model_name} %{name} configurado com sucesso?"
|
|
1301
|
+
],
|
|
1302
|
+
"Weekly, on %s": [
|
|
1234
1303
|
""
|
|
1235
1304
|
],
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1305
|
+
"XCCDF Profile": [
|
|
1306
|
+
"O Perfil do XCCDF"
|
|
1238
1307
|
],
|
|
1239
|
-
"
|
|
1240
|
-
"
|
|
1308
|
+
"XCCDF Profile in Tailoring File": [
|
|
1309
|
+
"Perfil XCCDF no arquivo de personalização"
|
|
1241
1310
|
],
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1311
|
+
"XML containing OVAL content": [
|
|
1312
|
+
"XML contendo conteúdo OVAL"
|
|
1244
1313
|
],
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1314
|
+
"XML containing SCAP content": [
|
|
1315
|
+
"XML contendo conteúdo SCAP"
|
|
1247
1316
|
],
|
|
1248
|
-
"
|
|
1249
|
-
"
|
|
1317
|
+
"XML containing tailoring file": [
|
|
1318
|
+
"XML contendo arquivo de personalização"
|
|
1250
1319
|
],
|
|
1251
|
-
"
|
|
1252
|
-
""
|
|
1320
|
+
"Yes": [
|
|
1321
|
+
"Sim"
|
|
1253
1322
|
],
|
|
1254
|
-
"
|
|
1323
|
+
"You are not authorized to view the page. ": [
|
|
1255
1324
|
""
|
|
1256
1325
|
],
|
|
1257
|
-
"
|
|
1326
|
+
"You can remediate by running a remote job or you can display a snippet for manual remediation.": [
|
|
1258
1327
|
""
|
|
1259
1328
|
],
|
|
1260
|
-
"
|
|
1261
|
-
"
|
|
1329
|
+
"You can specify custom cron line, e.g. \\\"0 3 * * *\\\", separate each of 5 values by space": [
|
|
1330
|
+
"Você pode especificar cron line personalizado, ex. \\\"0 3 * * *\\\", separe cada um dos 5 valores por espaço "
|
|
1262
1331
|
],
|
|
1263
|
-
"
|
|
1264
|
-
""
|
|
1332
|
+
"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.": [
|
|
1333
|
+
"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."
|
|
1265
1334
|
],
|
|
1266
|
-
"
|
|
1335
|
+
"can't be blank": [
|
|
1267
1336
|
""
|
|
1268
1337
|
],
|
|
1269
|
-
"
|
|
1270
|
-
""
|
|
1338
|
+
"cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy": [
|
|
1339
|
+
"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"
|
|
1271
1340
|
],
|
|
1272
|
-
"
|
|
1341
|
+
"cause: ": [
|
|
1273
1342
|
""
|
|
1274
1343
|
],
|
|
1275
|
-
"
|
|
1276
|
-
""
|
|
1344
|
+
"documentation": [
|
|
1345
|
+
"documentação"
|
|
1277
1346
|
],
|
|
1278
|
-
"
|
|
1279
|
-
""
|
|
1347
|
+
"does not come from selected tailoring file": [
|
|
1348
|
+
"não vem do arquivo de personalização selecionado"
|
|
1280
1349
|
],
|
|
1281
|
-
"
|
|
1282
|
-
""
|
|
1350
|
+
"does not consist of 5 parts separated by space": [
|
|
1351
|
+
"não consiste em cinco partes separadas por espaço"
|
|
1283
1352
|
],
|
|
1284
|
-
"
|
|
1353
|
+
"does not have the selected SCAP content profile": [
|
|
1354
|
+
"não tem o perfil de conteúdo SCAP selecionado"
|
|
1355
|
+
],
|
|
1356
|
+
"foreman_ansible plugin not found, please install it before running this action again.": [
|
|
1357
|
+
"não encontrado, favor instalá-lo antes de executar esta ação novamente."
|
|
1358
|
+
],
|
|
1359
|
+
"hostgroups": [
|
|
1360
|
+
"Grupos de hosts"
|
|
1361
|
+
],
|
|
1362
|
+
"hosts": [
|
|
1363
|
+
"hosts"
|
|
1364
|
+
],
|
|
1365
|
+
"invalid type %s": [
|
|
1366
|
+
"tipo %s inválido"
|
|
1367
|
+
],
|
|
1368
|
+
"is not a valid cronline": [
|
|
1285
1369
|
""
|
|
1286
1370
|
],
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1371
|
+
"is not a valid value": [
|
|
1372
|
+
"não é um valor válido"
|
|
1289
1373
|
],
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1374
|
+
"is not included in SCAP_RESULT": [
|
|
1375
|
+
"não está incluído em SCAP_RESULT"
|
|
1292
1376
|
],
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1377
|
+
"items selected. Uncheck to Clear": [
|
|
1378
|
+
"itens selecionados. Desselecione para Limpar"
|
|
1295
1379
|
],
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1380
|
+
"must be between 1 and 31": [
|
|
1381
|
+
"deve estar entre 1 e 31"
|
|
1298
1382
|
],
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1383
|
+
"must be present when tailoring file present": [
|
|
1384
|
+
"deve estar presente quando o arquivo de personalização está presente"
|
|
1385
|
+
],
|
|
1386
|
+
"must be present when tailoring file profile present": [
|
|
1387
|
+
"deve estar presente quando o perfil do arquivo de personalização está presente"
|
|
1301
1388
|
],
|
|
1302
|
-
"
|
|
1303
|
-
"
|
|
1389
|
+
"must have Openscap feature": [
|
|
1390
|
+
"deve ter o recurso Openscap"
|
|
1391
|
+
],
|
|
1392
|
+
"theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again.": [
|
|
1393
|
+
"theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1394
|
+
],
|
|
1395
|
+
"these Compliance reports": [
|
|
1396
|
+
"esses relatórios de conformidade"
|
|
1304
1397
|
]
|
|
1305
1398
|
}
|
|
1306
1399
|
}
|