foreman_openscap 1.0.10 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/app/controllers/api/v2/compliance/arf_reports_controller.rb +11 -3
- data/app/controllers/api/v2/compliance/policies_controller.rb +2 -9
- data/app/controllers/api/v2/compliance/scap_content_profiles_controller.rb +15 -0
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +2 -8
- data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +2 -8
- data/app/controllers/concerns/foreman_openscap/api/v2/scap_api_controller_extensions.rb +9 -0
- data/app/controllers/policies_controller.rb +1 -1
- data/app/helpers/compliance_hosts_helper.rb +23 -0
- data/app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb +0 -6
- data/app/models/concerns/foreman_openscap/host_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/smart_proxy_extensions.rb +1 -1
- data/app/models/foreman_openscap/policy.rb +12 -0
- data/app/models/foreman_openscap/scap_content_profile.rb +3 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +3 -2
- data/app/views/api/v2/compliance/scap_content_profiles/base.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/main.json.rabl +9 -0
- data/app/views/arf_reports/_list.html.erb +1 -1
- data/app/views/arf_reports/welcome.html.erb +2 -0
- data/app/views/hosts/select_multiple_openscap_proxy.html.erb +1 -1
- data/app/views/policies/disassociate_multiple_hosts.html.erb +1 -1
- data/app/views/policies/select_multiple_hosts.html.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/migrate/20150929152345_move_arf_reports_to_reports_table.rb +0 -2
- data/db/migrate/20200117135424_migrate_port_overrides_to_int.rb +24 -0
- data/lib/foreman_openscap/engine.rb +15 -10
- data/lib/foreman_openscap/helper.rb +1 -1
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.po +244 -241
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.po +38 -38
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.po +285 -283
- data/locale/foreman_openscap.pot +119 -120
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.po +292 -284
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.po +49 -49
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.po +74 -73
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.po +284 -282
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.po +155 -155
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.po +287 -280
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.po +163 -160
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.po +49 -49
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.po +284 -281
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.po +151 -150
- data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +0 -3
- data/test/functional/api/v2/compliance/scap_content_profiles_controller_test.rb +15 -0
- data/test/test_plugin_helper.rb +2 -2
- data/test/unit/concerns/host_extensions_test.rb +7 -0
- data/test/unit/policy_test.rb +19 -0
- metadata +24 -32
- data/app/overrides/hosts/overview/host_compliance_status.rb +0 -4
- data/app/views/compliance_hosts/_compliance_status.erb +0 -6
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
Binary file
|
@@ -1,22 +1,25 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
5
4
|
#
|
5
|
+
# Translators:
|
6
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
7
|
+
# Yulia <yulia.poyarkova@redhat.com>, 2016
|
6
8
|
msgid ""
|
7
9
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
10
|
+
"Project-Id-Version: Foreman\n"
|
9
11
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
12
|
-
"Language-Team: Russian
|
13
|
-
"
|
12
|
+
"PO-Revision-Date: 2019-10-23 20:36+0000\n"
|
13
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
14
|
+
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
15
|
+
"\n"
|
14
16
|
"MIME-Version: 1.0\n"
|
15
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
18
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"
|
18
|
-
"
|
19
|
-
"
|
19
|
+
"Language: ru\n"
|
20
|
+
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
|
21
|
+
"4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=1"
|
22
|
+
"1 && n%100<=14)? 2 : 3);\n"
|
20
23
|
|
21
24
|
msgid " for policy %s"
|
22
25
|
msgstr ""
|
@@ -25,7 +28,7 @@ msgid " through %s"
|
|
25
28
|
msgstr ""
|
26
29
|
|
27
30
|
msgid "%s - The following compliance reports are about to be changed"
|
28
|
-
msgstr ""
|
31
|
+
msgstr "%s: отчеты будут изменены"
|
29
32
|
|
30
33
|
msgid "%s compliance report by policy"
|
31
34
|
msgid_plural "%s compliance reports by policy"
|
@@ -33,13 +36,13 @@ msgstr[0] ""
|
|
33
36
|
msgstr[1] ""
|
34
37
|
|
35
38
|
msgid "%s compliance reports by policy"
|
36
|
-
msgstr ""
|
39
|
+
msgstr "%s отчетов по политике"
|
37
40
|
|
38
41
|
msgid "%s latest report"
|
39
|
-
msgstr ""
|
42
|
+
msgstr "Последний отчет %s"
|
40
43
|
|
41
44
|
msgid "%s reports over time"
|
42
|
-
msgstr ""
|
45
|
+
msgstr "Распределение отчетов %s по времени"
|
43
46
|
|
44
47
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
45
48
|
msgstr ""
|
@@ -54,13 +57,13 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
54
57
|
msgstr ""
|
55
58
|
|
56
59
|
msgid "Action with sub plans"
|
57
|
-
msgstr ""
|
60
|
+
msgstr "Действия с подпланами"
|
58
61
|
|
59
62
|
msgid "Actions"
|
60
|
-
msgstr ""
|
63
|
+
msgstr "Действия"
|
61
64
|
|
62
65
|
msgid "All messages"
|
63
|
-
msgstr ""
|
66
|
+
msgstr "Все сообщения"
|
64
67
|
|
65
68
|
msgid "Ansible role"
|
66
69
|
msgstr ""
|
@@ -75,13 +78,13 @@ msgid "Apply policy to hosts"
|
|
75
78
|
msgstr ""
|
76
79
|
|
77
80
|
msgid "Assign Compliance Policy"
|
78
|
-
msgstr ""
|
81
|
+
msgstr "Выбрать политику"
|
79
82
|
|
80
83
|
msgid "Back"
|
81
|
-
msgstr ""
|
84
|
+
msgstr "Назад"
|
82
85
|
|
83
86
|
msgid "Cancel"
|
84
|
-
msgstr ""
|
87
|
+
msgstr "Отмена"
|
85
88
|
|
86
89
|
msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
|
87
90
|
msgstr ""
|
@@ -93,13 +96,13 @@ msgid "Change OpenSCAP Proxy"
|
|
93
96
|
msgstr ""
|
94
97
|
|
95
98
|
msgid "Changed"
|
96
|
-
msgstr ""
|
99
|
+
msgstr "Изменился"
|
97
100
|
|
98
101
|
msgid "Changed file does not include existing SCAP content profiles"
|
99
102
|
msgstr ""
|
100
103
|
|
101
104
|
msgid "Changed?"
|
102
|
-
msgstr ""
|
105
|
+
msgstr "Изменился?"
|
103
106
|
|
104
107
|
msgid "Choose Tailoring File"
|
105
108
|
msgstr ""
|
@@ -108,49 +111,43 @@ msgid "Choose day in month"
|
|
108
111
|
msgstr ""
|
109
112
|
|
110
113
|
msgid "Choose existing SCAP Content"
|
111
|
-
msgstr ""
|
114
|
+
msgstr "Выберите существующее описание SCAP"
|
112
115
|
|
113
116
|
msgid "Choose period"
|
114
|
-
msgstr ""
|
117
|
+
msgstr "Выберите период"
|
115
118
|
|
116
119
|
msgid "Choose weekday"
|
117
|
-
msgstr ""
|
120
|
+
msgstr "Выберите день недели"
|
118
121
|
|
119
122
|
msgid "Compliance"
|
120
|
-
msgstr ""
|
123
|
+
msgstr "Соответствие стандартам"
|
121
124
|
|
122
125
|
msgid "Compliance Hosts"
|
123
126
|
msgstr ""
|
124
127
|
|
125
128
|
msgid "Compliance Policies"
|
126
|
-
msgstr ""
|
129
|
+
msgstr "Политика соответствия нормам безопасности"
|
127
130
|
|
128
131
|
msgid "Compliance Reports"
|
129
|
-
msgstr ""
|
132
|
+
msgstr "Отчеты о соответствии"
|
130
133
|
|
131
134
|
msgid "Compliance Reports Breakdown"
|
132
135
|
msgstr ""
|
133
136
|
|
134
|
-
msgid "Compliance Status"
|
135
|
-
msgstr ""
|
136
|
-
|
137
137
|
msgid "Compliance policy summary"
|
138
138
|
msgstr ""
|
139
139
|
|
140
140
|
msgid "Compliance policy: %s"
|
141
|
-
msgstr ""
|
142
|
-
|
143
|
-
msgid "Compliance reports breakdown"
|
144
|
-
msgstr ""
|
141
|
+
msgstr "Политика: %s"
|
145
142
|
|
146
143
|
msgid "Compliant"
|
147
|
-
msgstr ""
|
144
|
+
msgstr "Соответствует"
|
148
145
|
|
149
146
|
msgid "Compliant hosts"
|
150
|
-
msgstr ""
|
147
|
+
msgstr "Узлы, соответствующие нормам SCAP"
|
151
148
|
|
152
149
|
msgid "Compliant with the policy"
|
153
|
-
msgstr ""
|
150
|
+
msgstr "Соответствует требованиям политики"
|
154
151
|
|
155
152
|
msgid "Could not find host identified by: %s"
|
156
153
|
msgstr ""
|
@@ -162,7 +159,7 @@ msgid "Could not validate %{file_type}. Error %{error}"
|
|
162
159
|
msgstr ""
|
163
160
|
|
164
161
|
msgid "Create SCAP content"
|
165
|
-
msgstr ""
|
162
|
+
msgstr "Создать описание SCAP"
|
166
163
|
|
167
164
|
msgid "Create a Policy"
|
168
165
|
msgstr ""
|
@@ -174,19 +171,19 @@ msgid "Create client"
|
|
174
171
|
msgstr ""
|
175
172
|
|
176
173
|
msgid "Dashboard"
|
177
|
-
msgstr ""
|
174
|
+
msgstr "Обзор"
|
178
175
|
|
179
176
|
msgid "DataStream Tailoring file"
|
180
177
|
msgstr ""
|
181
178
|
|
182
179
|
msgid "Date"
|
183
|
-
msgstr ""
|
180
|
+
msgstr "Дата"
|
184
181
|
|
185
182
|
msgid "Default XCCDF profile"
|
186
|
-
msgstr ""
|
183
|
+
msgstr "Профиль XCCDF по умолчанию"
|
187
184
|
|
188
185
|
msgid "Delete"
|
189
|
-
msgstr ""
|
186
|
+
msgstr "Удалить"
|
190
187
|
|
191
188
|
msgid "Delete a Policy"
|
192
189
|
msgstr ""
|
@@ -201,13 +198,13 @@ msgid "Delete compliance policy %s with all of its reports?"
|
|
201
198
|
msgstr ""
|
202
199
|
|
203
200
|
msgid "Delete compliance report for %s?"
|
204
|
-
msgstr ""
|
201
|
+
msgstr "Удалить отчет %s?"
|
205
202
|
|
206
203
|
msgid "Delete host"
|
207
204
|
msgstr ""
|
208
205
|
|
209
206
|
msgid "Delete reports"
|
210
|
-
msgstr ""
|
207
|
+
msgstr "Удалить отчеты"
|
211
208
|
|
212
209
|
msgid "Delete scap content %s?"
|
213
210
|
msgstr ""
|
@@ -222,19 +219,19 @@ msgid "Deletes a Tailoring file"
|
|
222
219
|
msgstr ""
|
223
220
|
|
224
221
|
msgid "Deletes an SCAP content"
|
225
|
-
msgstr ""
|
222
|
+
msgstr "Удалить описание SCAP"
|
226
223
|
|
227
224
|
msgid "Deployment Options"
|
228
225
|
msgstr ""
|
229
226
|
|
230
227
|
msgid "Description"
|
231
|
-
msgstr ""
|
228
|
+
msgstr "Описание"
|
232
229
|
|
233
230
|
msgid "Documentation"
|
234
|
-
msgstr ""
|
231
|
+
msgstr "Справка"
|
235
232
|
|
236
233
|
msgid "Download"
|
237
|
-
msgstr ""
|
234
|
+
msgstr "Загрузить"
|
238
235
|
|
239
236
|
msgid "Download ARF report in HTML"
|
240
237
|
msgstr ""
|
@@ -243,7 +240,7 @@ msgid "Download HTML"
|
|
243
240
|
msgstr ""
|
244
241
|
|
245
242
|
msgid "Download XML in bzip"
|
246
|
-
msgstr ""
|
243
|
+
msgstr "Загрузить XML в формате bzip"
|
247
244
|
|
248
245
|
msgid "Download a Tailoring file as XML"
|
249
246
|
msgstr ""
|
@@ -255,10 +252,10 @@ msgid "Download bzipped ARF report"
|
|
255
252
|
msgstr ""
|
256
253
|
|
257
254
|
msgid "Edit Compliance Policy"
|
258
|
-
msgstr ""
|
255
|
+
msgstr "Изменить политику"
|
259
256
|
|
260
257
|
msgid "Edit SCAP Content"
|
261
|
-
msgstr ""
|
258
|
+
msgstr "Изменить описание SCAP"
|
262
259
|
|
263
260
|
msgid "Edit Tailoring File"
|
264
261
|
msgstr ""
|
@@ -267,16 +264,16 @@ msgid "Effective Profile"
|
|
267
264
|
msgstr ""
|
268
265
|
|
269
266
|
msgid "Failed"
|
270
|
-
msgstr ""
|
267
|
+
msgstr "Неудачно"
|
271
268
|
|
272
269
|
msgid "Failed and Othered"
|
273
|
-
msgstr ""
|
270
|
+
msgstr "«Неудачно» и «Другое»"
|
274
271
|
|
275
272
|
msgid "Failed only"
|
276
|
-
msgstr ""
|
273
|
+
msgstr "Только «Неудачно»"
|
277
274
|
|
278
275
|
msgid "Failed to delete %s compliance reports"
|
279
|
-
msgstr ""
|
276
|
+
msgstr "Некоторые отчеты не были удалены (всего %s)"
|
280
277
|
|
281
278
|
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
282
279
|
msgstr ""
|
@@ -298,52 +295,52 @@ msgstr ""
|
|
298
295
|
|
299
296
|
#. TRANSLATORS: initial character of Failed
|
300
297
|
msgid "Failed|F"
|
301
|
-
msgstr ""
|
298
|
+
msgstr "Н"
|
302
299
|
|
303
300
|
msgid "File Upload"
|
304
|
-
msgstr ""
|
301
|
+
msgstr "Добавить файл"
|
305
302
|
|
306
303
|
msgid "Full Report"
|
307
304
|
msgstr ""
|
308
305
|
|
309
306
|
msgid "General"
|
310
|
-
msgstr ""
|
307
|
+
msgstr "Общие"
|
311
308
|
|
312
309
|
msgid "Host"
|
313
|
-
msgstr ""
|
310
|
+
msgstr "Узел"
|
314
311
|
|
315
312
|
msgid "Host Breakdown Chart"
|
316
|
-
msgstr ""
|
313
|
+
msgstr "График распределения по узлам"
|
317
314
|
|
318
315
|
msgid "Host Groups"
|
319
|
-
msgstr ""
|
316
|
+
msgstr "Группы узлов"
|
320
317
|
|
321
318
|
msgid "Host compliance details"
|
322
|
-
msgstr ""
|
319
|
+
msgstr "Соответствие узла нормам безопасности"
|
323
320
|
|
324
321
|
msgid "Host details"
|
325
|
-
msgstr ""
|
322
|
+
msgstr "Свойства узла"
|
326
323
|
|
327
324
|
msgid "Host does not exist anymore"
|
328
|
-
msgstr ""
|
325
|
+
msgstr "Этого узла больше не существует"
|
329
326
|
|
330
327
|
msgid "Host is assigned to policy"
|
331
328
|
msgstr ""
|
332
329
|
|
333
330
|
msgid "Host is deleted"
|
334
|
-
msgstr ""
|
331
|
+
msgstr "Узел удален"
|
335
332
|
|
336
333
|
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
337
334
|
msgstr ""
|
338
335
|
|
339
336
|
msgid "Hostgroups"
|
340
|
-
msgstr ""
|
337
|
+
msgstr "Группы узлов"
|
341
338
|
|
342
339
|
msgid "Hostname"
|
343
|
-
msgstr ""
|
340
|
+
msgstr "Имя узла"
|
344
341
|
|
345
342
|
msgid "Hosts Breakdown"
|
346
|
-
msgstr ""
|
343
|
+
msgstr "Распределение по узлам"
|
347
344
|
|
348
345
|
msgid "Hosts failing this rule"
|
349
346
|
msgstr ""
|
@@ -364,10 +361,10 @@ msgid "ID of OpenSCAP Proxy"
|
|
364
361
|
msgstr ""
|
365
362
|
|
366
363
|
msgid "Import Puppet classes"
|
367
|
-
msgstr ""
|
364
|
+
msgstr "Импорт классов Puppet"
|
368
365
|
|
369
366
|
msgid "Import facts"
|
370
|
-
msgstr ""
|
367
|
+
msgstr "Импорт фактов"
|
371
368
|
|
372
369
|
msgid "In Foreman, a compliance policy checklist is defined via %s."
|
373
370
|
msgstr ""
|
@@ -383,16 +380,16 @@ msgid ""
|
|
383
380
|
msgstr ""
|
384
381
|
|
385
382
|
msgid "Incompliant"
|
386
|
-
msgstr ""
|
383
|
+
msgstr "Не соответствует"
|
387
384
|
|
388
385
|
msgid "Incompliant hosts"
|
389
|
-
msgstr ""
|
386
|
+
msgstr "Узлы, не соответствующие нормам SCAP"
|
390
387
|
|
391
388
|
msgid "Inconclusive"
|
392
|
-
msgstr ""
|
389
|
+
msgstr "Неопределенный результат"
|
393
390
|
|
394
391
|
msgid "Inconclusive results"
|
395
|
-
msgstr ""
|
392
|
+
msgstr "Неопределенные результаты"
|
396
393
|
|
397
394
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
398
395
|
msgstr ""
|
@@ -401,7 +398,7 @@ msgid "Latest Compliance Reports"
|
|
401
398
|
msgstr ""
|
402
399
|
|
403
400
|
msgid "Latest reports for policy: %s"
|
404
|
-
msgstr ""
|
401
|
+
msgstr "Последние отчеты для %s"
|
405
402
|
|
406
403
|
msgid "List ARF reports"
|
407
404
|
msgstr ""
|
@@ -409,29 +406,32 @@ msgstr ""
|
|
409
406
|
msgid "List Policies"
|
410
407
|
msgstr ""
|
411
408
|
|
412
|
-
msgid "List SCAP
|
409
|
+
msgid "List SCAP content profiles"
|
413
410
|
msgstr ""
|
414
411
|
|
412
|
+
msgid "List SCAP contents"
|
413
|
+
msgstr "Возвращает список файлов описания SCAP"
|
414
|
+
|
415
415
|
msgid "List Tailoring files"
|
416
416
|
msgstr ""
|
417
417
|
|
418
418
|
msgid "Loading..."
|
419
|
-
msgstr ""
|
419
|
+
msgstr "Загрузка..."
|
420
420
|
|
421
421
|
msgid "Locations"
|
422
|
-
msgstr ""
|
422
|
+
msgstr "Местоположение"
|
423
423
|
|
424
424
|
msgid "Message"
|
425
|
-
msgstr ""
|
425
|
+
msgstr "Сообщение"
|
426
426
|
|
427
427
|
msgid "More details"
|
428
|
-
msgstr ""
|
428
|
+
msgstr "Подробности"
|
429
429
|
|
430
430
|
msgid "Never audited"
|
431
|
-
msgstr ""
|
431
|
+
msgstr "Никогда не проверялись"
|
432
432
|
|
433
433
|
msgid "New Compliance Policy"
|
434
|
-
msgstr ""
|
434
|
+
msgstr "Новая политика"
|
435
435
|
|
436
436
|
msgid "New Policy"
|
437
437
|
msgstr ""
|
@@ -443,13 +443,13 @@ msgid "New Tailoring File"
|
|
443
443
|
msgstr ""
|
444
444
|
|
445
445
|
msgid "Next"
|
446
|
-
msgstr ""
|
446
|
+
msgstr "Далее"
|
447
447
|
|
448
448
|
msgid "No"
|
449
|
-
msgstr ""
|
449
|
+
msgstr "Нет"
|
450
450
|
|
451
451
|
msgid "No ARF reports for this policy"
|
452
|
-
msgstr ""
|
452
|
+
msgstr "Нет отчетов ARF для этой политики"
|
453
453
|
|
454
454
|
msgid "No OpenSCAP Proxy selected."
|
455
455
|
msgstr ""
|
@@ -461,10 +461,10 @@ msgid "No Tailoring file assigned for policy with id %s"
|
|
461
461
|
msgstr ""
|
462
462
|
|
463
463
|
msgid "No available proxy to validate. Returned with error: %s"
|
464
|
-
msgstr ""
|
464
|
+
msgstr "Нет доступных прокси для проведения проверки. Ошибка: %s"
|
465
465
|
|
466
466
|
msgid "No compliance policy selected."
|
467
|
-
msgstr ""
|
467
|
+
msgstr "Политика соответствий не выбрана."
|
468
468
|
|
469
469
|
msgid "No compliance reports selected"
|
470
470
|
msgstr ""
|
@@ -473,10 +473,10 @@ msgid "No compliance reports were found."
|
|
473
473
|
msgstr ""
|
474
474
|
|
475
475
|
msgid "No hosts selected"
|
476
|
-
msgstr ""
|
476
|
+
msgstr "Не выбран узел"
|
477
477
|
|
478
478
|
msgid "No hosts were found."
|
479
|
-
msgstr ""
|
479
|
+
msgstr "Узлов не найдено."
|
480
480
|
|
481
481
|
msgid "No proxy found for %{name} or %{url}"
|
482
482
|
msgstr ""
|
@@ -491,43 +491,43 @@ msgid "No proxy with OpenSCAP feature was found."
|
|
491
491
|
msgstr ""
|
492
492
|
|
493
493
|
msgid "No report for this policy"
|
494
|
-
msgstr ""
|
494
|
+
msgstr "Нет отчетов"
|
495
495
|
|
496
496
|
msgid "No reports available"
|
497
|
-
msgstr ""
|
497
|
+
msgstr "Нет отчетов"
|
498
498
|
|
499
499
|
msgid "No valid policy ID provided"
|
500
500
|
msgstr ""
|
501
501
|
|
502
502
|
msgid "None"
|
503
|
-
msgstr ""
|
503
|
+
msgstr "Нет"
|
504
504
|
|
505
505
|
msgid "None found"
|
506
|
-
msgstr ""
|
506
|
+
msgstr "Не найдено"
|
507
507
|
|
508
508
|
msgid "None!"
|
509
|
-
msgstr ""
|
509
|
+
msgstr "Нет."
|
510
510
|
|
511
511
|
msgid "Not audited"
|
512
|
-
msgstr ""
|
512
|
+
msgstr "Не проверялся"
|
513
513
|
|
514
514
|
msgid "Not compliant with the policy"
|
515
|
-
msgstr ""
|
515
|
+
msgstr "Не соответствует требованиям политики"
|
516
516
|
|
517
517
|
msgid "Nothing to show"
|
518
|
-
msgstr ""
|
518
|
+
msgstr "Нет результатов"
|
519
519
|
|
520
520
|
msgid "Number of Events"
|
521
|
-
msgstr ""
|
521
|
+
msgstr "Количество событий"
|
522
522
|
|
523
523
|
msgid "Number of a day in month, note that not all months have same count of days"
|
524
|
-
msgstr ""
|
524
|
+
msgstr "Порядковый номер дня в месяце (количество дней в разных месяцах может отличаться)"
|
525
525
|
|
526
526
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
527
527
|
msgstr ""
|
528
528
|
|
529
529
|
msgid "OpenSCAP Proxy"
|
530
|
-
msgstr ""
|
530
|
+
msgstr "Прокси OpenSCAP"
|
531
531
|
|
532
532
|
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
533
533
|
msgstr ""
|
@@ -536,42 +536,42 @@ msgid "Openscap Proxy"
|
|
536
536
|
msgstr ""
|
537
537
|
|
538
538
|
msgid "Organizations"
|
539
|
-
msgstr ""
|
539
|
+
msgstr "Организации"
|
540
540
|
|
541
541
|
msgid "Original file name of the XML file"
|
542
542
|
msgstr ""
|
543
543
|
|
544
544
|
msgid "Other"
|
545
|
-
msgstr ""
|
545
|
+
msgstr "Другое"
|
546
546
|
|
547
547
|
msgid "Othered"
|
548
|
-
msgstr ""
|
548
|
+
msgstr "Другое"
|
549
549
|
|
550
550
|
#. TRANSLATORS: initial character of Othered which is an SCAP term
|
551
551
|
msgid "Othered|O"
|
552
|
-
msgstr ""
|
552
|
+
msgstr "Д"
|
553
553
|
|
554
554
|
msgid "Passed"
|
555
|
-
msgstr ""
|
555
|
+
msgstr "Успешно"
|
556
556
|
|
557
557
|
#. TRANSLATORS: initial character of Passed
|
558
558
|
msgid "Passed|P"
|
559
|
-
msgstr ""
|
559
|
+
msgstr "У"
|
560
560
|
|
561
561
|
msgid "Please Confirm"
|
562
|
-
msgstr ""
|
562
|
+
msgstr "Подтвердите"
|
563
563
|
|
564
564
|
msgid "Policies"
|
565
|
-
msgstr ""
|
565
|
+
msgstr "Политика"
|
566
566
|
|
567
567
|
msgid "Policies with hosts:"
|
568
|
-
msgstr ""
|
568
|
+
msgstr "Политики безопасности с узлами:"
|
569
569
|
|
570
570
|
msgid "Policy"
|
571
|
-
msgstr ""
|
571
|
+
msgstr "Политика"
|
572
572
|
|
573
573
|
msgid "Policy %s"
|
574
|
-
msgstr ""
|
574
|
+
msgstr "Политика %s"
|
575
575
|
|
576
576
|
msgid "Policy Attributes"
|
577
577
|
msgstr ""
|
@@ -586,13 +586,13 @@ msgid "Policy assigned"
|
|
586
586
|
msgstr ""
|
587
587
|
|
588
588
|
msgid "Policy description"
|
589
|
-
msgstr ""
|
589
|
+
msgstr "Описание политики"
|
590
590
|
|
591
591
|
msgid "Policy is missing"
|
592
592
|
msgstr ""
|
593
593
|
|
594
594
|
msgid "Policy name"
|
595
|
-
msgstr ""
|
595
|
+
msgstr "Название политики"
|
596
596
|
|
597
597
|
msgid "Policy schedule cron line (only if period == \"custom\")"
|
598
598
|
msgstr ""
|
@@ -613,31 +613,31 @@ msgid "Proxy failed to send a report from spool to Foreman. This indicates a cor
|
|
613
613
|
msgstr ""
|
614
614
|
|
615
615
|
msgid "Puppet class"
|
616
|
-
msgstr ""
|
616
|
+
msgstr "Класс Puppet"
|
617
617
|
|
618
618
|
msgid "Rationale"
|
619
|
-
msgstr ""
|
619
|
+
msgstr "Обоснование"
|
620
620
|
|
621
621
|
msgid "References"
|
622
|
-
msgstr ""
|
622
|
+
msgstr "Ссылки"
|
623
623
|
|
624
624
|
msgid "Remote action:"
|
625
|
-
msgstr ""
|
625
|
+
msgstr "Удаленное действие:"
|
626
626
|
|
627
627
|
msgid "Report Metrics"
|
628
|
-
msgstr ""
|
628
|
+
msgstr "Метрика"
|
629
629
|
|
630
630
|
msgid "Report Status"
|
631
|
-
msgstr ""
|
631
|
+
msgstr "Состояние"
|
632
632
|
|
633
633
|
msgid "Reported At"
|
634
|
-
msgstr ""
|
634
|
+
msgstr "Получено"
|
635
635
|
|
636
636
|
msgid "Reported at %s"
|
637
637
|
msgstr ""
|
638
638
|
|
639
639
|
msgid "Reports"
|
640
|
-
msgstr ""
|
640
|
+
msgstr "Отчеты"
|
641
641
|
|
642
642
|
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
643
643
|
msgstr ""
|
@@ -646,31 +646,34 @@ msgid "Required %{msg_name} %{class} was not found, please ensure it is imported
|
|
646
646
|
msgstr ""
|
647
647
|
|
648
648
|
msgid "Resource"
|
649
|
-
msgstr ""
|
649
|
+
msgstr "Источник"
|
650
650
|
|
651
651
|
msgid "Result"
|
652
|
+
msgstr "Результат"
|
653
|
+
|
654
|
+
msgid "Rule Results"
|
652
655
|
msgstr ""
|
653
656
|
|
654
657
|
msgid "Run OpenSCAP scan"
|
655
658
|
msgstr ""
|
656
659
|
|
657
660
|
msgid "SCAP Content"
|
658
|
-
msgstr ""
|
661
|
+
msgstr "Описание SCAP"
|
659
662
|
|
660
663
|
msgid "SCAP Contents"
|
661
|
-
msgstr ""
|
664
|
+
msgstr "Описание SCAP"
|
662
665
|
|
663
666
|
msgid "SCAP DataStream file"
|
664
667
|
msgstr ""
|
665
668
|
|
666
669
|
msgid "SCAP content"
|
667
|
-
msgstr ""
|
670
|
+
msgstr "описания SCAP"
|
668
671
|
|
669
672
|
msgid "SCAP content name"
|
670
673
|
msgstr ""
|
671
674
|
|
672
675
|
msgid "SCAP contents"
|
673
|
-
msgstr ""
|
676
|
+
msgstr "Описание SCAP"
|
674
677
|
|
675
678
|
msgid "SCAP policies summary"
|
676
679
|
msgstr ""
|
@@ -679,25 +682,25 @@ msgid "Scap Contents"
|
|
679
682
|
msgstr ""
|
680
683
|
|
681
684
|
msgid "Schedule"
|
682
|
-
msgstr ""
|
685
|
+
msgstr "Расписание"
|
683
686
|
|
684
687
|
msgid "Select Action"
|
685
|
-
msgstr ""
|
688
|
+
msgstr "Действия"
|
686
689
|
|
687
690
|
msgid "Select Compliance Policy"
|
688
|
-
msgstr ""
|
691
|
+
msgstr "Выберите политику"
|
689
692
|
|
690
693
|
msgid "Select OpenSCAP Proxy"
|
691
694
|
msgstr ""
|
692
695
|
|
693
696
|
msgid "Select all items in this page"
|
694
|
-
msgstr ""
|
697
|
+
msgstr "Выберите все элементы на этой странице"
|
695
698
|
|
696
699
|
msgid "Severity"
|
697
|
-
msgstr ""
|
700
|
+
msgstr "Приоритет"
|
698
701
|
|
699
702
|
msgid "Show Guide"
|
700
|
-
msgstr ""
|
703
|
+
msgstr "Показать спецификацию"
|
701
704
|
|
702
705
|
msgid "Show a Policy"
|
703
706
|
msgstr ""
|
@@ -706,7 +709,7 @@ msgid "Show a Tailoring file"
|
|
706
709
|
msgstr ""
|
707
710
|
|
708
711
|
msgid "Show a policy's SCAP content"
|
709
|
-
msgstr ""
|
712
|
+
msgstr "Показать описание политики SCAP"
|
710
713
|
|
711
714
|
msgid "Show a policy's Tailoring file"
|
712
715
|
msgstr ""
|
@@ -715,49 +718,49 @@ msgid "Show an ARF report"
|
|
715
718
|
msgstr ""
|
716
719
|
|
717
720
|
msgid "Show an SCAP content"
|
718
|
-
msgstr ""
|
721
|
+
msgstr "Показать описание SCAP"
|
719
722
|
|
720
723
|
msgid "Show config information for foreman_scap_client"
|
721
724
|
msgstr ""
|
722
725
|
|
723
726
|
msgid "Show log messages:"
|
724
|
-
msgstr ""
|
727
|
+
msgstr "Показать сообщения журнала:"
|
725
728
|
|
726
729
|
msgid "Smart Class Parameters"
|
727
730
|
msgstr ""
|
728
731
|
|
729
732
|
msgid "Something went wrong while selecting compliance reports - %s"
|
730
|
-
msgstr ""
|
733
|
+
msgstr "Произошли ошибки при выборе отчетов: %s"
|
731
734
|
|
732
735
|
msgid "Something went wrong while selecting hosts - %s"
|
733
|
-
msgstr ""
|
736
|
+
msgstr "Произошли ошибки при выборе узлов: %s"
|
734
737
|
|
735
738
|
msgid "Spool errors"
|
736
739
|
msgstr ""
|
737
740
|
|
738
741
|
msgid "Status chart"
|
739
|
-
msgstr ""
|
742
|
+
msgstr "График состояния"
|
740
743
|
|
741
744
|
msgid "Status table"
|
742
|
-
msgstr ""
|
745
|
+
msgstr "Таблица состояния"
|
743
746
|
|
744
747
|
msgid "Submit"
|
745
|
-
msgstr ""
|
748
|
+
msgstr "Применить"
|
746
749
|
|
747
750
|
msgid "Successfully deleted %s compliance reports"
|
748
|
-
msgstr ""
|
751
|
+
msgstr "Успешно удалено отчетов: %s "
|
749
752
|
|
750
753
|
msgid "Successfully deleted ARF report."
|
751
754
|
msgstr ""
|
752
755
|
|
753
756
|
msgid "Summary from %{time} ago to now"
|
754
|
-
msgstr ""
|
757
|
+
msgstr "Сводка с %{time} по настоящий момент"
|
755
758
|
|
756
759
|
msgid "Summary report for OpenScap from Foreman"
|
757
760
|
msgstr ""
|
758
761
|
|
759
762
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
760
|
-
msgstr ""
|
763
|
+
msgstr "Сводный отчет с сервера Foreman: %{foreman_url}"
|
761
764
|
|
762
765
|
msgid "Tailoring File"
|
763
766
|
msgstr ""
|
@@ -798,7 +801,7 @@ msgid "This profile will be used to override the one from scap content"
|
|
798
801
|
msgstr ""
|
799
802
|
|
800
803
|
msgid "Total"
|
801
|
-
msgstr ""
|
804
|
+
msgstr "Всего"
|
802
805
|
|
803
806
|
msgid "Total hosts with policy: %s"
|
804
807
|
msgstr ""
|
@@ -818,10 +821,10 @@ msgid "Unable to get XML version of requested report from Smart Proxy"
|
|
818
821
|
msgstr ""
|
819
822
|
|
820
823
|
msgid "Unassign Compliance Policy"
|
821
|
-
msgstr ""
|
824
|
+
msgstr "Отменить политику"
|
822
825
|
|
823
826
|
msgid "Unknown Compliance status"
|
824
|
-
msgstr ""
|
827
|
+
msgstr "Неизвестный статус"
|
825
828
|
|
826
829
|
msgid "Update a Policy"
|
827
830
|
msgstr ""
|
@@ -830,7 +833,7 @@ msgid "Update a Tailoring file"
|
|
830
833
|
msgstr ""
|
831
834
|
|
832
835
|
msgid "Update an SCAP content"
|
833
|
-
msgstr ""
|
836
|
+
msgstr "Обновить описание SCAP"
|
834
837
|
|
835
838
|
msgid "Update host"
|
836
839
|
msgstr ""
|
@@ -845,31 +848,31 @@ msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
845
848
|
msgstr ""
|
846
849
|
|
847
850
|
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
848
|
-
msgstr ""
|
851
|
+
msgstr "Узлы больше не регламентируются политикой «%s»"
|
849
852
|
|
850
853
|
msgid "Upload New SCAP Content"
|
851
|
-
msgstr ""
|
854
|
+
msgstr "Добавить описание SCAP"
|
852
855
|
|
853
856
|
msgid "Upload New Tailoring file"
|
854
857
|
msgstr ""
|
855
858
|
|
856
859
|
msgid "Upload an ARF report"
|
857
|
-
msgstr ""
|
860
|
+
msgstr "Выгрузить отчет ARF"
|
858
861
|
|
859
862
|
msgid "Upload new SCAP content file"
|
860
|
-
msgstr ""
|
863
|
+
msgstr "Добавление файла описания SCAP"
|
861
864
|
|
862
865
|
msgid "Upload new Tailoring File"
|
863
866
|
msgstr ""
|
864
867
|
|
865
868
|
msgid "View Report"
|
866
|
-
msgstr ""
|
869
|
+
msgstr "Показать отчет"
|
867
870
|
|
868
871
|
msgid "View full report"
|
869
|
-
msgstr ""
|
872
|
+
msgstr "Показать полный отчет"
|
870
873
|
|
871
874
|
msgid "XCCDF Profile"
|
872
|
-
msgstr ""
|
875
|
+
msgstr "Профиль XCCDF"
|
873
876
|
|
874
877
|
msgid "XCCDF Profile in Tailoring File"
|
875
878
|
msgstr ""
|
@@ -881,10 +884,10 @@ msgid "XML containing tailoring file"
|
|
881
884
|
msgstr ""
|
882
885
|
|
883
886
|
msgid "Yes"
|
884
|
-
msgstr ""
|
887
|
+
msgstr "Да"
|
885
888
|
|
886
889
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
887
|
-
msgstr ""
|
890
|
+
msgstr "Вы можете изменить расписание по своему усмотрению. Строка cron должна состоять из пяти значений, разделенных пробелами, например: «0 3 * * *»"
|
888
891
|
|
889
892
|
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."
|
890
893
|
msgstr ""
|
@@ -905,7 +908,7 @@ msgid "does not have the selected SCAP content profile"
|
|
905
908
|
msgstr ""
|
906
909
|
|
907
910
|
msgid "invalid type %s"
|
908
|
-
msgstr ""
|
911
|
+
msgstr "недопустимый тип %s"
|
909
912
|
|
910
913
|
msgid "is not a valid value"
|
911
914
|
msgstr ""
|
@@ -914,7 +917,7 @@ msgid "is not included in SCAP_RESULT"
|
|
914
917
|
msgstr ""
|
915
918
|
|
916
919
|
msgid "items selected. Uncheck to Clear"
|
917
|
-
msgstr ""
|
920
|
+
msgstr "выбрано. Чтобы очистить, снимите флажок"
|
918
921
|
|
919
922
|
msgid "must be between 1 and 31"
|
920
923
|
msgstr ""
|