-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathMessages.js
More file actions
1690 lines (1660 loc) · 58.1 KB
/
Messages.js
File metadata and controls
1690 lines (1660 loc) · 58.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { defineMessages } from 'react-intl';
export const appliesToOS = 'Applies to OS';
export default defineMessages({
yes: {
id: 'yes',
description: 'Yes general label',
defaultMessage: 'Yes',
},
no: {
id: 'no',
description: 'No general label',
defaultMessage: 'No',
},
cancel: {
id: 'cancel',
description: 'Cancel label for general usage',
defaultMessage: 'Cancel',
},
save: {
id: 'save',
description: 'Save label for general usage',
defaultMessage: 'Save',
},
loading: {
id: 'loading',
description: 'Loading label for general usage',
defaultMessage: 'Loading...',
},
count: {
id: 'count',
description: 'Label for the number of systems',
defaultMessage: 'Num. systems',
},
current: {
id: 'current',
description: 'Current label for general usage',
defaultMessage: 'current',
},
cve: {
id: 'cve',
description: 'General CVE label',
defaultMessage: 'CVE',
},
statusLabel: {
id: 'status',
description: 'Status label for general usage',
defaultMessage: 'Status',
},
advisory: {
id: 'advisory',
description: 'Advisory label for filter and column header',
defaultMessage: 'Advisory',
},
advisoryName: {
id: 'advisoryName',
description: 'Advisory name label for filter',
defaultMessage: 'Advisory name',
},
available: {
id: 'available',
description: 'Available',
defaultMessage: 'Available',
},
notAvailable: {
id: 'notAvailable',
description: 'Not available',
defaultMessage: 'Not available',
},
rhCVEdb: {
id: 'rhCVEdb',
description: 'Red Hat CVE database',
defaultMessage: 'Red Hat CVE database',
},
cveStatus: {
id: 'cveStatus',
description: 'Cve status label for general usage',
defaultMessage: 'CVE status',
},
cveSystemPairStatus: {
id: 'cveSystemPairStatus',
description: 'Cve system pair status label for general usage',
defaultMessage: 'CVE-system pair status',
},
justificationLabel: {
id: 'justification',
description: 'Justification label for general usage',
defaultMessage: 'Justification note',
},
justificationNote: {
id: 'justificationNote',
description: 'Justification note label for general usage',
defaultMessage: 'Justification note',
},
businessRiskLabel: {
id: 'businessRisk',
description: 'Business risk label for general usage',
defaultMessage: 'Business risk',
},
remediateLabel: {
id: 'remediate',
description: 'Remediate label for general usage ',
defaultMessage: 'Plan remediation',
},
remediationLabel: {
id: 'remediation',
description: 'Remediation label for general usage ',
defaultMessage: 'Plan remediation',
},
description: {
id: 'description',
description: 'Expanded cell containing CVE desciption title',
defaultMessage: 'CVE description',
},
associatedCves: {
id: 'associatedCves',
description: 'Associated CVEs general label',
defaultMessage: 'Associated CVEs:',
},
vulnerabilitiesHeader: {
id: 'vulnerabilitiesHeader',
description: 'Used as the header in the landing page',
defaultMessage: 'Vulnerabilities',
},
playbook: {
id: 'playbook',
description: 'Generic playbook label',
defaultMessage: 'Playbook',
},
manual: {
id: 'manual',
description: 'Generic manual label',
defaultMessage: 'Manual',
},
systemsHeader: {
id: 'systemsHeader',
description: 'Used as the title in the system list page',
defaultMessage: 'Systems',
},
vulnerabilitySystemsHeader: {
id: 'vulnerabilitySystemsHeader',
description: 'Used as the header in the system list page',
defaultMessage: 'Systems',
},
selectNone: {
id: 'selectNone',
description: 'Dropdown item',
defaultMessage: 'Select none (0 items)',
},
selectPage: {
id: 'selectPage',
description: 'Dropdown item',
defaultMessage:
'Select page ({count, plural, one {# item} other {# items}})',
},
selectAll: {
id: 'selectAll',
description: 'Dropdown item',
defaultMessage:
'Select all ({count, plural, one {# item} other {# items}})',
},
cveId: {
id: 'cveTable.columnHeaders.cveId',
description: 'A column name in cves table',
defaultMessage: 'CVE ID',
},
publishDate: {
id: 'cveTable.columnHeaders.publishDate',
description: 'A column name in cves table',
defaultMessage: 'Publish date',
},
impact: {
id: 'cveTable.columnHeaders.impact',
description: 'A column name in cves table',
defaultMessage: 'Severity',
},
cvssBaseScore: {
id: 'cveTable.columnHeaders.cvssBaseScore',
description: 'A column name in cves table',
defaultMessage: 'CVSS base score',
},
systemsExposed: {
id: 'cveTable.columnHeaders.systemsExposed',
description: 'A column name in cves table',
defaultMessage: 'Systems',
},
businessRisk: {
id: 'cveTable.columnHeaders.businessRisk',
description: 'A column name in cves table',
defaultMessage: 'Business risk',
},
status: {
id: 'cveTable.columnHeaders.status',
description: 'A column name in cves table',
defaultMessage: 'Status',
},
rebootRequired: {
id: 'rebootRequired',
description: 'Label for when a system need a reboot',
defaultMessage: 'System reboot required',
},
knownExploit: {
id: 'knownExploit',
description:
'Label for filtering CVEs based on whether they have or have not known exploit',
defaultMessage: 'Known exploit',
},
cvesHeader: {
id: 'cveTable.header',
description: 'General header title for CVEs',
defaultMessage: 'CVEs',
},
filterByAffectedSystems: {
id: 'filterByAffectedSystems',
description: 'Temporaty csaw filter',
defaultMessage:
'Filter by {count, plural, =-1 {affected systems} one {# system} other {# systems}}',
},
resetFilters: {
id: 'resetFilters',
description: 'Button to reset filters in toolbar to default state',
defaultMessage: 'Reset filters',
},
searchLabel: {
id: 'searchLabel',
description: 'Default label for search filters',
defaultMessage: 'Search term',
},
searchFilterByName: {
id: 'searchFilterByName',
description: 'Default label for search filters by name',
defaultMessage: 'Filter by name',
},
searchFilterByAdvisoryName: {
id: 'searchFilterByAdvisoryName',
description: 'Default label for search filters by advisory',
defaultMessage: 'Filter by advisory name',
},
searchFilterByCveID: {
id: 'searchFilterByCveId',
description: 'Default label for search filters by CVE ID',
defaultMessage: 'Search ID or description',
},
searchFilterCvssRange: {
id: 'searchFilterCvssRange',
description: 'Default label for search filters by CVSS score range',
defaultMessage: 'Filter by CVSS score range',
},
osFilterLabel: {
id: 'osFilterLabel',
description: 'Label for OS version filter',
defaultMessage: 'Operating system',
},
osFilterLabelReport: {
id: 'osFilterLabel.reports',
description: 'Label for OS version filter in report configuration modal',
defaultMessage: 'Applies to OS',
},
remediationFilterLabel: {
id: 'remediationFilterLabel',
description: 'Label for remediation filter',
defaultMessage: 'Remediation',
},
emptyPageTitle: {
id: 'emptyPage.title',
description: 'Title for empty page',
defaultMessage: 'Do more with your Red Hat Enterprise Linux environment',
},
emptyPageBody: {
id: 'emptyPage.body',
description: 'Body text for empty page',
defaultMessage: `Connect your systems to keep your Red Hat environment running efficiently,
with security and compliance with various standards.`,
},
emptyPageLearnMoreButton: {
id: 'emptyPage.button',
description: 'Label for learn more button in empty page',
defaultMessage: 'Learn more about connecting your systems',
},
rulesIconTooltip: {
id: 'rules.iconTooolip',
description: 'Tooltip',
defaultMessage:
'Denotes a security rule. Security rules are written by Red Hat to help you configure your systems',
},
exposedSystemNoRules: {
id: 'exposedSystem.noRules',
description: 'No rules for system',
defaultMessage:
'This system is affected by {cve}, but is not affected by any security rules associated with this CVE.',
},
exposedSystemNoRulesInfo: {
id: 'exposedSystem.noRulesInfo',
description: 'No rules for system',
defaultMessage:
'Security rules are written by Red Hat to help you configure your systems.',
},
exposedSystemNoRulesInfoLink: {
id: 'exposedSystem.noRulesInfo.link',
description: 'No rules for system',
defaultMessage: 'Learn more about security rules',
},
inventoryKebabOptionsEnable: {
id: 'inventory.kebabOptions.enable',
description: 'Kebab options label for inventory',
defaultMessage: 'Enable Vulnerability analysis',
},
inventoryKebabOptionsDisable: {
id: 'inventory.kebabOptions.disable',
description: 'Kebab options label for inventory',
defaultMessage: 'Disable Vulnerability analysis',
},
businessRiskModalTitle: {
id: 'businessRiskModal.title',
description: 'Business risk modal title',
defaultMessage: 'Edit business risk',
},
businessRiskModalInfo: {
id: 'businessRiskModal.info',
description: 'Information about business risk for users',
defaultMessage: `Business risk can be used to identify,
track, and address CVEs that have meaningful impact to your organization.`,
},
cvePairStatusModalTitle: {
id: 'cvePairStatusModal.title',
description: 'Title for the CVE pair status modal',
defaultMessage:
'Edit status for {count, plural, one {this CVE and system pair} other {these CVE and system pairs}}',
},
cvePairStatusModalAlert: {
id: 'cvePairStatusModal.alert',
description: 'Alert message warning the effects of different CVE pairs',
defaultMessage:
'Selected pairs have different statuses. Changes will be applied to all',
},
cvePairStatusModalSelected: {
id: 'cvePairStatusModal.selected',
description: 'label stating id/count of CVE/systems currently editing',
defaultMessage:
'Change the status of {cveCount, plural, one {<b>{cveId}</b>} other {<b># selected CVEs</b>}} for the {systemCount, plural, one {system <b>{systemName}</b>} other {<b># selected systems</b>}}.',
},
cvePairStatusModalUseOverallCheckbox: {
id: 'cvePairStatusModal.useOverallCheckbox',
description: 'Label for the use overall cve checkbox',
defaultMessage: 'Use overall CVE status',
},
cvePairStatusModalUseOverallTooltip: {
id: 'cvePairStatusModal.useOverallTooltip',
description: 'Label for the use overall cve tooltip',
defaultMessage: 'This pair will use and inherit the status set on the CVE.',
},
cveStatusModalTitle: {
id: 'cveStatusModal.title',
description: 'Title for CVE status modal',
defaultMessage:
'Edit status for {count, plural, one {this CVE} other {these CVEs}}',
},
cveStatusModalOverwriteCheckbox: {
id: 'cveStatusModal.overwriteCheckbox',
description: 'label for overwrite checkbox',
defaultMessage: 'Do not overwrite individual system status',
},
cveStatusModalOverwriteTooltip: {
id: 'cveStatusModal.overwriteTooltip',
description: 'label for overwrite checkbox',
defaultMessage: `When checked, this setting does not change any pre-existing
statuses set on individual systems for this CVE.`,
},
cveStatusModalSelected: {
id: 'cveStatusModal.selected',
description:
'label stating CVE id (selected single) or CVE count (selected multiple)',
defaultMessage:
'Change the status of {count, plural, one {<b>{cveId}</b>} other {<b># selected CVEs</b>}}.',
},
cveStatusModalInfo: {
id: 'cveStatusModal.info',
description: 'label for overwrite checkbox',
defaultMessage: `This status is applied to all existing systems affected by {count, plural, one {this CVE} other {these CVEs}}, as well as any newly affected systems in the future`,
},
ansibleRemediationTooltip: {
id: 'ansibleRemediationTooltip',
description: 'Tooltip for remediating with Ansible',
defaultMessage:
'You can create Ansible Playbooks and remediate your systems with Remediation application',
},
riskOfChange: {
id: 'riskOfChange',
description: 'Risk of change label for CVE rules',
defaultMessage: 'Risk of change',
},
riskOfChangeTooltipVeryLow: {
id: 'rulesdetails.riskOfChangeTooltipVeryLow',
description: 'Rick of change tooltip',
defaultMessage:
'The change takes very little time to implement and there is minimal impact to system operations.',
},
riskOfChangeTooltipLow: {
id: 'rulesdetails.riskOfChangeTooltipLow',
description: 'Rick of change tooltip',
defaultMessage:
'Typically, these changes do not require that a system be taken offline.',
},
riskOfChangeTooltipModerate: {
id: 'rulesdetails.riskOfChangeTooltipModerate',
description: 'Rick of change tooltip',
defaultMessage: 'These will likely require an outage window.',
},
riskOfChangeTooltipHigh: {
id: 'rulesdetails.riskOfChangeTooltipHigh',
description: 'Rick of change tooltip',
defaultMessage:
'The change takes a significant amount of time and planning to execute, and will impact the system and business operations of the host due to downtime.',
},
knowledgebaseArticle: {
id: 'knowledgebasearticle',
description: 'Knowledgebase article',
defaultMessage: 'Knowledgebase article',
},
CVEsPDFreportSubHeader: {
id: 'CVEsReport.subheader',
description: 'CVEs PDF report sub header',
defaultMessage:
'The vulnerability service identified <b>{cve_count, plural, one {# CVE} other {# CVEs}}</b> within this criteria, {affectingSystemsMessage}\n',
},
CVEsPDFreportSubHeaderExploit: {
id: 'CVEsReport.subheaderExploit',
description: 'CVEs PDF report sub header exploit',
defaultMessage:
'Of the identified CVEs, <b>{knownExploitCount, plural, one {# CVE} other {# CVEs}}</b> {knownExploitCount, plural, one {has} other {have}} a known exploit.\n',
},
CVEsPDFreportFiltersSeverity: {
id: 'CVEsReport.filters.severity',
description: 'CVEs PDF report filters severity',
defaultMessage: '{prefix} severity of <b>{values}</b>',
},
CVEsPDFreportFiltersBusinessRisk: {
id: 'CVEsReport.filters.businessRisk',
description: 'CVEs PDF report filters BusinessRisk',
defaultMessage: '{prefix} business risk of <b>{values}</b>',
},
CVEsPDFreportFiltersStatus: {
id: 'CVEsReport.filters.status',
description: 'CVEs PDF report filters status',
defaultMessage: '{prefix} status of <b>{values}</b>',
},
CVEsPDFreportFiltersDefinedValue: {
id: 'CVEsReport.filters.securityRule',
description: 'CVEs PDF report filters security',
defaultMessage: '{prefix} <b>{values}</b>',
},
CVEsPDFreportFiltersAdvisoryAvailable: {
id: 'CVEsReport.filters.advisoryAvailable',
description: 'CVEs PDF report filters advisory available',
defaultMessage: '{prefix} advisory <b>{values}</b>',
},
CVEsPDFreportFiltersOsVersion: {
id: 'CVEsReport.filters.osVersion',
description: 'CVEs PDF report filters security',
defaultMessage: '{prefix} which apply to <b>{values}</b>',
},
systemsPDFreportSubHeader: {
id: 'systemsReport.subheader',
description: 'Systems PDF report sub header',
defaultMessage: 'This report includes systems',
},
systemsPDFreportFiltersSearchTerm: {
id: 'systemsPDFreportFiltersSearchTerm',
description: 'Systems PDF report search term filter',
defaultMessage: '{prefix} matching the search term <b>"{values}"</b>',
},
systemsPDFreportFiltersDisabled: {
id: 'systemsPDFreportFiltersDisabled',
description:
'Indicates to user that systems report contains only disabled systems',
defaultMessage: 'with Vulnerability analysis disabled',
},
systemsPDFreportFiltersEnabled: {
id: 'systemsPDFreportFiltersEnabled',
description:
'Indicates to user that systems report contains only enabled systems',
defaultMessage: 'with Vulnerability analysis enabled',
},
systemsPDFreportFiltersOsVersion: {
id: 'systemsPDFreportFiltersOsVersion',
description: 'Systems PDF report OS filter',
defaultMessage: '{prefix} with OS of <b>{values}</b>',
},
systemsSearchName: {
id: 'systems.search.name',
description: 'search term for systems table',
defaultMessage: 'Name',
},
systemsColumnHeaderName: {
id: 'systems.columnHeader.name',
description: 'column name for systems table',
defaultMessage: 'Name',
},
systemsColumnHeaderCveCount: {
id: 'systems.columnHeader.cveCount',
description: 'column name for systems table',
defaultMessage: 'Applicable CVEs',
},
systemsColumnHeaderUpdated: {
id: 'systems.columnHeader.updated',
description: 'column name for systems table',
defaultMessage: 'Last seen',
},
systemsColumnHeaderTags: {
id: 'systems.columnHeader.tags',
description: 'column name for systems table',
defaultMessage: 'Tags',
},
systemsColumnHeaderOS: {
id: 'systems.columnHeader.os',
description: 'OS column short header label',
defaultMessage: 'OS',
},
systemsColumnHeaderOSFull: {
id: 'systems.columnHeader.os.full',
description: 'OS column full header label',
defaultMessage: 'Operating system',
},
systemsExposedColumnRemediation: {
id: 'systems.columnHeader.remediation',
description: 'column name for system exposed table',
defaultMessage: 'Remediation type',
},
fixableTooltip: {
id: 'systems.row.fixable.tooltip',
description: 'Tooltip for not available',
defaultMessage:
'Red Hat has not published an Advisory which applies to this system and OS version which addresses this CVE. There are multiple reasons why this may be the case.',
},
systemsTableDisabled: {
id: 'systems.table.disabled',
description:
'Label substituting applicable CVEs count when systems is disabled',
defaultMessage: 'Disabled',
},
systemsExposedTableHeader: {
id: 'systemsExposedTable.header',
description: 'Header title for systems exposed table ',
defaultMessage: 'Systems',
},
impactListCritical: {
id: 'impactList.critical',
description: 'Impact level label',
defaultMessage: 'Critical',
},
impactListHigh: {
id: 'impactList.high',
description: 'Impact level label',
defaultMessage: 'High',
},
impactListImportant: {
id: 'impactList.important',
description: 'Impact level label',
defaultMessage: 'Important',
},
impactListModerate: {
id: 'impactList.moderate',
description: 'Impact level label',
defaultMessage: 'Moderate',
},
impactListLow: {
id: 'impactList.low',
description: 'Impact level label',
defaultMessage: 'Low',
},
impactListVeryLow: {
id: 'impactList.veryLow',
description: 'Impact level label',
defaultMessage: 'Very Low',
},
impactListUnknown: {
id: 'impactList.unknown',
description: 'Impact level label',
defaultMessage: 'Unknown',
},
emptyStateNoMatchingCves: {
id: 'emptyState.noMatchingCves',
description:
'Title for empty state component shown when there are no CVEs to be shown in the table',
defaultMessage: 'No matching CVEs found',
},
emptyStateNoMatchingSystems: {
id: 'emptyState.noMatchingSystems',
description:
'Title for empty state component shown when there are no systems to be shown in the table',
defaultMessage: 'No matching systems found',
},
emptyStateEditFilterSettings: {
id: 'emptyState.editFilterSettings',
description:
'Paragraph for empty state component shown when there are no items to be shown in the table',
defaultMessage: 'To continue, edit your filter settings and search again.',
},
emptyStateThereShouldBeCVEs: {
id: 'emptyState.thereShouldBeCVE',
description:
'Paragraph for empty state component advising to contact support when there is a problem',
defaultMessage:
'Currently, you are only viewing CVEs with Errata. It is possible the CVE you are searching for does not yet have an associated Errata. Please adjust your settings and search again. Please check the {cveDatabaseLink} or if you would like more information, contact {prodSecLink}',
},
emptyStateThereShouldBeCVEsNoErrata: {
id: 'emptyState.thereShouldBeCVE.noErrata',
description:
'Paragraph for empty state component advising to contact support when there is a problem',
defaultMessage:
'Please check the {cveDatabaseLink} or if you would like more information, contact {prodSecLink}',
},
emptyStateThereShouldBeCVEsFeatureDisabled: {
id: 'emptyState.thereShouldBeCVE.featureDisabled',
description:
'Paragraph for empty state component advising to contact support when there is a problem',
defaultMessage:
'Currently, {productName} Vulnerability only shows CVEs with Errata. It is possible the CVE you are searching for does not yet have an associated Errata. Please check the {cveDatabaseLink} or if you would like more information, contact {prodSecLink}',
},
emptyStateThisSystemShouldHaveCVEs: {
id: 'emptyState.thisSystemShouldHaveCVEs',
description:
'Paragraph for empty state component advising to contact support when there is a problem',
defaultMessage:
'If you think this system has applicable CVEs or would like more information, contact {prodSecLink}.',
},
emptyStateProdSecLink: {
id: 'emptyState.prodSecLink',
description: 'Link for empty state component linking to the support page',
defaultMessage: 'Red Hat Product Security',
},
emptyStateCveDatabaseLink: {
id: 'emptyState.databaseLink',
description:
'Link for empty state component linking to the CVE database page',
defaultMessage: 'Red Hat CVE Database',
},
emptyStateSystemDisabledTitle: {
id: 'emptyStateSystemDisabled.title',
description: 'Title for empty state when the system is exluded',
defaultMessage: 'Vulnerability analysis disabled',
},
emptyStateSystemEnableAnalysis: {
id: 'emptyStateSystem.enableAnalysis',
description: 'System disabled from analysis empty state button label',
defaultMessage: 'Enable Vulnerability analysis',
},
emptyStateNoAccessReportsPage: {
id: 'emptyState.noAccess.reportsPage',
description: 'Reports page not authorized empty state title',
defaultMessage: 'You do not have permissions to view Reports page',
},
notAuthorizedNoAccessForSystem: {
id: 'notAuthorizedNoAccessForSystem',
description:
"Title for component which shows up when user doesn't have access to view results for the specific system",
defaultMessage:
'You do not have access to vulnerability results for this system',
},
notAuthorizedNotificationTitle: {
id: 'notAuthorizedNotification.title',
description:
'Title text for notification shown when user performes action he is not permitted to do',
defaultMessage: 'You are not permitted to perform this action',
},
readOnlyNotificationTitle: {
id: 'readOnlyNotification.title',
description:
'Title text for notification shown when application is in read-only mode and user tries to do write action',
defaultMessage: 'Changes not saved',
},
readOnlyNotificationBody: {
id: 'readOnlyNotification.body',
description:
'Body text for notification shown when application is in read-only mode and user tries to do write action',
defaultMessage:
'The application is temporarily in read-only mode due to normal system maintenance.\
Please try again later.',
},
readOnlyNotificationLink: {
id: 'readOnlyNotification.link',
description:
'Link for notification shown when application is in read-only mode and user tries to do write action',
defaultMessage: 'Visit status.redhat.com for more information',
},
readOnlyBannerText: {
id: 'readOnlyBanner.text',
description:
'Text for banner shown when application is in read-only mode and user tries to do write action',
defaultMessage: 'Application is in <b>read-only</b> mode',
},
learnMore: {
id: 'rearn more',
description: 'Learn more general usage',
defaultMessage: 'Learn more',
},
filterSecurityRules: {
id: 'filter.securityRules',
description: 'Label for filter which filters by security rules criterion',
defaultMessage: 'security rules',
},
filterKnownExploit: {
id: 'filter.knownExploit',
description: 'Label for filter which filters by known exploit',
defaultMessage: 'known exploit',
},
filterSeverity: {
id: 'filter.severity',
description: 'Label for filter which filters by severity criterion',
defaultMessage: 'severity',
},
filterBusinessRisk: {
id: 'filter.businessRisk',
description: 'Label for filter which filters by business risk criterion',
defaultMessage: 'business risk',
},
filterStatus: {
id: 'filter.status',
description: 'Label for filter which filters by status criterion',
defaultMessage: 'status',
},
filterPublishDate: {
id: 'filter.publishDate',
description: 'Label for filter which filters by publish date criterion',
defaultMessage: 'publish date',
},
filterSystemsExposed: {
id: 'filter.systemsExposed',
description:
'Label for filter which filters by count of exposed systems criterion',
defaultMessage: 'systems',
},
filterSystemsWithEnabledAnalysis: {
id: 'filter.systemsWithEnabledAnalysis',
description:
'For filtering of systems based on whether they have enabled analysis',
defaultMessage: 'systems with Vulnerability analysis enabled',
},
filterRemediation: {
id: 'filter.remediation',
description:
'Label for filter which filters by remediation method availability',
defaultMessage: 'remediation',
},
securityRules: {
id: 'securityRules',
description: 'Security rules label for general usage',
defaultMessage: 'Security rules',
},
withSecurityRule: {
id: 'filter.withSecurityRule',
description: 'Has security rule',
defaultMessage: 'Has security rule',
},
withoutSecurityRule: {
id: 'filter.withoutSecurityRule',
description: 'Does not have security rule',
defaultMessage: 'Does not have security rule',
},
systemsWithEnabledAnalysis: {
id: 'systemsWithEnabledAnalysis',
description:
'For filtering of systems based on whether analysis is enabled',
defaultMessage: 'Systems with Vulnerability analysis enabled',
},
systemsEnabled: {
id: 'filter.systemsEnabled',
description: 'Enabled systems option',
defaultMessage: 'Enabled systems',
},
systemsDisabled: {
id: 'filter.systemsDisabled',
description: 'Disabled systems option',
defaultMessage: 'Disabled systems',
},
businessRiskHighToLow: {
id: 'businessRiskHighToLow',
description: 'Business risk: High to Low sort option',
defaultMessage: 'Business risk: High to Low',
},
businessRiskLowToHigh: {
id: 'businessRiskLowToHigh',
description: 'Business risk: Low to High sort option',
defaultMessage: 'Business risk: Low to High',
},
cvssBaseScoreHighToLow: {
id: 'cvssBaseScoreHighToLow',
description: 'CVSS base score: High to Low sort default option',
defaultMessage: 'CVSS base score: High to Low',
},
cvssBaseScoreLowToHigh: {
id: 'cvssBaseScoreLowToHigh',
description: 'CVSS base score: Low to High sort option',
defaultMessage: 'CVSS base score: Low to High',
},
severityHighToLow: {
id: 'severityHighToLow',
description: 'Severity: High to Low sort option',
defaultMessage: 'Severity: High to Low',
},
severityLowToHigh: {
id: 'severityLowToHigh',
description: 'Severity: Low to High sort option',
defaultMessage: 'Severity: Low to High',
},
optionsAll: {
id: 'options.all',
description: 'Indicates all options are selected; for general usage',
defaultMessage: 'All',
},
optionsAny: {
id: 'options.any',
description: 'Indicates any option is selected; for general usage',
defaultMessage: 'Any',
},
lastxdays: {
id: 'lastxdays',
description: 'Last x days label where x is a predefined value',
defaultMessage: 'Last {days} days',
},
lastYear: {
id: 'lastYear',
description: 'Last year option',
defaultMessage: 'Last year',
},
moreThanYear: {
id: 'moreThanYear',
description: 'More than a year option',
defaultMessage: 'More than 1 year ago',
},
hasKnownExploit: {
id: 'hasKnownExploit',
description: 'CVEs have known exploit',
defaultMessage: 'Has a known exploit',
},
noKnownExploit: {
id: 'noKnownExploit',
description: 'CVEs do not have known exploit',
defaultMessage: 'No known exploit',
},
notVulnerableLabelTitle: {
id: 'notVulnerable.label.title',
description:
'Not vulnerable label marks systems in CVE detail page which are affected by security rule but are not vulnerable',
defaultMessage: 'Not vulnerable',
},
notVulnerableDescription: {
id: 'notVulnerable.description',
description:
'Not vulnerable label marks systems in CVE detail page which are affected by security rule but are not vulnerable',
defaultMessage:
"{multiple, select, other {This system contains} true {These systems contain}} an affected package(s) with vulnerable code, but the functionality is disabled, not exposed, or mitigated, etc., and doesn't negatively impact the security of the system. Patching {multiple, select, other {this system} true {these systems}} is not needed immediately, but we recommend doing so eventually.",
},
notVulnerableBoxTitle: {
id: 'notVulnerable.box.title',
description:
'Not vulnerable box in the CVE detail page describes to user what does not vulnerable mean',
defaultMessage: 'Affected but not vulnerable',
},
notVulnerableBoxDescription: {
id: 'notVulnerable.box.description',
description:
'Not vulnerable box in the CVE detail page describes to user what does not vulnerable mean',
defaultMessage:
'This system is affected by {cveId}, but deep threat analysis indicates it is not vulnerable.',
},
notVulnerableBoxReason: {
id: 'notVulnerable.box.reason',
description:
'Not vulnerable box in the CVE detail page describes to user what does not vulnerable mean',
defaultMessage: 'This system is not vulnerable because: {reason}',
},
notReviewed: {
id: 'notReviewed',
description: 'Status option label',
defaultMessage: 'Not reviewed',
},
inReview: {
id: 'inReview',
description: 'Status option label',
defaultMessage: 'In review',
},
onHold: {
id: 'onHold',
description: 'Status option label',
defaultMessage: 'On-hold',
},
scheduledPatch: {
id: 'scheduledPatch',
description: 'Status option label',
defaultMessage: 'Scheduled for patch',
},
resolved: {
id: 'resolved',
description: 'Status option label',
defaultMessage: 'Resolved',
},
noAction: {
id: 'noAction',
description: 'Status option label',
defaultMessage: 'No action - risk accepted',
},
actions: {
id: 'actions',
description: 'generic actions label',
defaultMessage: 'Actions',
},
resolvedViaMitigation: {
id: 'resolvedViaMitigation',
description: 'Status option label',
defaultMessage: 'Resolved via mitigation',
},
critical: {
id: 'critical',
description: 'Business risk option label',
defaultMessage: 'Critical',
},
high: {
id: 'high',
description: 'Business risk option label',
defaultMessage: 'High',
},
medium: {
id: 'medium',
description: 'Business risk option label',
defaultMessage: 'Medium',
},
low: {
id: 'low',
description: 'Business risk option label',
defaultMessage: 'Low',
},
notDefined: {
id: 'notDefined',
description: 'Business risk option label',
defaultMessage: 'Not defined',
},
remediationOptionAnsible: {
id: 'remediationOptionAnsible',
description: 'Option for filter by remediation',
defaultMessage: 'Ansible playbook',
},
remediationOptionManual: {
id: 'remediationOptionManual',
description: 'Option for filter by remediation',
defaultMessage: 'Manual',
},
remediationOptionNotAvailable: {
id: 'remediationOptionNotAvailable',
description: 'Option for filter by remediation',
defaultMessage: 'Not available',
},
onlyThisSystemCvePair: {
id: 'cveHelper.onlyThisSystemCvePair',
description: 'Status tooltip content in systems table',
defaultMessage: 'Applies only to this specific system and CVE.',
},
RHDBLink: {
id: 'cveHelper.RHDBLink',
description: 'Link label for RHDB button',
defaultMessage: 'View in Red Hat CVE database',
},
MITRELink: {
id: 'cveHelper.MITRELink',
description: 'Link label for MITRE button',
defaultMessage: 'MITRE Database',
},
editBusinessRisk: {
id: 'cveHelper.editBusinessRisk',
description: 'contect menu item label',
defaultMessage: 'Edit business risk',
},
editStatus: {
id: 'cveHelper.editStatus',
description: 'contect menu item label',
defaultMessage: 'Edit status',
},
createCveListByAccountTooltip: {
id: 'createCveListByAccount.tooltip',
description: 'Tooltip for status column',
defaultMessage: