foreman_openscap 7.1.1 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_openscap/locale/cs_CZ/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/de/foreman_openscap.js +907 -814
- data/app/assets/javascripts/foreman_openscap/locale/en/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/en_GB/foreman_openscap.js +549 -453
- data/app/assets/javascripts/foreman_openscap/locale/es/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/fr/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/gl/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/it/foreman_openscap.js +601 -505
- data/app/assets/javascripts/foreman_openscap/locale/ja/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/ka/foreman_openscap.js +96 -0
- data/app/assets/javascripts/foreman_openscap/locale/ko/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/locale/pt_BR/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/ru/foreman_openscap.js +706 -613
- data/app/assets/javascripts/foreman_openscap/locale/sv_SE/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/zh_CN/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/zh_TW/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/reports.js +5 -0
- data/app/controllers/arf_reports_controller.rb +23 -2
- data/app/helpers/arf_reports_helper.rb +17 -4
- data/app/models/foreman_openscap/arf_report.rb +11 -2
- data/app/views/arf_reports/_output.html.erb +5 -1
- data/app/views/job_templates/run_openscap_remediation_-_ansible_default.erb +27 -0
- data/app/views/job_templates/run_openscap_remediation_-_script_default.erb +24 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20230912122310_add_fixes_to_message.rb +5 -0
- data/lib/foreman_openscap/engine.rb +18 -2
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +5 -16
- data/locale/cs_CZ/foreman_openscap.edit.po +145 -17
- data/locale/cs_CZ/foreman_openscap.po +96 -0
- data/locale/de/foreman_openscap.edit.po +248 -282
- data/locale/de/foreman_openscap.po +96 -0
- data/locale/en/foreman_openscap.edit.po +145 -17
- data/locale/en/foreman_openscap.po +96 -0
- data/locale/en_GB/foreman_openscap.edit.po +145 -17
- data/locale/en_GB/foreman_openscap.po +96 -0
- data/locale/es/foreman_openscap.edit.po +241 -279
- data/locale/es/foreman_openscap.po +96 -0
- data/locale/foreman_openscap.pot +164 -12
- data/locale/fr/foreman_openscap.edit.po +330 -363
- data/locale/fr/foreman_openscap.po +96 -0
- data/locale/gl/foreman_openscap.edit.po +145 -17
- data/locale/gl/foreman_openscap.po +96 -0
- data/locale/it/foreman_openscap.edit.po +145 -17
- data/locale/it/foreman_openscap.po +96 -0
- data/locale/ja/foreman_openscap.edit.po +314 -347
- data/locale/ja/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.edit.po +289 -328
- data/locale/ka/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.po.time_stamp +0 -0
- data/locale/ko/foreman_openscap.edit.po +146 -18
- data/locale/ko/foreman_openscap.po +96 -0
- data/locale/pt_BR/foreman_openscap.edit.po +247 -279
- data/locale/pt_BR/foreman_openscap.po +96 -0
- data/locale/ru/foreman_openscap.edit.po +146 -18
- data/locale/ru/foreman_openscap.po +96 -0
- data/locale/sv_SE/foreman_openscap.edit.po +145 -17
- data/locale/sv_SE/foreman_openscap.po +96 -0
- data/locale/zh_CN/foreman_openscap.edit.po +314 -347
- data/locale/zh_CN/foreman_openscap.po +96 -0
- data/locale/zh_TW/foreman_openscap.edit.po +146 -18
- data/locale/zh_TW/foreman_openscap.po +96 -0
- data/webpack/components/EmptyState.js +6 -2
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationSelectors.js +16 -0
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationWizardContext.js +4 -0
- data/webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js +38 -0
- data/webpack/components/OpenscapRemediationWizard/WizardHeader.js +43 -0
- data/webpack/components/OpenscapRemediationWizard/constants.js +14 -0
- data/webpack/components/OpenscapRemediationWizard/helpers.js +33 -0
- data/webpack/components/OpenscapRemediationWizard/index.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/Finish.js +131 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js +217 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js +176 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.scss +4 -0
- data/webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/index.js +4 -0
- data/webpack/index.js +8 -3
- data/webpack/testHelper.js +6 -5
- metadata +20 -3
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
|
4
|
-
#
|
|
4
|
+
#
|
|
5
5
|
# Translators:
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version:
|
|
8
|
+
"Project-Id-Version: Foreman\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date: 2023-11-28 22:29+0100\n"
|
|
11
10
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
12
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
|
-
"Language-Team: Georgian (http://app.transifex.com/foreman/foreman/language/ka/
|
|
12
|
+
"Language-Team: Georgian (http://app.transifex.com/foreman/foreman/language/ka/"
|
|
13
|
+
")\n"
|
|
14
14
|
"MIME-Version: 1.0\n"
|
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -45,15 +45,12 @@ msgstr "ARF ანგარიშის HTML ფორმატში გად
|
|
|
45
45
|
msgid "Policy with id %s not found."
|
|
46
46
|
msgstr "წესი ID-ით %s არ არსებობს."
|
|
47
47
|
|
|
48
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103
|
|
49
|
-
#: ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
48
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103 ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
50
49
|
msgid "Could not find host identified by: %s"
|
|
51
50
|
msgstr "ჰოსტი იდენტიფიკატორით %s ვერ ვპოვე"
|
|
52
51
|
|
|
53
52
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:108
|
|
54
|
-
msgid ""
|
|
55
|
-
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params "
|
|
56
|
-
"when uploading for %s and host is missing openscap_proxy"
|
|
53
|
+
msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
|
|
57
54
|
msgstr ""
|
|
58
55
|
|
|
59
56
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:120
|
|
@@ -174,7 +171,7 @@ msgstr "ჰოსტი"
|
|
|
174
171
|
|
|
175
172
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:78
|
|
176
173
|
msgid "Show a policy's OVAL content"
|
|
177
|
-
msgstr "
|
|
174
|
+
msgstr ""
|
|
178
175
|
|
|
179
176
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:104
|
|
180
177
|
msgid "OVAL policy successfully configured with %s."
|
|
@@ -292,8 +289,7 @@ msgstr "SCAP შემცველობის სახელი"
|
|
|
292
289
|
msgid "XML containing SCAP content"
|
|
293
290
|
msgstr "SCAP-ის შემცველი XML-ი"
|
|
294
291
|
|
|
295
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42
|
|
296
|
-
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
292
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
297
293
|
msgid "Original file name of the XML file"
|
|
298
294
|
msgstr "XML ფაილის საწყისი სახელი"
|
|
299
295
|
|
|
@@ -326,9 +322,7 @@ msgid "Directory to upload when using \"directory\" upload type"
|
|
|
326
322
|
msgstr "ატვირთვის ტიპის \"directory\" გამოყენებისას ასატვირთი საქაღალდე"
|
|
327
323
|
|
|
328
324
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:86
|
|
329
|
-
msgid ""
|
|
330
|
-
"Please specify import type, received: %{received}, expected one of: "
|
|
331
|
-
"%{expected}"
|
|
325
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
332
326
|
msgstr "მიუთითეთ შემოტანის ტიპი. მიღებულია: %{received}, მოველოდი ერთ-ერთს სიიდან: %{expected}"
|
|
333
327
|
|
|
334
328
|
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
|
|
@@ -376,8 +370,7 @@ msgid "Successfully deleted ARF report."
|
|
|
376
370
|
msgstr "ARF ანგარიში წარმატებით წაიშალა."
|
|
377
371
|
|
|
378
372
|
#: ../app/controllers/arf_reports_controller.rb:57
|
|
379
|
-
msgid ""
|
|
380
|
-
"Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
373
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
381
374
|
msgstr ""
|
|
382
375
|
|
|
383
376
|
#: ../app/controllers/arf_reports_controller.rb:67
|
|
@@ -388,17 +381,17 @@ msgstr "%s შესაბამისობის ანგარიშის
|
|
|
388
381
|
msgid "Successfully deleted %s compliance reports"
|
|
389
382
|
msgstr "%s შესაბამისობის ანგარიში წარმატებით წაიშალა"
|
|
390
383
|
|
|
391
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
384
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
392
385
|
msgid "No compliance reports were found."
|
|
393
386
|
msgstr "შესაბამისობის ანგარიშები ნაპოვნი არაა."
|
|
394
387
|
|
|
395
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
388
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
396
389
|
msgid "No compliance reports selected"
|
|
397
390
|
msgstr "შესაბამისობის ანგარიში არჩეული არაა"
|
|
398
391
|
|
|
399
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
392
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
400
393
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
401
|
-
msgstr "
|
|
394
|
+
msgstr ""
|
|
402
395
|
|
|
403
396
|
#: ../app/controllers/concerns/foreman_openscap/api/v2/hosts_controller_extensions.rb:19
|
|
404
397
|
msgid "Show config information for foreman_scap_client"
|
|
@@ -409,9 +402,7 @@ msgid "The identifier of the host"
|
|
|
409
402
|
msgstr "ჰოსტის იდენტიფიკატორი"
|
|
410
403
|
|
|
411
404
|
#: ../app/controllers/concerns/foreman_openscap/hosts_and_hostgroups_controller_extensions.rb:10
|
|
412
|
-
msgid ""
|
|
413
|
-
"The %s proxy does not have Openscap feature enabled. Either set correct "
|
|
414
|
-
"OpenSCAP Proxy or unset it."
|
|
405
|
+
msgid "The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it."
|
|
415
406
|
msgstr ""
|
|
416
407
|
|
|
417
408
|
#: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
|
|
@@ -440,7 +431,7 @@ msgstr "წესის სწორი ID მითითებული ა
|
|
|
440
431
|
|
|
441
432
|
#: ../app/controllers/policies_controller.rb:129
|
|
442
433
|
msgid "No hosts were found with that id, name or query filter"
|
|
443
|
-
msgstr "
|
|
434
|
+
msgstr ""
|
|
444
435
|
|
|
445
436
|
#: ../app/controllers/policies_controller.rb:134
|
|
446
437
|
msgid "No hosts selected"
|
|
@@ -450,28 +441,15 @@ msgstr "ჰოსტები მონიშნული არაა"
|
|
|
450
441
|
msgid "Something went wrong while selecting hosts - %s"
|
|
451
442
|
msgstr "შეცდომა ჰოსტების მონიშვნისას - %s"
|
|
452
443
|
|
|
453
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
454
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:8
|
|
455
|
-
#: ../app/helpers/compliance_hosts_helper.rb:15
|
|
456
|
-
#: ../app/views/arf_reports/_list.html.erb:11
|
|
457
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
458
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
444
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:16 ../app/helpers/compliance_dashboard_helper.rb:8 ../app/helpers/compliance_hosts_helper.rb:15 ../app/views/arf_reports/_list.html.erb:11 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11 ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
459
445
|
msgid "Failed"
|
|
460
446
|
msgstr "შეცდომა"
|
|
461
447
|
|
|
462
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:17
|
|
463
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:6
|
|
464
|
-
#: ../app/helpers/compliance_hosts_helper.rb:14
|
|
465
|
-
#: ../app/views/arf_reports/_list.html.erb:10
|
|
466
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
467
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
448
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:17 ../app/helpers/compliance_dashboard_helper.rb:6 ../app/helpers/compliance_hosts_helper.rb:14 ../app/views/arf_reports/_list.html.erb:10 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
468
449
|
msgid "Passed"
|
|
469
450
|
msgstr "გაიარა"
|
|
470
451
|
|
|
471
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:18
|
|
472
|
-
#: ../app/views/arf_reports/_list.html.erb:12
|
|
473
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
474
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
452
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:18 ../app/views/arf_reports/_list.html.erb:12 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14 ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
475
453
|
msgid "Other"
|
|
476
454
|
msgstr "სხვები"
|
|
477
455
|
|
|
@@ -499,10 +477,7 @@ msgstr "წარუმატებელია და გადატანი
|
|
|
499
477
|
msgid "Failed only"
|
|
500
478
|
msgstr "მხოლოდ ავარიულები"
|
|
501
479
|
|
|
502
|
-
#: ../app/helpers/arf_reports_helper.rb:20
|
|
503
|
-
#: ../app/views/arf_reports/index.html.erb:1
|
|
504
|
-
#: ../app/views/arf_reports/welcome.html.erb:1
|
|
505
|
-
#: ../app/views/arf_reports/welcome.html.erb:7
|
|
480
|
+
#: ../app/helpers/arf_reports_helper.rb:20 ../app/views/arf_reports/index.html.erb:1 ../app/views/arf_reports/welcome.html.erb:1 ../app/views/arf_reports/welcome.html.erb:7
|
|
506
481
|
msgid "Compliance Reports"
|
|
507
482
|
msgstr "შესაბამისობის ანგარიშები"
|
|
508
483
|
|
|
@@ -534,27 +509,27 @@ msgstr " წესისთვის %s"
|
|
|
534
509
|
msgid " through %s"
|
|
535
510
|
msgstr " %s-ის გავლით"
|
|
536
511
|
|
|
537
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
512
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
538
513
|
msgid "Hosts failing this rule"
|
|
539
514
|
msgstr "ჰოსტები, რომლებსაც არ გააჩნიათ ეს წესი"
|
|
540
515
|
|
|
541
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
516
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
542
517
|
msgid "Hosts passing this rule"
|
|
543
518
|
msgstr "ჰოსტები, რომლებსაც გააჩნიათ, ეს წესი"
|
|
544
519
|
|
|
545
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
520
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
546
521
|
msgid "Hosts othering this rule"
|
|
547
522
|
msgstr "ჰოსტები, რომლებიც გაურკვეველია, აქვთ თუა რა"
|
|
548
523
|
|
|
549
|
-
#: ../app/helpers/
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
524
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
525
|
+
msgid "Remediation"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
528
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:3 ../app/views/arf_reports/_list.html.erb:6 ../app/views/arf_reports/delete_multiple.html.erb:7 ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
553
529
|
msgid "Host"
|
|
554
530
|
msgstr "ჰოსტი"
|
|
555
531
|
|
|
556
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:4
|
|
557
|
-
#: ../app/views/arf_reports/_list.html.erb:8
|
|
532
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
|
|
558
533
|
msgid "Policy"
|
|
559
534
|
msgstr "წესები"
|
|
560
535
|
|
|
@@ -573,8 +548,7 @@ msgstr "ვერ|F"
|
|
|
573
548
|
msgid "Othered|O"
|
|
574
549
|
msgstr "სხვა|O"
|
|
575
550
|
|
|
576
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:10
|
|
577
|
-
#: ../app/helpers/compliance_hosts_helper.rb:16
|
|
551
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
|
|
578
552
|
msgid "Othered"
|
|
579
553
|
msgstr "Othered"
|
|
580
554
|
|
|
@@ -590,10 +564,7 @@ msgstr "შესაბამისობის პოლიტიკის მ
|
|
|
590
564
|
msgid "Change OpenSCAP Proxy"
|
|
591
565
|
msgstr "OpenSCAP-ის პროქსის შეცვლა"
|
|
592
566
|
|
|
593
|
-
#: ../app/helpers/compliance_hosts_helper.rb:37
|
|
594
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
595
|
-
#: ../lib/foreman_openscap/engine.rb:159
|
|
596
|
-
#: ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
567
|
+
#: ../app/helpers/compliance_hosts_helper.rb:37 ../app/models/foreman_openscap/compliance_status.rb:8 ../lib/foreman_openscap/engine.rb:159 ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
597
568
|
msgid "Compliance"
|
|
598
569
|
msgstr "შესაბამისობა"
|
|
599
570
|
|
|
@@ -609,11 +580,7 @@ msgstr "ჰოსტი წაშლილია"
|
|
|
609
580
|
msgid "Choose existing SCAP Content"
|
|
610
581
|
msgstr "არსებული SCAP შემცველობის არჩევა"
|
|
611
582
|
|
|
612
|
-
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63
|
|
613
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
614
|
-
#: ../app/views/policies/_form.html.erb:10
|
|
615
|
-
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
616
|
-
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
583
|
+
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63 ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
|
|
617
584
|
msgid "SCAP Content"
|
|
618
585
|
msgstr "SCAP შემცველობა"
|
|
619
586
|
|
|
@@ -641,18 +608,11 @@ msgstr "XCCDF პროფილი შესაბამისობის ფ
|
|
|
641
608
|
msgid "This profile will be used to override the one from scap content"
|
|
642
609
|
msgstr ""
|
|
643
610
|
|
|
644
|
-
#: ../app/helpers/policies_helper.rb:111
|
|
645
|
-
#: ../app/views/arf_reports/_list.html.erb:54
|
|
646
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116
|
|
647
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
611
|
+
#: ../app/helpers/policies_helper.rb:111 ../app/views/arf_reports/_list.html.erb:54 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
648
612
|
msgid "Submit"
|
|
649
613
|
msgstr "გაგზავნა"
|
|
650
614
|
|
|
651
|
-
#: ../app/helpers/policies_helper.rb:115
|
|
652
|
-
#: ../app/views/arf_reports/_list.html.erb:53
|
|
653
|
-
#: ../webpack/components/ConfirmModal.js:27
|
|
654
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121
|
|
655
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
615
|
+
#: ../app/helpers/policies_helper.rb:115 ../app/views/arf_reports/_list.html.erb:53 ../webpack/components/ConfirmModal.js:27 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
656
616
|
msgid "Cancel"
|
|
657
617
|
msgstr "გაუქმება"
|
|
658
618
|
|
|
@@ -664,8 +624,7 @@ msgstr "შესაბამისი ჰოსტები"
|
|
|
664
624
|
msgid "Incompliant hosts"
|
|
665
625
|
msgstr "შეუსაბამო ჰოსტები"
|
|
666
626
|
|
|
667
|
-
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
668
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
627
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:24
|
|
669
628
|
msgid "Inconclusive"
|
|
670
629
|
msgstr "არადამაჯერებელი"
|
|
671
630
|
|
|
@@ -678,9 +637,7 @@ msgid "Host is assigned to policy"
|
|
|
678
637
|
msgstr "ჰოსტი მინიჭებულია წესზე"
|
|
679
638
|
|
|
680
639
|
#: ../app/helpers/policy_dashboard_helper.rb:44
|
|
681
|
-
msgid ""
|
|
682
|
-
"Host is not assigned to policy but reports were found. You may want to "
|
|
683
|
-
"delete the reports or assign the policy again."
|
|
640
|
+
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
684
641
|
msgstr ""
|
|
685
642
|
|
|
686
643
|
#: ../app/helpers/policy_dashboard_helper.rb:52
|
|
@@ -692,14 +649,11 @@ msgid "Total hosts with reports where policy is no longer assigned."
|
|
|
692
649
|
msgstr "ჰოსტები ჯამში ანგარიშებით, სადაც პოლიტიკა მინიჭებული აღარაა."
|
|
693
650
|
|
|
694
651
|
#: ../app/lib/proxy_api/openscap.rb:21
|
|
695
|
-
msgid ""
|
|
696
|
-
"Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
652
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
697
653
|
msgstr "მოთხოვნის მოლოდინის ვადა ამოიწურა. სცადეთ შეცვალოთ პარამეტრი მორგება -> proxy_request_timeout"
|
|
698
654
|
|
|
699
655
|
#: ../app/lib/proxy_api/openscap.rb:24
|
|
700
|
-
msgid ""
|
|
701
|
-
"Could not validate %s. Please make sure you have appropriate proxy version "
|
|
702
|
-
"to use this functionality"
|
|
656
|
+
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
703
657
|
msgstr ""
|
|
704
658
|
|
|
705
659
|
#: ../app/lib/proxy_api/openscap.rb:27
|
|
@@ -734,9 +688,7 @@ msgstr "%{class}-სთვის ID-ით %{id} OpenScAP-ის პროქს
|
|
|
734
688
|
msgid "does not consist of 5 parts separated by space"
|
|
735
689
|
msgstr "არ შედგება გამოტოვებით გამოყოფილი 5 ნაწილისგან"
|
|
736
690
|
|
|
737
|
-
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21
|
|
738
|
-
#: ../app/models/foreman_openscap/oval_policy.rb:14
|
|
739
|
-
#: ../app/models/foreman_openscap/policy.rb:34
|
|
691
|
+
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21 ../app/models/foreman_openscap/oval_policy.rb:14 ../app/models/foreman_openscap/policy.rb:34
|
|
740
692
|
msgid "is not a valid value"
|
|
741
693
|
msgstr "სწორ მნიშვნელობას არ წარმოადგენს"
|
|
742
694
|
|
|
@@ -744,13 +696,11 @@ msgstr "სწორ მნიშვნელობას არ წარმო
|
|
|
744
696
|
msgid "must be between 1 and 31"
|
|
745
697
|
msgstr "1-დან 31-მდე უნდა იყოს"
|
|
746
698
|
|
|
747
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
748
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
699
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
749
700
|
msgid "Compliant"
|
|
750
701
|
msgstr "შესაბამისი"
|
|
751
702
|
|
|
752
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:26
|
|
753
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
703
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:26 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
754
704
|
msgid "Incompliant"
|
|
755
705
|
msgstr "შეუსაბამო"
|
|
756
706
|
|
|
@@ -778,8 +728,7 @@ msgstr "ნაპოვნია %s მოწყვლადობა ხელ
|
|
|
778
728
|
msgid "Unknown OVAL status"
|
|
779
729
|
msgstr "OVAL-ის უცნობი სტატუსი"
|
|
780
730
|
|
|
781
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
782
|
-
#: ../app/views/policies/_form.html.erb:8
|
|
731
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:8
|
|
783
732
|
msgid "Deployment Options"
|
|
784
733
|
msgstr "განშლის პარამეტრები"
|
|
785
734
|
|
|
@@ -787,29 +736,19 @@ msgstr "განშლის პარამეტრები"
|
|
|
787
736
|
msgid "Policy Attributes"
|
|
788
737
|
msgstr "წესის ატრიბუტები"
|
|
789
738
|
|
|
790
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
791
|
-
#: ../app/views/policies/_form.html.erb:11
|
|
792
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
739
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
793
740
|
msgid "Schedule"
|
|
794
741
|
msgstr "განრიგი"
|
|
795
742
|
|
|
796
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
797
|
-
#: ../app/views/policies/_form.html.erb:13
|
|
798
|
-
#: ../app/views/scap_contents/_form.html.erb:11
|
|
799
|
-
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
743
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
|
|
800
744
|
msgid "Locations"
|
|
801
745
|
msgstr "მდებარეობები"
|
|
802
746
|
|
|
803
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
804
|
-
#: ../app/views/policies/_form.html.erb:16
|
|
805
|
-
#: ../app/views/scap_contents/_form.html.erb:14
|
|
806
|
-
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
747
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
|
|
807
748
|
msgid "Organizations"
|
|
808
749
|
msgstr "ორგანიზაციები"
|
|
809
750
|
|
|
810
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
811
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99
|
|
812
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
751
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99 ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
813
752
|
msgid "Hostgroups"
|
|
814
753
|
msgstr "ჰოსტის ჯგუფები"
|
|
815
754
|
|
|
@@ -838,9 +777,7 @@ msgid "does not have the selected SCAP content profile"
|
|
|
838
777
|
msgstr "scap-ის მითითებული შემცველობის პროფილი არ გააჩნია"
|
|
839
778
|
|
|
840
779
|
#: ../app/models/foreman_openscap/policy.rb:271
|
|
841
|
-
msgid ""
|
|
842
|
-
"cannot assign to %s, all assigned policies must be deployed in the same way,"
|
|
843
|
-
" check 'deploy by' for each assigned policy"
|
|
780
|
+
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
844
781
|
msgstr ""
|
|
845
782
|
|
|
846
783
|
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
|
|
@@ -848,21 +785,15 @@ msgid "invalid type %s"
|
|
|
848
785
|
msgstr "%s-ის არასწორი ტიპი"
|
|
849
786
|
|
|
850
787
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:23
|
|
851
|
-
msgid ""
|
|
852
|
-
"Requires Ansible plugin, %s Ansible role and variables. This will assign the"
|
|
853
|
-
" role to the hosts or selected hostgroups."
|
|
788
|
+
msgid "Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups."
|
|
854
789
|
msgstr ""
|
|
855
790
|
|
|
856
791
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:24
|
|
857
|
-
msgid ""
|
|
858
|
-
"To deploy foreman_scap_client, ansible roles run needs to be triggered "
|
|
859
|
-
"manually. Manual run is also required after any change to this policy."
|
|
792
|
+
msgid "To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy."
|
|
860
793
|
msgstr ""
|
|
861
794
|
|
|
862
795
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:34
|
|
863
|
-
msgid ""
|
|
864
|
-
"theforeman.foreman_scap_client Ansible Role not found, please import it "
|
|
865
|
-
"before running this action again."
|
|
796
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
866
797
|
msgstr ""
|
|
867
798
|
|
|
868
799
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:57
|
|
@@ -874,21 +805,15 @@ msgid "Ansible variables"
|
|
|
874
805
|
msgstr "Ansible-ის ცვლადები"
|
|
875
806
|
|
|
876
807
|
#: ../app/services/foreman_openscap/client_config/manual.rb:14
|
|
877
|
-
msgid ""
|
|
878
|
-
"This leaves the setup of the foreman_scap_client solely on the user. The "
|
|
879
|
-
"policy still needs to be defined in order to link incoming ARF reports."
|
|
808
|
+
msgid "This leaves the setup of the foreman_scap_client solely on the user. The policy still needs to be defined in order to link incoming ARF reports."
|
|
880
809
|
msgstr ""
|
|
881
810
|
|
|
882
811
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:17
|
|
883
|
-
msgid ""
|
|
884
|
-
"Requires %s Puppet class. This will assign the class to the hosts or "
|
|
885
|
-
"selected hostgroups."
|
|
812
|
+
msgid "Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups."
|
|
886
813
|
msgstr ""
|
|
887
814
|
|
|
888
815
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:18
|
|
889
|
-
msgid ""
|
|
890
|
-
"Every puppet run ensures the foreman_scap_client is configured according to "
|
|
891
|
-
"the policy."
|
|
816
|
+
msgid "Every puppet run ensures the foreman_scap_client is configured according to the policy."
|
|
892
817
|
msgstr ""
|
|
893
818
|
|
|
894
819
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:39
|
|
@@ -900,27 +825,19 @@ msgid "Smart Class Parameters"
|
|
|
900
825
|
msgstr "ჭკვიანი კლასის მორგება"
|
|
901
826
|
|
|
902
827
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:19
|
|
903
|
-
msgid ""
|
|
904
|
-
"%{type} was selected to deploy policy to clients, but %{type} is not "
|
|
905
|
-
"available. Are you missing a plugin?"
|
|
828
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
906
829
|
msgstr ""
|
|
907
830
|
|
|
908
831
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:26
|
|
909
|
-
msgid ""
|
|
910
|
-
"Required %{msg_name} %{class} was not found, please ensure it is imported "
|
|
911
|
-
"first."
|
|
832
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
912
833
|
msgstr ""
|
|
913
834
|
|
|
914
835
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:34
|
|
915
|
-
msgid ""
|
|
916
|
-
"The following %{key_name} were missing for %{item_name}: %{key_names}. Make "
|
|
917
|
-
"sure they are imported before proceeding."
|
|
836
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
918
837
|
msgstr ""
|
|
919
838
|
|
|
920
839
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:56
|
|
921
|
-
msgid ""
|
|
922
|
-
"Failed to save when overriding parameters for %{config_tool}, cause: "
|
|
923
|
-
"%{errors}"
|
|
840
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
924
841
|
msgstr "შენახვის შეცდომა %{config_tool}-სთვის პარამეტრების გადაფარვისას. მიზეზი: %{errors}"
|
|
925
842
|
|
|
926
843
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
@@ -928,14 +845,11 @@ msgid "This feature is temporarily disabled. "
|
|
|
928
845
|
msgstr "ფუნქცია დროებით გათიშულია. "
|
|
929
846
|
|
|
930
847
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
931
|
-
msgid ""
|
|
932
|
-
"The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
848
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
933
849
|
msgstr "ფუნქციის ჩასართავად საჭიროა შემდეგი ჭკვიანი პროქსიების განახლება: %s. "
|
|
934
850
|
|
|
935
851
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
936
|
-
msgid ""
|
|
937
|
-
"The following proxies could not be reached: %s. Please make sure they are "
|
|
938
|
-
"available so Foreman can check their versions."
|
|
852
|
+
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
939
853
|
msgstr ""
|
|
940
854
|
|
|
941
855
|
#: ../app/services/foreman_openscap/oval/configure.rb:65
|
|
@@ -959,9 +873,7 @@ msgid "Is foreman_ansible present?"
|
|
|
959
873
|
msgstr "არსებობს ტუ არა foreman_ansible?"
|
|
960
874
|
|
|
961
875
|
#: ../app/services/foreman_openscap/oval/setup.rb:62
|
|
962
|
-
msgid ""
|
|
963
|
-
"foreman_ansible plugin not found, please install it before running this "
|
|
964
|
-
"action again."
|
|
876
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
965
877
|
msgstr "მოდული foreman_ansible ნაპოვნი არაა. სანამ ამ ქმედებას გაუშვებთ, გთხოვთ დააყენოთ."
|
|
966
878
|
|
|
967
879
|
#: ../app/services/foreman_openscap/oval/setup.rb:66
|
|
@@ -973,24 +885,20 @@ msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
|
973
885
|
msgstr "მითითებულია თუ არა აუცილებელი ცვლადები theforeman.foreman_scap_client-სთვის?"
|
|
974
886
|
|
|
975
887
|
#: ../app/services/foreman_openscap/oval/setup.rb:72
|
|
976
|
-
msgid ""
|
|
977
|
-
"The following Ansible Variables were not found: %{missing_vars}, please "
|
|
978
|
-
"import them before running this action again."
|
|
888
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
979
889
|
msgstr ""
|
|
980
890
|
|
|
981
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:76
|
|
982
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:81
|
|
983
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:86
|
|
891
|
+
#: ../app/services/foreman_openscap/oval/setup.rb:76 ../app/services/foreman_openscap/oval/setup.rb:81 ../app/services/foreman_openscap/oval/setup.rb:86
|
|
984
892
|
msgid "Is %s param set to be overriden?"
|
|
985
|
-
msgstr "
|
|
893
|
+
msgstr ""
|
|
986
894
|
|
|
987
895
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:8
|
|
988
896
|
msgid "cause: "
|
|
989
|
-
msgstr "
|
|
897
|
+
msgstr ""
|
|
990
898
|
|
|
991
899
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:28
|
|
992
900
|
msgid "Failed to fetch content file from %s"
|
|
993
|
-
msgstr "
|
|
901
|
+
msgstr ""
|
|
994
902
|
|
|
995
903
|
#: ../app/validators/foreman_openscap/data_stream_validator.rb:9
|
|
996
904
|
msgid "No proxy with OpenSCAP feature was found."
|
|
@@ -1012,15 +920,13 @@ msgstr "შეცვლილი ფაილი არსებულ SCAP შ
|
|
|
1012
920
|
msgid "More details"
|
|
1013
921
|
msgstr "მეტი დეტალი"
|
|
1014
922
|
|
|
1015
|
-
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
1016
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62
|
|
1017
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
923
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
1018
924
|
msgid "Description"
|
|
1019
925
|
msgstr "აღწერილობა"
|
|
1020
926
|
|
|
1021
927
|
#: ../app/views/arf_reports/_detailed_message.html.erb:7
|
|
1022
928
|
msgid "Rationale"
|
|
1023
|
-
msgstr "
|
|
929
|
+
msgstr ""
|
|
1024
930
|
|
|
1025
931
|
#: ../app/views/arf_reports/_detailed_message.html.erb:8
|
|
1026
932
|
msgid "References"
|
|
@@ -1034,8 +940,7 @@ msgstr "ამ გვერდზე ყველა ჩანაწერის
|
|
|
1034
940
|
msgid "items selected. Uncheck to Clear"
|
|
1035
941
|
msgstr "ჩანაწერები მონიშნულია. გასასუფთავებლად მოხსენით მონიშვნა"
|
|
1036
942
|
|
|
1037
|
-
#: ../app/views/arf_reports/_list.html.erb:7
|
|
1038
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
943
|
+
#: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
1039
944
|
msgid "Reported At"
|
|
1040
945
|
msgstr "ანგარიშის დრო"
|
|
1041
946
|
|
|
@@ -1043,12 +948,7 @@ msgstr "ანგარიშის დრო"
|
|
|
1043
948
|
msgid "Openscap Proxy"
|
|
1044
949
|
msgstr "OpenSCAP პროქსი"
|
|
1045
950
|
|
|
1046
|
-
#: ../app/views/arf_reports/_list.html.erb:13
|
|
1047
|
-
#: ../app/views/arf_reports/_output.html.erb:16
|
|
1048
|
-
#: ../app/views/policies/_list.html.erb:8
|
|
1049
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:12
|
|
1050
|
-
#: ../app/views/scap_contents/_list.html.erb:6
|
|
1051
|
-
#: ../app/views/tailoring_files/_list.html.erb:6
|
|
951
|
+
#: ../app/views/arf_reports/_list.html.erb:13 ../app/views/arf_reports/_output.html.erb:16 ../app/views/policies/_list.html.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:12 ../app/views/scap_contents/_list.html.erb:6 ../app/views/tailoring_files/_list.html.erb:6
|
|
1052
952
|
msgid "Actions"
|
|
1053
953
|
msgstr "ქმედებები"
|
|
1054
954
|
|
|
@@ -1128,15 +1028,12 @@ msgstr "XML ფაილის bzip-ში გადმოწერა"
|
|
|
1128
1028
|
msgid "Download HTML"
|
|
1129
1029
|
msgstr "HTML-ის გადმოწერა"
|
|
1130
1030
|
|
|
1131
|
-
#: ../app/views/arf_reports/show_html.html.erb:10
|
|
1132
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1031
|
+
#: ../app/views/arf_reports/show_html.html.erb:10 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1133
1032
|
msgid "Loading..."
|
|
1134
1033
|
msgstr "იტვირთება..."
|
|
1135
1034
|
|
|
1136
1035
|
#: ../app/views/arf_reports/welcome.html.erb:9
|
|
1137
|
-
msgid ""
|
|
1138
|
-
"You don't seem to have any ARF report. ARF report is a summary of a single "
|
|
1139
|
-
"scan occurrence on a particular host for a given Compliance Policy."
|
|
1036
|
+
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."
|
|
1140
1037
|
msgstr ""
|
|
1141
1038
|
|
|
1142
1039
|
#: ../app/views/arf_reports/welcome.html.erb:12
|
|
@@ -1165,8 +1062,7 @@ msgstr "სულ %s ანგარიში"
|
|
|
1165
1062
|
msgid "No report for this policy"
|
|
1166
1063
|
msgstr "ამ წესს ანგარიშები არ გააჩნია"
|
|
1167
1064
|
|
|
1168
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
1169
|
-
#: ../lib/foreman_openscap/engine.rb:183
|
|
1065
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:183
|
|
1170
1066
|
msgid "Latest Compliance Reports"
|
|
1171
1067
|
msgstr "თავსებადობის უახლესი ანგარიშები"
|
|
1172
1068
|
|
|
@@ -1182,8 +1078,7 @@ msgstr "ჰოსტი აღარ არსებობს"
|
|
|
1182
1078
|
msgid "Policy is missing"
|
|
1183
1079
|
msgstr "წესი აღარ არსებობს"
|
|
1184
1080
|
|
|
1185
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
1186
|
-
#: ../lib/foreman_openscap/engine.rb:185
|
|
1081
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:185
|
|
1187
1082
|
msgid "Compliance Reports Breakdown"
|
|
1188
1083
|
msgstr "შესაბამისობის ანგარიშების დაშლა"
|
|
1189
1084
|
|
|
@@ -1199,13 +1094,11 @@ msgstr "ჰოსტის სახელი"
|
|
|
1199
1094
|
msgid "Changed?"
|
|
1200
1095
|
msgstr "შეიცვალა?"
|
|
1201
1096
|
|
|
1202
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1203
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1097
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1204
1098
|
msgid "Yes"
|
|
1205
1099
|
msgstr "დიახ"
|
|
1206
1100
|
|
|
1207
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1208
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1101
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1209
1102
|
msgid "No"
|
|
1210
1103
|
msgstr "არა"
|
|
1211
1104
|
|
|
@@ -1255,38 +1148,23 @@ msgstr "მთავარი"
|
|
|
1255
1148
|
msgid "Host Groups"
|
|
1256
1149
|
msgstr "ჰოსტის ჯგუფები"
|
|
1257
1150
|
|
|
1258
|
-
#: ../app/views/policies/_form.html.erb:45
|
|
1259
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1151
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1260
1152
|
msgid "Choose period"
|
|
1261
1153
|
msgstr "აირჩიეთ პერიოდი"
|
|
1262
1154
|
|
|
1263
|
-
#: ../app/views/policies/_form.html.erb:47
|
|
1264
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1155
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1265
1156
|
msgid "Choose weekday"
|
|
1266
1157
|
msgstr "აირჩიეთ კვირის დღე"
|
|
1267
1158
|
|
|
1268
|
-
#: ../app/views/policies/_form.html.erb:48
|
|
1269
|
-
|
|
1270
|
-
msgid ""
|
|
1271
|
-
"Number of a day in month, note that not all months have same count of days"
|
|
1159
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:13
|
|
1160
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
1272
1161
|
msgstr "თვის დღეების რაოდენობა. გაითვალისწინეთ, რომ ყველა თვეში დღეების რაოდენობა ტოლი არაა"
|
|
1273
1162
|
|
|
1274
|
-
#: ../app/views/policies/_form.html.erb:49
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
msgstr "შეგიძლიათ მიუთითოთ თქვენი cron-ის ხაზი. მაგ: \"0 3 * * *\", ეს 5 მნიშვნელობა გამოტოვებით გამოყავით"
|
|
1280
|
-
|
|
1281
|
-
#: ../app/views/policies/_list.html.erb:3
|
|
1282
|
-
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1283
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1284
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1285
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
1286
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1287
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56
|
|
1288
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31
|
|
1289
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1163
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:14
|
|
1164
|
+
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1165
|
+
msgstr ""
|
|
1166
|
+
|
|
1167
|
+
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1290
1168
|
msgid "Name"
|
|
1291
1169
|
msgstr "სახელი"
|
|
1292
1170
|
|
|
@@ -1296,7 +1174,7 @@ msgstr "შემცველობა"
|
|
|
1296
1174
|
|
|
1297
1175
|
#: ../app/views/policies/_list.html.erb:5
|
|
1298
1176
|
msgid "Profile"
|
|
1299
|
-
msgstr "
|
|
1177
|
+
msgstr ""
|
|
1300
1178
|
|
|
1301
1179
|
#: ../app/views/policies/_list.html.erb:7
|
|
1302
1180
|
msgid "Effective Profile"
|
|
@@ -1318,25 +1196,19 @@ msgstr "გიდის ჩვენება"
|
|
|
1318
1196
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
1319
1197
|
msgstr "წავშალო შესაბამისობის პოლიტიკა %s ყველა მისი ანგარიშით?"
|
|
1320
1198
|
|
|
1321
|
-
#: ../app/views/policies/create.html.erb:1
|
|
1322
|
-
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1199
|
+
#: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1323
1200
|
msgid "New Compliance Policy"
|
|
1324
1201
|
msgstr "შესაბამისობის ახალი წესი"
|
|
1325
1202
|
|
|
1326
|
-
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
1327
|
-
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1203
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1328
1204
|
msgid "Select Compliance Policy"
|
|
1329
1205
|
msgstr "აირჩიეთ შესაბამისობის წესი"
|
|
1330
1206
|
|
|
1331
|
-
#: ../app/views/policies/edit.html.erb:1
|
|
1332
|
-
#: ../app/views/scap_contents/edit.html.erb:1
|
|
1333
|
-
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1207
|
+
#: ../app/views/policies/edit.html.erb:1 ../app/views/scap_contents/edit.html.erb:1 ../app/views/tailoring_files/edit.html.erb:1
|
|
1334
1208
|
msgid "Edit %s"
|
|
1335
1209
|
msgstr "%s-ის ჩასწორება"
|
|
1336
1210
|
|
|
1337
|
-
#: ../app/views/policies/index.html.erb:2
|
|
1338
|
-
#: ../app/views/policies/welcome.html.erb:1
|
|
1339
|
-
#: ../app/views/policies/welcome.html.erb:6
|
|
1211
|
+
#: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
|
|
1340
1212
|
msgid "Compliance Policies"
|
|
1341
1213
|
msgstr "შესაბამისობის წესები"
|
|
1342
1214
|
|
|
@@ -1373,9 +1245,7 @@ msgid "SCAP content"
|
|
|
1373
1245
|
msgstr "SCAP შემცველობა"
|
|
1374
1246
|
|
|
1375
1247
|
#: ../app/views/policies/welcome.html.erb:8
|
|
1376
|
-
msgid ""
|
|
1377
|
-
"Once SCAP content is present, you can create a policy, assign select host "
|
|
1378
|
-
"groups and schedule to run."
|
|
1248
|
+
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
1379
1249
|
msgstr ""
|
|
1380
1250
|
|
|
1381
1251
|
#: ../app/views/policies/welcome.html.erb:12
|
|
@@ -1438,8 +1308,7 @@ msgstr "სტატუსის გრაფიკი"
|
|
|
1438
1308
|
msgid "Latest reports for policy: %s"
|
|
1439
1309
|
msgstr "უახლესი ანგარიშები წესისთვის: %s"
|
|
1440
1310
|
|
|
1441
|
-
#: ../app/views/scap_contents/_form.html.erb:9
|
|
1442
|
-
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
1311
|
+
#: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
|
|
1443
1312
|
msgid "File Upload"
|
|
1444
1313
|
msgstr "ფაილის ატვირთვა"
|
|
1445
1314
|
|
|
@@ -1451,18 +1320,15 @@ msgstr "SCAP DataStream ფაილი"
|
|
|
1451
1320
|
msgid "Title"
|
|
1452
1321
|
msgstr "სათაური"
|
|
1453
1322
|
|
|
1454
|
-
#: ../app/views/scap_contents/_list.html.erb:4
|
|
1455
|
-
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1323
|
+
#: ../app/views/scap_contents/_list.html.erb:4 ../app/views/tailoring_files/_list.html.erb:4
|
|
1456
1324
|
msgid "File name"
|
|
1457
|
-
msgstr "
|
|
1325
|
+
msgstr ""
|
|
1458
1326
|
|
|
1459
|
-
#: ../app/views/scap_contents/_list.html.erb:5
|
|
1460
|
-
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1327
|
+
#: ../app/views/scap_contents/_list.html.erb:5 ../app/views/tailoring_files/_list.html.erb:5
|
|
1461
1328
|
msgid "Created at"
|
|
1462
|
-
msgstr "
|
|
1329
|
+
msgstr ""
|
|
1463
1330
|
|
|
1464
|
-
#: ../app/views/scap_contents/_list.html.erb:17
|
|
1465
|
-
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1331
|
+
#: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
|
|
1466
1332
|
msgid "Download"
|
|
1467
1333
|
msgstr "ჩამოტვირთვა"
|
|
1468
1334
|
|
|
@@ -1499,9 +1365,8 @@ msgid "New SCAP Content"
|
|
|
1499
1365
|
msgstr "SCAP-ის ახალი შემცველობა"
|
|
1500
1366
|
|
|
1501
1367
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
1502
|
-
msgid ""
|
|
1503
|
-
|
|
1504
|
-
msgstr "აღმოჩენილია %s სპულის შეცდომა. შეამოწმეთ შესაბამისი ფაილი პირდაპირ პროქსიზე"
|
|
1368
|
+
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1369
|
+
msgstr ""
|
|
1505
1370
|
|
|
1506
1371
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:8
|
|
1507
1372
|
msgid "Failed to fetch spool status from proxy"
|
|
@@ -1512,10 +1377,7 @@ msgid "None found"
|
|
|
1512
1377
|
msgstr "არაფერია ნაპოვნი"
|
|
1513
1378
|
|
|
1514
1379
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:6
|
|
1515
|
-
msgid ""
|
|
1516
|
-
"Proxy failed to send a report from spool to Foreman. This indicates a "
|
|
1517
|
-
"corrupted report format. Report has been moved to directory for storing "
|
|
1518
|
-
"corrupted files on proxy for later inspection."
|
|
1380
|
+
msgid "Proxy failed to send a report from spool to Foreman. This indicates a corrupted report format. Report has been moved to directory for storing corrupted files on proxy for later inspection."
|
|
1519
1381
|
msgstr ""
|
|
1520
1382
|
|
|
1521
1383
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
@@ -1530,10 +1392,7 @@ msgstr "DataStream შესაბამისობის ფაილი"
|
|
|
1530
1392
|
msgid "Delete tailoring file %s?"
|
|
1531
1393
|
msgstr "წავშალო შესაბამისობის ფაილი %s?"
|
|
1532
1394
|
|
|
1533
|
-
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1534
|
-
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1535
|
-
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1536
|
-
#: ../lib/foreman_openscap/engine.rb:169
|
|
1395
|
+
#: ../app/views/tailoring_files/index.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:6 ../lib/foreman_openscap/engine.rb:169
|
|
1537
1396
|
msgid "Tailoring Files"
|
|
1538
1397
|
msgstr "მორგების ფაილები"
|
|
1539
1398
|
|
|
@@ -1546,10 +1405,8 @@ msgid "Upload new Tailoring File"
|
|
|
1546
1405
|
msgstr "შესაბამისობის ახალი ფაილის ატვირთვა"
|
|
1547
1406
|
|
|
1548
1407
|
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
1549
|
-
msgid ""
|
|
1550
|
-
|
|
1551
|
-
"needs. "
|
|
1552
|
-
msgstr "ხანდახან შეიძლება უსაფრთხოების პოლიტიკის თქვენი საჭიროებებისათვის მორგება მოგიწიოთ. "
|
|
1408
|
+
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
1409
|
+
msgstr ""
|
|
1553
1410
|
|
|
1554
1411
|
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1555
1412
|
msgid ""
|
|
@@ -1570,38 +1427,36 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
|
1570
1427
|
msgstr "OpenSCAP-ის პოლიტიკის ანგარიშების შეჯამება"
|
|
1571
1428
|
|
|
1572
1429
|
#: ../lib/foreman_openscap/bulk_upload.rb:20
|
|
1573
|
-
msgid ""
|
|
1574
|
-
|
|
1575
|
-
"server?"
|
|
1576
|
-
msgstr "RPM პაკეტი scap-security-guide ვერ ვიპოვე. დარწმუნებული ბრძანდებით, რომ დააყენეთ ის?"
|
|
1430
|
+
msgid "Can't find scap-security-guide RPM, are you sure it is installed on your server?"
|
|
1431
|
+
msgstr ""
|
|
1577
1432
|
|
|
1578
1433
|
#: ../lib/foreman_openscap/bulk_upload.rb:29
|
|
1579
1434
|
msgid "Expected an array of files to upload, got: %s."
|
|
1580
|
-
msgstr "
|
|
1435
|
+
msgstr ""
|
|
1581
1436
|
|
|
1582
1437
|
#: ../lib/foreman_openscap/bulk_upload.rb:35
|
|
1583
1438
|
msgid "%s is a directory, expecting file."
|
|
1584
|
-
msgstr "
|
|
1439
|
+
msgstr ""
|
|
1585
1440
|
|
|
1586
1441
|
#: ../lib/foreman_openscap/bulk_upload.rb:40
|
|
1587
1442
|
msgid "%s does not exist, skipping."
|
|
1588
|
-
msgstr "
|
|
1443
|
+
msgstr ""
|
|
1589
1444
|
|
|
1590
1445
|
#: ../lib/foreman_openscap/bulk_upload.rb:58
|
|
1591
1446
|
msgid "Failed saving %s:"
|
|
1592
|
-
msgstr "
|
|
1447
|
+
msgstr ""
|
|
1593
1448
|
|
|
1594
1449
|
#: ../lib/foreman_openscap/bulk_upload.rb:66
|
|
1595
1450
|
msgid "No such directory: %s. Please check the path you have provided."
|
|
1596
|
-
msgstr "
|
|
1451
|
+
msgstr ""
|
|
1597
1452
|
|
|
1598
1453
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1599
1454
|
msgid "Red Hat %s default content"
|
|
1600
|
-
msgstr "
|
|
1455
|
+
msgstr ""
|
|
1601
1456
|
|
|
1602
1457
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1603
1458
|
msgid "%s content"
|
|
1604
|
-
msgstr "
|
|
1459
|
+
msgstr ""
|
|
1605
1460
|
|
|
1606
1461
|
#: ../lib/foreman_openscap/engine.rb:160
|
|
1607
1462
|
msgid "Policies"
|
|
@@ -1615,21 +1470,16 @@ msgstr "SCAP შემცველობა"
|
|
|
1615
1470
|
msgid "Reports"
|
|
1616
1471
|
msgstr "ანგარიშები"
|
|
1617
1472
|
|
|
1618
|
-
#: ../lib/foreman_openscap/engine.rb:172
|
|
1619
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1473
|
+
#: ../lib/foreman_openscap/engine.rb:172 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1620
1474
|
msgid "OVAL Contents"
|
|
1621
1475
|
msgstr "OVAL-ის შემცველობა"
|
|
1622
1476
|
|
|
1623
|
-
#: ../lib/foreman_openscap/engine.rb:177
|
|
1624
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1477
|
+
#: ../lib/foreman_openscap/engine.rb:177 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1625
1478
|
msgid "OVAL Policies"
|
|
1626
1479
|
msgstr "OVAL-ის წესები"
|
|
1627
1480
|
|
|
1628
1481
|
#: ../lib/foreman_openscap/engine.rb:199
|
|
1629
|
-
msgid ""
|
|
1630
|
-
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. "
|
|
1631
|
-
"Leave blank and override appropriate parameters when using proxy load "
|
|
1632
|
-
"balancer."
|
|
1482
|
+
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
|
1633
1483
|
msgstr ""
|
|
1634
1484
|
|
|
1635
1485
|
#: ../lib/foreman_openscap/engine.rb:203 ../lib/foreman_openscap/engine.rb:208
|
|
@@ -1640,14 +1490,22 @@ msgstr "OpenSCAP პროქსი"
|
|
|
1640
1490
|
msgid "ID of OpenSCAP Proxy"
|
|
1641
1491
|
msgstr "OpenSCAP პროქსის ID"
|
|
1642
1492
|
|
|
1643
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1493
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1644
1494
|
msgid "Run OpenSCAP scan"
|
|
1645
1495
|
msgstr "OpenSCAP სკანირების გაშვება"
|
|
1646
1496
|
|
|
1647
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1497
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1648
1498
|
msgid "Run OVAL scan"
|
|
1649
1499
|
msgstr "OVAL-ის სკანირების გაშვება"
|
|
1650
1500
|
|
|
1501
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1502
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1503
|
+
msgstr ""
|
|
1504
|
+
|
|
1505
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1506
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1507
|
+
msgstr ""
|
|
1508
|
+
|
|
1651
1509
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1652
1510
|
msgid "Confirm"
|
|
1653
1511
|
msgstr "დადასტურება"
|
|
@@ -1658,66 +1516,175 @@ msgstr "მითითებული არაა"
|
|
|
1658
1516
|
|
|
1659
1517
|
#: ../webpack/components/HostExtentions/HostKebabItems.js:37
|
|
1660
1518
|
msgid "There's no available report for this host"
|
|
1661
|
-
msgstr "
|
|
1519
|
+
msgstr ""
|
|
1662
1520
|
|
|
1663
|
-
#: ../webpack/components/
|
|
1664
|
-
msgid "
|
|
1665
|
-
msgstr "
|
|
1521
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1522
|
+
msgid "View selected hosts"
|
|
1523
|
+
msgstr ""
|
|
1524
|
+
|
|
1525
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1526
|
+
msgid "Review hosts"
|
|
1527
|
+
msgstr ""
|
|
1528
|
+
|
|
1529
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1530
|
+
msgid "Select snippet"
|
|
1531
|
+
msgstr ""
|
|
1532
|
+
|
|
1533
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1534
|
+
msgid "Review remediation"
|
|
1535
|
+
msgstr ""
|
|
1536
|
+
|
|
1537
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1538
|
+
msgid "Run"
|
|
1539
|
+
msgstr ""
|
|
1540
|
+
|
|
1541
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1542
|
+
msgid "Done"
|
|
1543
|
+
msgstr ""
|
|
1544
|
+
|
|
1545
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1546
|
+
msgid "Remediate %s rule"
|
|
1547
|
+
msgstr ""
|
|
1548
|
+
|
|
1549
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1550
|
+
msgid "Job details"
|
|
1551
|
+
msgstr ""
|
|
1666
1552
|
|
|
1667
|
-
#: ../webpack/components/
|
|
1553
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1554
|
+
msgid "Close"
|
|
1555
|
+
msgstr ""
|
|
1556
|
+
|
|
1557
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1668
1558
|
msgid "Error!"
|
|
1669
1559
|
msgstr "შეცდომა!"
|
|
1670
1560
|
|
|
1561
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1562
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1563
|
+
msgstr ""
|
|
1564
|
+
|
|
1565
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1566
|
+
msgid "OS"
|
|
1567
|
+
msgstr ""
|
|
1568
|
+
|
|
1569
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1570
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1571
|
+
msgstr ""
|
|
1572
|
+
|
|
1573
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1574
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1575
|
+
msgstr ""
|
|
1576
|
+
|
|
1577
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1578
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1579
|
+
msgstr ""
|
|
1580
|
+
|
|
1581
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1582
|
+
msgid "A reboot is required after applying remediation."
|
|
1583
|
+
msgstr ""
|
|
1584
|
+
|
|
1585
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1586
|
+
msgid "A reboot might be required after applying remediation."
|
|
1587
|
+
msgstr ""
|
|
1588
|
+
|
|
1589
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1590
|
+
msgid "Successfully copied to clipboard!"
|
|
1591
|
+
msgstr ""
|
|
1592
|
+
|
|
1593
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1594
|
+
msgid "Copy to clipboard"
|
|
1595
|
+
msgstr ""
|
|
1596
|
+
|
|
1597
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1598
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1599
|
+
msgstr ""
|
|
1600
|
+
|
|
1601
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1602
|
+
msgid "Remediation might render the system non-functional."
|
|
1603
|
+
msgstr ""
|
|
1604
|
+
|
|
1605
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1606
|
+
msgid "Other hosts failing this rule"
|
|
1607
|
+
msgstr ""
|
|
1608
|
+
|
|
1609
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1610
|
+
msgid "Reboot the system(s)"
|
|
1611
|
+
msgstr ""
|
|
1612
|
+
|
|
1613
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1614
|
+
msgid "Method"
|
|
1615
|
+
msgstr ""
|
|
1616
|
+
|
|
1617
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1618
|
+
msgid "Remote job"
|
|
1619
|
+
msgstr ""
|
|
1620
|
+
|
|
1621
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1622
|
+
msgid "Manual"
|
|
1623
|
+
msgstr ""
|
|
1624
|
+
|
|
1625
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1626
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1627
|
+
msgstr ""
|
|
1628
|
+
|
|
1629
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1630
|
+
msgid "Snippet"
|
|
1631
|
+
msgstr ""
|
|
1632
|
+
|
|
1633
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1634
|
+
msgid "Select remediation method"
|
|
1635
|
+
msgstr ""
|
|
1636
|
+
|
|
1637
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1638
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1639
|
+
msgstr ""
|
|
1640
|
+
|
|
1641
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1642
|
+
msgid "Are you sure you want to delete %s?"
|
|
1643
|
+
msgstr ""
|
|
1644
|
+
|
|
1671
1645
|
#: ../webpack/components/withLoading.js:64
|
|
1672
1646
|
msgid "Permission denied"
|
|
1673
1647
|
msgstr "წვდომა აკრძალულია"
|
|
1674
1648
|
|
|
1675
1649
|
#: ../webpack/helpers/mutationHelper.js:7
|
|
1676
1650
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1677
|
-
msgstr "
|
|
1651
|
+
msgstr ""
|
|
1678
1652
|
|
|
1679
1653
|
#: ../webpack/helpers/permissionsHelper.js:34
|
|
1680
1654
|
msgid "You are not authorized to view the page. "
|
|
1681
|
-
msgstr "
|
|
1655
|
+
msgstr ""
|
|
1682
1656
|
|
|
1683
1657
|
#: ../webpack/helpers/permissionsHelper.js:37
|
|
1684
1658
|
msgid "Request the following permissions from administrator: %s."
|
|
1685
|
-
msgstr "
|
|
1659
|
+
msgstr ""
|
|
1686
1660
|
|
|
1687
1661
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:40
|
|
1688
1662
|
msgid "No OVAL Contents found."
|
|
1689
1663
|
msgstr "OVAL-ის შემცველობა ნაპოვნი არაა."
|
|
1690
1664
|
|
|
1691
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42
|
|
1692
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1665
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1693
1666
|
msgid "Delete OVAL Content"
|
|
1694
|
-
msgstr "
|
|
1667
|
+
msgstr ""
|
|
1695
1668
|
|
|
1696
1669
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:49
|
|
1697
1670
|
msgid "OVAL Content successfully deleted."
|
|
1698
|
-
msgstr "
|
|
1671
|
+
msgstr ""
|
|
1699
1672
|
|
|
1700
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51
|
|
1701
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39
|
|
1702
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1703
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1673
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1704
1674
|
msgid "OVAL Content"
|
|
1705
1675
|
msgstr "OVAL-ის შემცველობა"
|
|
1706
1676
|
|
|
1707
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56
|
|
1708
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1677
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1709
1678
|
msgid "Create OVAL Content"
|
|
1710
|
-
msgstr "
|
|
1679
|
+
msgstr ""
|
|
1711
1680
|
|
|
1712
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20
|
|
1713
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103
|
|
1714
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1681
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1715
1682
|
msgid "URL"
|
|
1716
1683
|
msgstr "ბმული"
|
|
1717
1684
|
|
|
1718
1685
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:21
|
|
1719
1686
|
msgid "Original File Name"
|
|
1720
|
-
msgstr "
|
|
1687
|
+
msgstr ""
|
|
1721
1688
|
|
|
1722
1689
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:69
|
|
1723
1690
|
msgid "OVAL Contents table"
|
|
@@ -1725,59 +1692,55 @@ msgstr "OVAL-ის შემცველობის ცხრილი"
|
|
|
1725
1692
|
|
|
1726
1693
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:39
|
|
1727
1694
|
msgid "New OVAL Content"
|
|
1728
|
-
msgstr "
|
|
1695
|
+
msgstr ""
|
|
1729
1696
|
|
|
1730
1697
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:62
|
|
1731
1698
|
msgid "OVAL Content Source"
|
|
1732
|
-
msgstr "
|
|
1699
|
+
msgstr ""
|
|
1733
1700
|
|
|
1734
1701
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:74
|
|
1735
1702
|
msgid "OVAL Content from URL"
|
|
1736
|
-
msgstr "
|
|
1703
|
+
msgstr ""
|
|
1737
1704
|
|
|
1738
1705
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:88
|
|
1739
1706
|
msgid "OVAL Content from file"
|
|
1740
|
-
msgstr "
|
|
1707
|
+
msgstr ""
|
|
1741
1708
|
|
|
1742
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92
|
|
1743
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1709
|
+
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1744
1710
|
msgid "File"
|
|
1745
|
-
msgstr "
|
|
1711
|
+
msgstr ""
|
|
1746
1712
|
|
|
1747
1713
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:38
|
|
1748
1714
|
msgid "OVAL Content %s successfully created"
|
|
1749
|
-
msgstr "
|
|
1715
|
+
msgstr ""
|
|
1750
1716
|
|
|
1751
1717
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:52
|
|
1752
1718
|
msgid "Unknown error when submitting data, please try again later."
|
|
1753
|
-
msgstr "
|
|
1719
|
+
msgstr ""
|
|
1754
1720
|
|
|
1755
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26
|
|
1756
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1721
|
+
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1757
1722
|
msgid "No OVAL Content found"
|
|
1758
|
-
msgstr "
|
|
1723
|
+
msgstr ""
|
|
1759
1724
|
|
|
1760
1725
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:39
|
|
1761
1726
|
msgid "No OVAL Policies found"
|
|
1762
1727
|
msgstr "OVAL-ის წესები ნაპოვნი არაა"
|
|
1763
1728
|
|
|
1764
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41
|
|
1765
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1729
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1766
1730
|
msgid "Delete OVAL Policy"
|
|
1767
|
-
msgstr "
|
|
1731
|
+
msgstr ""
|
|
1768
1732
|
|
|
1769
1733
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:48
|
|
1770
1734
|
msgid "OVAL policy was successfully deleted."
|
|
1771
|
-
msgstr "
|
|
1735
|
+
msgstr ""
|
|
1772
1736
|
|
|
1773
1737
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:50
|
|
1774
1738
|
msgid "OVAL policy"
|
|
1775
|
-
msgstr "
|
|
1739
|
+
msgstr ""
|
|
1776
1740
|
|
|
1777
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48
|
|
1778
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1741
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1779
1742
|
msgid "Create OVAL Policy"
|
|
1780
|
-
msgstr "
|
|
1743
|
+
msgstr ""
|
|
1781
1744
|
|
|
1782
1745
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:60
|
|
1783
1746
|
msgid "OVAL Policies Table"
|
|
@@ -1785,11 +1748,11 @@ msgstr "OVAL-ის წესების ცხრილი"
|
|
|
1785
1748
|
|
|
1786
1749
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:107
|
|
1787
1750
|
msgid "Type a hostgroup name..."
|
|
1788
|
-
msgstr "
|
|
1751
|
+
msgstr ""
|
|
1789
1752
|
|
|
1790
1753
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:76
|
|
1791
1754
|
msgid "Choose OVAL Content"
|
|
1792
|
-
msgstr "
|
|
1755
|
+
msgstr ""
|
|
1793
1756
|
|
|
1794
1757
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:8
|
|
1795
1758
|
msgid "can't be blank"
|
|
@@ -1797,21 +1760,19 @@ msgstr "არ შეიძლება ცარიელი იყოს"
|
|
|
1797
1760
|
|
|
1798
1761
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:15
|
|
1799
1762
|
msgid "is not a valid cronline"
|
|
1800
|
-
msgstr "
|
|
1763
|
+
msgstr ""
|
|
1801
1764
|
|
|
1802
1765
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:54
|
|
1803
1766
|
msgid "OVAL Policy succesfully created."
|
|
1804
|
-
msgstr "
|
|
1767
|
+
msgstr ""
|
|
1805
1768
|
|
|
1806
1769
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:86
|
|
1807
1770
|
msgid "Failed to create OVAL Policy: %s"
|
|
1808
|
-
msgstr "
|
|
1771
|
+
msgstr ""
|
|
1809
1772
|
|
|
1810
1773
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:23
|
|
1811
|
-
msgid ""
|
|
1812
|
-
|
|
1813
|
-
"proceeding."
|
|
1814
|
-
msgstr "OVAL პოლიტიკის შესაქმნელად OVAL შემცველობის ქონა აუცილებელია. გაგრძელებამდე ერთი მაინც შექმენით."
|
|
1774
|
+
msgid "OVAL Content is required to create OVAL Policy. Please create one before proceeding."
|
|
1775
|
+
msgstr ""
|
|
1815
1776
|
|
|
1816
1777
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js:38
|
|
1817
1778
|
msgid "No CVEs found."
|
|
@@ -1835,15 +1796,15 @@ msgstr "CVE-ის ცხრილები OVAL-ის წესისთვი
|
|
|
1835
1796
|
|
|
1836
1797
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:47
|
|
1837
1798
|
msgid "Period"
|
|
1838
|
-
msgstr "
|
|
1799
|
+
msgstr ""
|
|
1839
1800
|
|
|
1840
1801
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTab.js:38
|
|
1841
1802
|
msgid "No Hostgroups found."
|
|
1842
|
-
msgstr "
|
|
1803
|
+
msgstr ""
|
|
1843
1804
|
|
|
1844
1805
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:26
|
|
1845
1806
|
msgid "Table of hostgroups for OVAL policy"
|
|
1846
|
-
msgstr "
|
|
1807
|
+
msgstr ""
|
|
1847
1808
|
|
|
1848
1809
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:46
|
|
1849
1810
|
msgid "Scan All Hostgroups"
|
|
@@ -1855,31 +1816,31 @@ msgstr "დეტალები"
|
|
|
1855
1816
|
|
|
1856
1817
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:59
|
|
1857
1818
|
msgid "CVEs"
|
|
1858
|
-
msgstr "
|
|
1819
|
+
msgstr ""
|
|
1859
1820
|
|
|
1860
1821
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:9
|
|
1861
1822
|
msgid "Weekly, on %s"
|
|
1862
|
-
msgstr "
|
|
1823
|
+
msgstr ""
|
|
1863
1824
|
|
|
1864
1825
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:11
|
|
1865
1826
|
msgid "Monthly, day of month: %s"
|
|
1866
|
-
msgstr "
|
|
1827
|
+
msgstr ""
|
|
1867
1828
|
|
|
1868
1829
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:13
|
|
1869
1830
|
msgid "Custom cron: %s"
|
|
1870
|
-
msgstr "
|
|
1831
|
+
msgstr ""
|
|
1871
1832
|
|
|
1872
1833
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:15
|
|
1873
1834
|
msgid "Unknown schedule"
|
|
1874
|
-
msgstr "
|
|
1835
|
+
msgstr ""
|
|
1875
1836
|
|
|
1876
1837
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:77
|
|
1877
1838
|
msgid "OVAL policy was successfully updated."
|
|
1878
|
-
msgstr "
|
|
1839
|
+
msgstr ""
|
|
1879
1840
|
|
|
1880
1841
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:84
|
|
1881
1842
|
msgid "There was a following error when updating OVAL policy: %s"
|
|
1882
|
-
msgstr "
|
|
1843
|
+
msgstr ""
|
|
1883
1844
|
|
|
1884
1845
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/index.js:28
|
|
1885
1846
|
msgid "No OVAL Policy found"
|