-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathen.json
More file actions
1031 lines (1031 loc) · 48.3 KB
/
en.json
File metadata and controls
1031 lines (1031 loc) · 48.3 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
{
"404": {
"action": "Go Back",
"heading": "Oops! This is awkward",
"message": "The page you're looking for could not be found"
},
"admin": {
"access_management": "Access Management",
"activity": "Activity",
"add_project": "Add Project",
"alert_created": "Alert created",
"alert_deleted": "Alert deleted",
"alert_log_successful_publish": "Log successful publish",
"alert_log_successful_publish_help": "Emit a log message upon successful publishing of the alert to the destination, instead of only emitting logs when issues are encountered. Aids in debugging missing alerts, or making alert publishing auditable.",
"alerts": "Alerts",
"analyzers": "Analyzers",
"api_key_comment": "API Key Comment",
"api_key_comment_updated": "API Key Comment Updated",
"api_key_created_tooltip": "When the API Key was created",
"api_key_last_used_tooltip": "Approximate last usage of the API Key",
"api_keys": "API Keys",
"api_token": "API token",
"argument": "Argument",
"attempts": "Attempts",
"base_url": "Base URL",
"bom_formats": "BOM Formats",
"bom_formats_desc": "Enables support for processing BOMs of various formats. Only BOM formats which are enabled will be processed.",
"bom_validation": "BOM Validation",
"bom_validation_mode": "Validation Mode",
"capacity": "Capacity",
"cargo": "Cargo",
"change_password": "Change Password",
"change_password_next_login": "User must change password at next login",
"click_to_edit": "Click to edit",
"click_to_pause": "Click to pause",
"click_to_resume": "Click to resume",
"clone_template": "Clone Template",
"composer": "Composer",
"concurrency_key": "Concurrency Key",
"configuration": "Configuration",
"configuration_saved": "Configuration saved",
"confirm_secret_deletion": "Confirm secret deletion",
"confirm_secret_deletion_message": "Are you sure you want to delete the secret {name}?",
"cpan": "CPAN",
"create_alert": "Create Alert",
"create_ldap_user": "Create LDAP User",
"create_managed_user": "Create Managed User",
"create_oidc_group": "Create Group",
"create_oidc_user": "Create OpenID Connect User",
"create_repository": "Create Repository",
"create_role": "Create Role",
"create_secret": "Create secret",
"create_secret_description_placeholder": "What is the secret used for?",
"create_secret_name_placeholder": "Enter a unique name for the secret",
"create_secret_value_placeholder": "Enter the value of the secret",
"create_team": "Create Team",
"create_template": "Create Template",
"create_user": "Create User",
"days": "Days",
"days_of_metrics": "Days of metrics",
"default": "Default",
"default_language": "Default Language",
"default_language_desc": "Default language, which is used for everyone, when they didn't specify one. Langauge from Browser will be used, when this is disabled.",
"default_language_enable": "Enable Default language",
"defectdojo": "DefectDojo",
"delete_alert": "Delete Alert",
"delete_oidc_group": "Delete Group",
"delete_role": "Delete Role",
"delete_secret": "Delete secret",
"delete_team": "Delete Team",
"delete_template": "Delete Template",
"delete_user": "Delete User",
"depth": "Depth",
"disabled": "Disabled",
"disabled_for_tags": "Disabled for tags",
"distinguished_name": "Distinguished name",
"edit_api_key_comment": "Edit API Key Comment",
"edit_capacity": "Edit Capacity",
"edit_secret": "Edit secret",
"elapse_at": "Elapse At",
"enable_acl": "Enable portfolio access control (beta)",
"enable_bom_cyclonedx": "Enable CycloneDX",
"enable_risk_score_history_check": "Recalculate risk score weighting on project history",
"enable_svg_badge": "Enable unauthenticated SVG badge access (deprecated)",
"enable_telemetry_submission": "Enable telemetry submission",
"enabled": "Enabled",
"enabled_for_tags": "Enabled for tags",
"events": "Events",
"extension_name": "Extension name",
"failure": "Failure",
"fortify_ssc": "Fortify SSC",
"gem": "Gem",
"general": "General",
"github": "GitHub",
"go_modules": "Go Modules",
"group": "Group",
"hackage": "Hackage",
"hex": "Hex",
"hours": "Hours",
"identifier": "Identifier",
"include_active_children": "Include active children of projects",
"include_children": "Include children of projects",
"integration_defectdojo_enable": "Enable DefectDojo integration",
"integration_defectdojo_reimport_enable": "Enable reimport",
"integration_fortify_ssc_enable": "Enable Fortify SSC integration",
"integration_kenna_connector_id": "Connector ID",
"integration_kenna_enable": "Enable Kenna Security integration",
"integrations": "Integrations",
"internal": "Internal",
"internal_component_desc": "Internal components will be excluded from vulnerability scans and version checks that rely on external systems.\n Note that the regular expressions below must be compliant with Java's regex syntax.\nThe regex must match the whole string. To match all namespaces with 'example' in it, write '.*example.*'.",
"internal_components": "Internal Components",
"internal_identification_error": "An error occurred queueing internal component identification. Check server logs for details",
"internal_identification_queued": "Internal component identification queued",
"kenna_security": "Kenna Security",
"labels": "Labels",
"ldap_users": "LDAP Users",
"limit_to": "Limit To",
"limit_to_projects": "Limit to projects",
"limit_to_tags": "Limit to tags",
"load_more": "Load More",
"maintenance": "Maintenance",
"managed_users": "Managed Users",
"mapped_ldap_groups": "Mapped LDAP groups",
"mapped_oidc_groups": "Mapped OpenID Connect Groups",
"mapped_teams": "Mapped Teams",
"maven": "Maven",
"members": "Members",
"metrics": "Metrics",
"mime_type": "Mime type",
"minutes": "Minutes",
"multiselect_remove_role": "Roles can only be changed",
"name_regex": "Component name regex",
"name_regex_desc": "Specifies a regular expression that identifies internal components by the components name.",
"namespace_regex": "Component namespace regex",
"namespace_regex_desc": "Specifies a regular expression that identifies internal components by namespace. The namespace is often referred to as 'group', 'organization', or 'vendor' in various ecosystems.",
"new_api_key": "This is the newly generated API key. Please note that it will only be displayed once and cannot be retrieved later.",
"new_api_key_title": "New API Key",
"nixpkgs": "Nixpkgs",
"no_events": "No events",
"no_publishers_found": "No notification publishers found.",
"no_secrets_found": "No secrets found",
"notification_level": "Notification level",
"notifications": "Notifications",
"npm": "NPM",
"nuget": "NuGet",
"oidc_group_created": "OpenID Connect group created",
"oidc_group_deleted": "OpenID Connect group deleted",
"oidc_group_name": "Group Name",
"oidc_groups": "OpenID Connect Groups",
"oidc_users": "OpenID Connect Users",
"old_key_format": "This API key is outdated and should be updated soon for continued functionality!",
"password": "Password (or access token)",
"password_confirm": "Confirm password",
"password_never_expires": "Password never expires",
"password_updated": "Password updated",
"payload": "Payload",
"pending_events": "Waiting for new events…",
"perform_identification": "Perform Identification",
"perform_test": "Perform Test",
"permissions": "Permissions",
"permissions_updated": "Permissions updated",
"portfolio_access_control": "Portfolio Access Control",
"preferences": "Preferences",
"preview": "Preview",
"priority": "Priority",
"project": "Project",
"project_access": "Project access",
"project_retention_enable": "Enable Inactive Project Deletion",
"publisher": "Publisher",
"publisher_no_config": "This publisher does not support configuration.",
"publishers": "Publishers",
"python": "Python",
"queue": "Queue",
"reason": "Reason",
"regenerate_api_key": "This is the regenerated API key. Please note that it will only be displayed once and cannot be retrieved later.",
"regenerate_api_key_title": "Regenerate API Key",
"remove_api_key": "Remove API Key",
"remove_permission": "Remove Permission",
"remove_role": "Remove Role",
"remove_team_membership": "Remove Membership",
"repositories": "Repositories",
"repository_authentication": "Authentication required",
"repository_created": "Repository created",
"repository_deleted": "Repository deleted",
"repository_type": "Repository Type",
"required_confirmPassword": "Password confirmation is required and passwords must match",
"required_email": "Email address is required",
"required_fullname": "Fullname is required",
"required_oidc_group_name": "Name is required",
"required_password": "Password is required",
"required_role_name": "Role name is required",
"required_team_name": "Team name is required",
"required_username": "Username is required",
"result": "Result",
"retention": "Retention",
"risk_score_calc": "((critical * 10) + (high * 5) + (medium * 3) + (low * 1) + (unassigned * 5))",
"risk_score_description": "Dependency Track calculates the risk score of each project as a weighted severity score using the following calculation as default: ",
"risk_score_weight_critical": "Critical (default: 10)",
"risk_score_weight_high": "High (default: 5)",
"risk_score_weight_low": "Low (default: 1)",
"risk_score_weight_medium": "Medium (default: 3)",
"risk_score_weight_unassigned": "Unassigned (default: 5)",
"risk_score_weighting_description": "You can customize the weighting of each severity to customize the risk score.",
"role": "Role",
"role_already_assigned": "The user already has this role assigned.",
"role_assigned": "Role Assigned",
"role_created": "Role Created",
"role_deleted": "Role Deleted",
"role_name": "Role Name",
"role_updated": "Role Updated",
"roles": "Roles",
"scope": "Scope",
"secret_not_found": "Secret not found",
"secret_not_found_message": "The selected secret does not exist",
"secret_reference_field": "This field references a managed secret",
"secrets": "Secrets",
"secrets_management": "Secret Management",
"select_extension": "Select an extension",
"select_ldap_group": "Select LDAP Group",
"select_oidc_group": "Select OpenID Connect Group",
"select_permission": "Select permission",
"select_project": "Select Project",
"select_role": "Select Role",
"select_secret_placeholder": "Select a secret",
"select_team": "Select Team",
"select_team_as_recipient": "Select team as recipient",
"subject_identifier": "Subject Identifier",
"submit": "Submit",
"suspended": "Suspended",
"tags": "Tags",
"tags_delete_unused": "Delete Unused",
"task_queue_name": "Task Queue",
"task_queue_type_activity": "Activity",
"task_queue_type_workflow": "Workflow",
"task_queues": "Task Queues",
"team_created": "Team created",
"team_deleted": "Team deleted",
"team_membership": "Team membership",
"team_name": "Team Name",
"teams": "Teams",
"telemetry": "Telemetry",
"telemetry_last_submission": "Last submission",
"telemetry_no_data_submitted_yet": "No telemetry data submitted yet.",
"telemetry_submitted_at": "Submitted: {timestamp}",
"template": "Template",
"template_created": "Template created",
"template_deleted": "Template deleted",
"templates": "Templates",
"test_check_failed": "Check \"{name}\" failed: {message}",
"test_check_passed": "Check \"{name}\" passed",
"test_check_skipped": "Check \"{name}\" skipped",
"test_notification_queued": "A test notification has been queued",
"test_results": "Test Results",
"timer": "Timer",
"token": "Token",
"type_to_search_secrets": "Type to search secrets",
"update_secret": "Update secret {name}",
"update_secret_description_placeholder": "Enter a new description, or leave empty to keep the existing one.",
"update_secret_value_placeholder": "Enter a new value, or leave empty to keep the existing one.",
"url": "URL",
"user_created": "User created",
"user_deleted": "User deleted",
"username": "Username",
"versions": "Versions",
"vuln_sources": "Vulnerability Sources",
"vulnerability_scans": "Vulnerability Scans",
"welcome_message": "Welcome Message",
"welcome_message_desc": "Customize the welcome message that appears on the start page of Dependency-Track before users sign in.",
"welcome_message_enable": "Enable welcome message",
"workflow": "Workflow",
"workflow_child_run": "Child Run",
"workflow_event_activity_task_completed": "Activity Task Completed",
"workflow_event_activity_task_created": "Activity Task Created",
"workflow_event_activity_task_failed": "Activity Task Failed",
"workflow_event_child_run_completed": "Child Run Completed",
"workflow_event_child_run_created": "Child Run Created",
"workflow_event_child_run_failed": "Child Run Failed",
"workflow_event_external_event_received": "External Event Received",
"workflow_event_run_canceled": "Run Canceled",
"workflow_event_run_completed": "Run Completed",
"workflow_event_run_created": "Run Created",
"workflow_event_run_resumed": "Run Resumed",
"workflow_event_run_started": "Run Started",
"workflow_event_run_suspended": "Run Suspended",
"workflow_event_side_effect_executed": "Side Effect Executed",
"workflow_event_timer_created": "Timer Created",
"workflow_event_timer_elapsed": "Timer Elapsed",
"workflow_event_type_unknown": "Unknown",
"workflow_event_workflow_task_completed": "Workflow Task Completed",
"workflow_event_workflow_task_started": "Workflow Task Started",
"workflow_instance_id": "Instance ID",
"workflow_name": "Workflow Name",
"workflow_parent_run": "Parent Run",
"workflow_run_details": "Workflow Run Details",
"workflow_runs": "Workflow Runs",
"workflow_step_timeout": "Step Timeout",
"workflows": "Workflows"
},
"condition": {
"forbidden": "Forbidden (403)",
"http_request_error": "HTTP Request Error",
"server_error": "Server Error",
"successful": "successful",
"unsuccessful_action": "Could not perform the requested action"
},
"hashes": {
"blake3": "BLAKE3",
"blake_256": "BLAKE2b-256",
"blake_384": "BLAKE2b-384",
"blake_512": "BLAKE2b-512",
"md5": "MD5",
"sha3_256": "SHA3-256",
"sha3_384": "SHA3-384",
"sha3_512": "SHA3-512",
"sha_1": "SHA-1",
"sha_256": "SHA-256",
"sha_384": "SHA-384",
"sha_512": "SHA-512"
},
"language": {
"de": "German",
"en": "English",
"es": "Spanish",
"fr": "French",
"hi": "Hindi",
"it": "Italian",
"ja": "Japanese",
"pl": "Polish",
"pt": "Portuguese (Portugal)",
"pt-BR": "Portuguese (Brazil)",
"ru": "Russian",
"zh": "Chinese"
},
"message": {
"about": "About",
"actions": "Actions",
"active": "Active",
"add": "Add",
"add_affected_component": "Add Affected Component",
"add_comment": "Add Comment",
"add_component": "Add Component",
"add_item": "Add {item}",
"add_license": "Add License",
"add_tag": "Add Tag",
"add_version": "Add Version",
"administration": "Administration",
"affected_components": "Affected Components",
"affected_projects": "Affected Projects",
"age": "Age",
"age_tooltip": "Age in ISO-8601 period format (e.g. P1Y = 1 Year; P2Y3M = 2 Years, 3 Months)",
"alerts_tagged_with": "Alerts tagged with {tag}",
"aliases": "Aliases",
"analysis": "Analysis",
"analysis_details_tooltip": "Details (explanation, workaround details, and other impact information)",
"analysis_state": "Analysis State",
"analysis_status": "Analysis Status",
"analysis_tooltip": "The current state of an occurrence of a vulnerability",
"analyzer": "Analyzer",
"apply": "Apply",
"apply_vex": "Apply VEX",
"apply_vex_tooltip": "Apply analyses from a Vulnerability Exploitability eXchange (VEX) document to this project.",
"approved": "Approved",
"attributed_on": "Attributed On",
"audit_trail": "Audit Trail",
"audit_vulnerabilities": "Audit Vulnerabilities",
"auditing_progress": "Auditing Progress",
"authenticated": "Authenticated",
"author": "Author",
"authors": "Authors",
"bom": "BOM",
"bom_format": "BOM Format",
"bom_uploaded": "BOM uploaded",
"browse": "Browse",
"can_not_fix": "Can not fix",
"cancel": "Cancel",
"change_password": "Change Password",
"classification": "Classification",
"classifier": "Classifier",
"clear": "Clear",
"clear_all": "Clear all",
"close": "Close",
"code_not_present": "Code not present",
"code_not_reachable": "Code not reachable",
"collectionLogic": "Project Collection Logic",
"collection_logic_metrics_by_aggregate_direct_children": "Metrics of collection project are calculated by aggregating numbers of all direct children.",
"collection_logic_metrics_by_aggregate_direct_children_with_tags": "Metrics of collection project are calculated by aggregating numbers of direct children with tag '{tag}'.",
"collection_logic_metrics_by_aggregate_latest_version": "Metrics of collection project are calculated by aggregating numbers of latest versions of direct children.",
"collection_project": "Collection project",
"collection_projects": "Collection Projects",
"comment": "Comment",
"comments": "Comments",
"completed": "Completed",
"component": "Component",
"component_application": "Application",
"component_author": "Author",
"component_author_desc": "The author of the component",
"component_classification": "Classification",
"component_classification_desc": "Classifies whether a component is considered internal or external to an organization",
"component_classifier_desc": "Specifies the type of component: Assets (applications, operating systems, and hardware) and non-assets (libraries, frameworks, and files)",
"component_container": "Container",
"component_cpe_desc": "The CPE v2.2 or v2.3 URI as provided by MITRE or NIST. All assets (applications, operating systems, and hardware) should have a CPE specified",
"component_created": "Component created",
"component_data": "Data",
"component_deleted": "Component deleted",
"component_details": "Component Details",
"component_device": "Device",
"component_device_driver": "Device Driver",
"component_file": "File",
"component_filename_desc": "Specifies the observed filename of the component",
"component_firmware": "Firmware",
"component_framework": "Framework",
"component_group_desc": "The suppliers higher-level namespace, group, or vendor identifier",
"component_hash": "Component Hash",
"component_hash_desc": "Specifies the observed hash value of the component using the preceding algorithm",
"component_identifier_desc": "Identifies the component by Package URL (PURL) or CPE. If the version type is 'Exact', the PURL or CPE must contain the version. If a range is specified, version information in the identifier will be ignored.",
"component_library": "Library",
"component_license_expression_desc": "Specifies license information for the component in the form of an SPDX expression",
"component_license_url_desc": "Specifies the URL to the license of the component",
"component_machine_learning_model": "Machine Learning Model",
"component_name": "Component name",
"component_name_desc": "The name of the component as provided by the supplier",
"component_namespace_group_vendor": "Namespace / group / vendor",
"component_operating_system": "Operating system",
"component_package_url_desc": "A Valid Package URL is required for libraries and frameworks. PURL syntax: pkg:type/namespace/name@version?qualifiers#subpath",
"component_platform": "Platform",
"component_properties": "Component Properties",
"component_search": "Component Search",
"component_spdx_license_desc": "Specifies the SPDX license ID of the component",
"component_supplier_name_desc": "The organization that supplied the component",
"component_swid_tagid_desc": "The ISO/IEC 19770-2:2015 (SWID) tag ID provided by the software vendor",
"component_team_desc": "Select the team assigned to this project",
"component_updated": "Component updated",
"component_version_desc": "The version of the component as provided by the supplier",
"component_vulnerabilities": "Component Vulnerabilities",
"components": "Components",
"condition": "Condition",
"condition_deleted": "Condition deleted",
"conditions": "Conditions",
"connected_as": "Connected as",
"contacts": "Contacts",
"coordinates": "Coordinates",
"coordinates_version_tooltip": "You can use the comparison operators >, <, >=, <=, == and != to match specific versions or version ranges",
"copyright": "Copyright",
"cpe": "CPE",
"cpe_full": "Common Platform Enumeration (CPE)",
"create": "Create",
"create_component_property": "Create Component Property",
"create_license_group": "Create License Group",
"create_policy": "Create Policy",
"create_project": "Create Project",
"create_project_property": "Create Project Property",
"create_property": "Create Property",
"create_vulnerability": "Create Vulnerability",
"created": "Created",
"credits": "Credits",
"csv_filetype": "CSV ",
"custom_license": "Custom License",
"custom_license_deleted": "Custom License Deleted",
"cvss": "CVSS",
"cvss_access_complexity": "Access Complexity",
"cvss_adjacent": "Adjacent",
"cvss_attack_complexity": "Attack Complexity",
"cvss_attack_vector": "Attack Vector",
"cvss_authentication": "Authentication",
"cvss_availability_impact": "Availability Impact",
"cvss_base_score": "CVSS Base Score",
"cvss_base_score_short": "Base Score",
"cvss_changed": "Changed",
"cvss_complete": "Complete",
"cvss_confidentiality_impact": "Confidentiality Impact",
"cvss_exploitability": "Exploitability",
"cvss_exploitability_subscore": "CVSS Exploitability Subscore",
"cvss_high": "High",
"cvss_impact": "Impact",
"cvss_impact_subscore": "CVSS Impact Subscore",
"cvss_integrity_impact": "Integrity Impact",
"cvss_local": "Local",
"cvss_low": "Low",
"cvss_medium": "Medium",
"cvss_multiple": "Multiple",
"cvss_network": "Network",
"cvss_none": "None",
"cvss_partial": "Partial",
"cvss_physical": "Physical",
"cvss_privileges_required": "Privileges Required",
"cvss_required": "Required",
"cvss_scope": "Scope",
"cvss_single": "Single",
"cvss_unchanged": "Unchanged",
"cvss_user_interaction": "User Interaction",
"cvss_v2": "CVSSv2",
"cvss_v2_vector": "CVSSv2 Vector",
"cvss_v3": "CVSSv3",
"cvss_v3_vector": "CVSSv3 Vector",
"cwe": "CWE",
"cwe_full": "Common Weakness Enumeration (CWE)",
"cwe_id": "CWE ID",
"dashboard": "Dashboard",
"data": "Data",
"dates": "Dates",
"delete": "Delete",
"delete_license_group": "Delete License Group",
"delete_policy": "Delete Policy",
"delete_selected": "Delete selected items",
"dependency_graph": "Dependency Graph",
"deprecated": "Deprecated",
"description": "Description",
"details": "Details",
"direct_only": "Direct only",
"direction": "Direction",
"download_bom": "Download BOM",
"download_component": "Download Components",
"edit": "Edit",
"edit_affected_component": "Edit Affected Component",
"email": "Email",
"empty_selection": "No items selected",
"endpoints": "Endpoints",
"epss": "EPSS",
"epss_percentile": "EPSS Percentile",
"epss_score": "EPSS Score",
"exact": "Exact",
"exploit_predictions": "Exploit Predictions",
"exploitable": "Exploitable",
"export_vdr": "Export VDR",
"export_vdr_tooltip": "Export a Vulnerability Disclosure Report (VDR), as defined in NIST SP 800-161.",
"export_vex": "Export VEX",
"export_vex_tooltip": "Export a Vulnerability Exploitability eXchange (VEX) document.",
"extended": "Extended",
"external_references": "External References",
"false_positive": "False Positive",
"filename": "Filename",
"filters": "Filters",
"findings": "Findings",
"findings_audited": "Findings Audited",
"findings_unaudited": "Findings Unaudited",
"first_seen": "First Seen At",
"from": "From",
"fsf_libre": "FSF Libre",
"fullname": "Full name",
"general": "General",
"global_audit": "Global Audit",
"group": "Group",
"group_name": "Group Name",
"grouped_vulnerabilities": "Grouped Vulnerabilities",
"hashes": "Hashes",
"hashes_short_desc": "Hash",
"home": "Home",
"id": "ID",
"identifier": "Identifier",
"identifier_type": "Identifier Type",
"identity": "Identity",
"in_triage": "In Triage",
"inactive": "Inactive",
"inactive_active_children": "The project cannot be set to inactive if it has active children",
"inactive_since": "Inactive since",
"inactive_versions": "Inactive Versions",
"include_acl": "Include access control list",
"include_audit_history": "Include audit history",
"include_components": "Include components",
"include_policy_violations": "Include Policy Violations",
"include_properties": "Include properties",
"include_services": "Include services",
"include_tags": "Include tags",
"inherited_risk_score": "Inherited Risk Score",
"input_validation_failed": "Input validation failed",
"integrity": "Integrity",
"internal": "Internal",
"inventory": "Inventory",
"inventory_with_vulnerabilities": "Inventory with Vulnerabilities",
"item": "Item",
"justification": "Justification",
"justification_tooltip": "The rationale of why the impact analysis state was asserted to be \"Not Affected\"",
"language": "Language",
"last_bom_import": "Last BOM Import",
"last_measurement": "Last Measurement",
"last_seen": "Last Seen At",
"latest": "Latest",
"latest_version": "Latest Version",
"legal": "Legal",
"license": "License",
"license_comments": "License Comments",
"license_expression": "SPDX Expression",
"license_group": "License group",
"license_group_created": "License group created",
"license_group_deleted": "License group deleted",
"license_groups": "License Groups",
"license_id": "License ID",
"license_id_desc": "The SPDX defined ID of the license. The ID may only contain alpha, numeric, and specific symbols: _ - . +",
"license_name": "License Name",
"license_name_desc": "The name of the license as provided by the supplier",
"license_risk": "License Risk",
"license_text": "License Text",
"license_url": "License URL",
"licenses": "Licenses",
"loading": "Loading",
"login": "Login",
"login_desc": "Sign In to your account",
"login_forbidden": "This account is inactive or has been suspended",
"login_more_options": "More options",
"login_permission_required": "Login succeeded, but you don’t seem to have any permissions yet. Please contact your administrators for help.",
"login_unauthorized": "Invalid username or password",
"logout": "Logout",
"manufacturer": "Manufacturer",
"manufacturer_name": "Manufacturer name",
"manufacturer_name_desc": "The organization that manufactured the component that the project describes",
"matrix": "Matrix",
"method": "Method",
"metric_refresh_requested": "A refresh has been requested. Metrics will be updated when the refresh task has completed.",
"name": "Name",
"next": "Next",
"no_file_chosen": "No file chosen",
"non_vulnerable": "Non Vulnerable",
"not_affected": "Not Affected",
"not_found_in_dependency_graph": "Dependency could not be found in dependency graph",
"not_set": "Not Set",
"notes": "Notes",
"object_identifier": "Object Identifier",
"object_identifier_desc": "A unique identifier (UUID) that Dependency-Track automatically assigns to every object",
"occurred_on": "Occurred On",
"occurrence_line": "Line",
"occurrence_location": "Location",
"occurrence_offset": "Offset",
"occurrence_symbol": "Symbol",
"occurrences": "Occurrences",
"occurrences_in_projects": "Occurrences in projects",
"occurrences_none_hint": "Either no occurrences identified, or the tool that generated the BOM does not provide occurrence data.",
"occurrences_of_component": "Occurrences of component {name}",
"oidc_availability_check_failed": "Failed to determine availability of OpenID Connect",
"oidc_redirect_failed": "An error occurred while redirecting to the OpenID Connect identity provider",
"only_direct_tooltip": "Only show direct dependencies, hiding transitive dependencies",
"only_outdated_tooltip": "Only show dependencies that have newer stable versions available",
"operational_risk": "Operational Risk",
"operator": "Operator",
"osi_approved": "OSI Approved",
"outdated_only": "Outdated only",
"overview": "Overview",
"owasp_rr": "OWASP Risk Rating",
"owasp_rr_awareness": "Awareness",
"owasp_rr_awareness_hidden": "Hidden",
"owasp_rr_awareness_obvious": "Obvious",
"owasp_rr_awareness_public_knowledge": "Public",
"owasp_rr_awareness_unknown": "Unknown",
"owasp_rr_business_impact_factor": "Business impact Factor",
"owasp_rr_business_impact_score": "OWASP RR Business impact score",
"owasp_rr_business_impact_score_short": "Business impact",
"owasp_rr_ease_of_discovery": "Ease of discovery",
"owasp_rr_ease_of_discovery_automated_tools_available": "Automated",
"owasp_rr_ease_of_discovery_difficult": "Difficult",
"owasp_rr_ease_of_discovery_easy": "Easy",
"owasp_rr_ease_of_discovery_impossible": "Impossible",
"owasp_rr_ease_of_exploit": "Ease of exploit",
"owasp_rr_ease_of_exploit_automated_tools_available": "Automated",
"owasp_rr_ease_of_exploit_difficult": "Difficult",
"owasp_rr_ease_of_exploit_easy": "Easy",
"owasp_rr_ease_of_exploit_theoritical": "Theoritical",
"owasp_rr_financial_damage": "Financial Damage",
"owasp_rr_financial_damage_bankruptcy": "Bankruptcy",
"owasp_rr_financial_damage_less_than_cost_to_fix": "Less than fix",
"owasp_rr_financial_damage_minor": "Minor",
"owasp_rr_financial_damage_significant": "Significant",
"owasp_rr_intrusion_detection": "Intrusion detection",
"owasp_rr_intrusion_detection_active": "Active",
"owasp_rr_intrusion_detection_logged_reviewed": "Logged & Reviewed",
"owasp_rr_intrusion_detection_logged_unreviewed": "Logged & Unreviewed",
"owasp_rr_intrusion_detection_not_logged": "Not logged",
"owasp_rr_likelihood_score": "OWASP RR Likelihood score",
"owasp_rr_likelihood_score_short": "Likelihood",
"owasp_rr_loss_of_accountability": "Loss of accountability",
"owasp_rr_loss_of_accountability_completely_anonymous": "Completely anonymous",
"owasp_rr_loss_of_accountability_fully_traceable": "Fully traceable",
"owasp_rr_loss_of_accountability_possibly_traceable": "Possibly traceable",
"owasp_rr_loss_of_availability": "Loss of availibility (services)",
"owasp_rr_loss_of_availability_all": "All",
"owasp_rr_loss_of_availability_extensive_primary_services": "Extensive primary",
"owasp_rr_loss_of_availability_extensive_secondary_services": "Extensive secondary",
"owasp_rr_loss_of_availability_minimal_primary_services": "Minimal primary",
"owasp_rr_loss_of_availability_minimal_secondary_services": "Minimal secondary",
"owasp_rr_loss_of_confidentiality": "Loss of confidentiality (data)",
"owasp_rr_loss_of_confidentiality_all": "All",
"owasp_rr_loss_of_confidentiality_extensive_critical": "Extensive critical",
"owasp_rr_loss_of_confidentiality_extensive_non_sensitive": "Extensive non sensitive",
"owasp_rr_loss_of_confidentiality_minimal_critical": "Minimal critical",
"owasp_rr_loss_of_confidentiality_minimal_non_sensitive": "Minimal non sensitive",
"owasp_rr_loss_of_integrity": "Loss of integrity (corruption)",
"owasp_rr_loss_of_integrity_all": "All",
"owasp_rr_loss_of_integrity_extensive_seriously_corrupt": "Extensive seriously",
"owasp_rr_loss_of_integrity_extensive_slightly_corrupt": "Extensive slightly",
"owasp_rr_loss_of_integrity_minimal_seriously_corrupt": "Minimal seriously",
"owasp_rr_loss_of_integrity_minimal_slightly_corrupt": "Minimal slightly",
"owasp_rr_motivation": "Motivation",
"owasp_rr_motivation_high_reward": "High reward",
"owasp_rr_motivation_low": "Low",
"owasp_rr_motivation_possible_reward": "Possible reward",
"owasp_rr_non_compliance": "Non compliance",
"owasp_rr_non_compliance_clear": "Clear",
"owasp_rr_non_compliance_high_profile": "High profile",
"owasp_rr_non_compliance_minor": "Minor",
"owasp_rr_opportunity": "Opportunity / Access",
"owasp_rr_opportunity_full": "Full",
"owasp_rr_opportunity_none": "None",
"owasp_rr_opportunity_some": "Some",
"owasp_rr_opportunity_special": "Special",
"owasp_rr_privacy_violation": "Privacy violation",
"owasp_rr_privacy_violation_hundreds": "Hundreds",
"owasp_rr_privacy_violation_millions": "Millions",
"owasp_rr_privacy_violation_one_individual": "One",
"owasp_rr_privacy_violation_thousands": "Thousands",
"owasp_rr_reputation_damage": "Reputation Damage",
"owasp_rr_reputation_damage_brand": "Brand",
"owasp_rr_reputation_damage_goodwill": "Goodwill",
"owasp_rr_reputation_damage_major_accounts": "Major accounts",
"owasp_rr_reputation_damage_minimal": "Minimal",
"owasp_rr_skill_level": "Skill level",
"owasp_rr_skill_level_advanced": "Advanced",
"owasp_rr_skill_level_network_and_programming": "Programming",
"owasp_rr_skill_level_none": "None",
"owasp_rr_skill_level_security_penetration_testing": "Pentest",
"owasp_rr_skill_level_some": "Some",
"owasp_rr_technical_impact_factor": "Technical impact Factor",
"owasp_rr_technical_impact_score": "OWASP RR Technical impact score",
"owasp_rr_technical_impact_score_short": "Technical impact",
"owasp_rr_threat_agent_factor": "Threat Agent Factor",
"owasp_rr_threat_size": "Threat Size",
"owasp_rr_threat_size_anonymous_internet_users": "Internet users",
"owasp_rr_threat_size_auth_users": "Authenticated users",
"owasp_rr_threat_size_dev_sa": "Dev/Sysadmin",
"owasp_rr_threat_size_intranet": "Intranet",
"owasp_rr_threat_size_partners": "Partners",
"owasp_rr_vulnerability_factor": "Vulnerability Factor",
"package_url": "Package URL (PURL)",
"package_url_full": "Package URL (PURL)",
"parent": "Parent",
"password": "Password",
"password_change": "Change password",
"password_change_success": "Password changed successfully",
"password_confirm": "Confirm new password",
"password_current": "Current password",
"password_force_change": "Update Password",
"password_force_change_desc": "You need to change your password",
"password_new": "New password",
"password_not_acceptable": "Check that new password and confirm password match. You can't re-use your old password",
"password_unauthorized": "Check current login credentials and try again",
"phone": "Phone",
"policies": "Policies",
"policies_tagged_with": "Policies tagged with {tag}",
"policy_bundle_hash": "Bundle Hash",
"policy_bundle_info": "Bundle Info",
"policy_bundle_sync": "Sync Bundle",
"policy_bundle_sync_requested": "Policy bundle synchronization requested. Vulnerability policy data will be updated when the sync is completed.",
"policy_bundle_sync_timestamp": "Last Synced On",
"policy_bundle_url": "Bundle URL",
"policy_created": "Policy created",
"policy_deleted": "Policy deleted",
"policy_is_only_for_latest_project_version": "Limit to project versions marked as latest",
"policy_last_bundle_sync_failed": "Last bundle sync failed",
"policy_management": "Policy Management",
"policy_name": "Policy Name",
"policy_operation_mode": "Operation Mode",
"policy_violation_audit": "Policy Violation Audit",
"policy_violations": "Policy Violations",
"policy_violations_by_classification": "Policy Violations by Classification",
"policy_violations_by_state": "Policy Violations by State",
"portfolio": "Portfolio",
"portfolio_statistics": "Portfolio Statistics",
"portfolio_vulnerabilities": "Portfolio Vulnerabilities",
"previous": "Previous",
"profile_update": "Update Profile",
"profile_updated": "Profile updated",
"project_add_collection_tag": "Aggregate data of children with this tag",
"project_cloning_in_progress": "The project is being created with the cloning options specified",
"project_collection_logic_aggregate_direct_children": "Aggregate direct children",
"project_collection_logic_aggregate_direct_children_with_tag": "Aggregate direct children with tag",
"project_collection_logic_desc": "Specifies if this project is a collection project and which metrics calculation logic to apply for a collection project. Collection projects do not have own components but display data of their children using one of the available logics.",
"project_collection_logic_latest_version_children": "Aggregate direct children marked as latest",
"project_created": "Project created",
"project_delete_message": "Deleting this project will also permanently delete all associated child projects. This action cannot be undone. Are you sure you want to proceed?",
"project_delete_title": "Confirm Project Deletion",
"project_deleted": "Project deleted",
"project_details": "Project Details",
"project_is_latest": "Is latest version",
"project_metadata_supplier_name_desc": "The organization that supplied the BOM",
"project_name": "Project Name",
"project_name_desc": "The name of the project or component as provided by the supplier",
"project_properties": "Project Properties",
"project_reanalyze": "Reanalyze",
"project_reanalyze_requested": "A Project Vulnerability Analysis has been requested. Project vulnerability data will be updated when the reanalysis task has completed.",
"project_reanalyze_tooltip": "Runs configured analyzers to detect vulnerabilities in this project's components. Will use any cached results that haven't expired yet",
"project_retention_type": "Select retention type for projects",
"project_supplier_name_desc": "The organization that supplied the component that the project describes",
"project_updated": "Project updated",
"project_vulnerabilities": "Project Vulnerabilities",
"projects": "Projects",
"projects_at_risk": "Projects at Risk",
"projects_tagged_with": "Projects tagged with {tag}",
"properties": "Properties",
"property_created": "Property created",
"property_deleted": "Property deleted",
"property_name": "Property Name",
"property_type": "Property Type",
"property_value": "Property Value",
"protected_at_perimeter": "Protected at perimeter",
"protected_at_runtime": "Protected at runtime",
"protected_by_compiler": "Protected by compiler",
"protected_by_mitigating_control": "Protected by mitigating control",
"provider": "Provider",
"provider_name": "Provider name",
"published": "Published",
"purl": "purl",
"range": "Range",
"ratings": "Ratings",
"recommendation": "Recommendation",
"record_created_message": "Record created successfully",
"record_created_title": "Created",
"record_deleted_message": "Record deleted successfully",
"record_deleted_title": "Deleted",
"record_unchanged_message": "Record did not change and remains unmodified",
"record_unchanged_title": "Unchanged",
"record_updated_message": "Record updated successfully",
"record_updated_title": "Updated",
"references": "References",
"rejected": "Rejected",
"remove_component": "Remove Component",
"reported_by": "Reported By",
"required_component_identifier": "A component identifier is required",
"required_component_name": "The component name is required",
"required_component_version": "The component version is required",
"required_license_id": "The license ID is required",
"required_license_name": "The license name is required",
"required_project_name": "The project name is required",
"required_service_name": "The service name is required",
"required_vulnerability_vuln_id": "A unique vulnerability identifier is required",
"requires_configuration": "Requires configuration",
"requires_dependency": "Requires dependency",
"requires_environment": "Requires environment",
"reset": "Reset",
"resolved": "Resolved",
"response": "Vendor Response (project)",
"response_tooltip": "A response to the vulnerability by the manufacturer, supplier, or project responsible for the affected component or service",
"risk_score": "Risk Score",
"risk_type": "Risk Type",
"rollback": "Rollback",
"rows_per_page": "Rows per page:",
"score": "Score",
"search": "Search",
"search_parent": "Type to search parent",
"security_risk": "Security Risk",
"see_also": "See Also",
"select": "Select",
"select_cwe": "Select CWE",
"select_license": "Select License",
"select_project": "Select Project",
"select_tag": "Select Tag",
"selection_deleted": "Selection deleted",
"service_deleted": "Service deleted",
"service_details": "Service Details",
"service_name": "Service name",
"service_name_desc": "The name of the service as described by the provider",
"service_provider_name_desc": "The name of the provider",
"service_updated": "Service updated",
"service_version_desc": "The version of the service as described by the provider",
"service_vulnerabilities": "Service Vulnerabilities",
"services": "Services",
"severity": "Severity",
"show_complete_graph": "Show complete graph",
"show_flat_view": "Show flat project view",
"show_in_dependency_graph": "Show in dependency graph",
"show_inactive_projects": "Show inactive projects",
"show_suppressed_findings": "Show suppressed findings",
"show_suppressed_violations": "Show suppressed violations",
"show_update_information": "Highlight outdated components",
"source_header": "Source Header",
"spdx_license_id": "SPDX License ID",
"started": "Started",
"state": "State",
"status": "Status",
"status_active": "Active",
"status_canceled": "Canceled",
"status_completed": "Completed",
"status_created": "Created",
"status_failed": "Failed",
"status_paused": "Paused",
"status_running": "Running",
"status_suspended": "Suspended",
"subtitle": "Subtitle",
"supplier": "Supplier",
"supplier_name": "Supplier name",
"suppress": "Suppress",
"suppressed": "Suppressed",
"swid": "swid",
"swid_tagid": "SWID Tag ID",
"switch_view": "Cannot switch view while searching",
"tag_name": "Tag Name",
"tag_unassigned_successfully": "Untagged successfully",
"tags": "Tags",
"team": "Team",
"teams": "Teams",
"template": "Template",
"text_search": "Text Search",
"title": "Title",
"to": "To",
"total": "Total",
"total_findings": "Total Findings",
"total_findings_excluding_aliases": "Total Findings (excluding aliases)",
"total_findings_including_aliases": "Total Findings (including aliases)",
"total_rows": "total rows",
"type": "Type",
"unassign_tag_from_selection": "Unassign tag from selection",
"update": "Update",
"update_details": "Update Details",
"updated": "Updated",
"upload": "Upload",
"upload_bom": "Upload BOM",
"upload_bom_tooltip": "Upload BOM, all components will be analyzed for vulnerabilities",
"upload_vex": "Upload VEX",
"url": "URL",
"urls": "URLs",
"username": "Username",
"validFrom": "Valid From",
"validUntil": "Valid Until",
"value": "Value",
"vector": "Vector",
"vendor_response": "Vendor Response",
"version": "Version",
"version_distance": "Version Distance",
"version_distance_epoch": "epoch",
"version_distance_major": "major",
"version_distance_minor": "minor",
"version_distance_patch": "patch",
"version_distance_tooltip": "Specify the difference between version numbers, or empty to ignore",
"version_type": "Version Type",
"vex_uploaded": "VEX uploaded",
"view_details": "View Details",
"violation_state": "Violation State",
"violations_audited": "Violations Audited",
"violations_unaudited": "Violations Unaudited",
"vulnerabilities": "Vulnerabilities",
"vulnerabilities_by_occurrence": "Vulnerabilities By Occurrence",
"vulnerabilities_tagged_with": "Vulnerabilities tagged with {tag}",
"vulnerability": "Vulnerability",
"vulnerability_audit": "Vulnerability Audit",
"vulnerability_created": "Vulnerability created",
"vulnerability_created_desc": "The date the vulnerability record was originally created",
"vulnerability_deleted": "Vulnerability deleted",
"vulnerability_details": "Vulnerability Details",
"vulnerability_policies": "Vulnerability Policies",
"vulnerability_published_desc": "The date the vulnerability record was originally published",
"vulnerability_tags_updated": "Vulnerability tags updated",
"vulnerability_title": "Title",
"vulnerability_title_desc": "The optional title of the vulnerability",
"vulnerability_updated": "Vulnerability updated",
"vulnerability_updated_desc": "The date the vulnerability record was last updated",
"vulnerability_vuln_id": "Vulnerability ID",
"vulnerability_vuln_id_desc": "The identifier which uniquely identifies this vulnerability within the same source",
"vulnerable": "Vulnerable",
"vulnerable_components": "Vulnerable Components",
"vulnerable_projects": "Vulnerable Projects",
"weakness": "Weakness",
"will_not_fix": "Will not fix",
"workaround_available": "Workaround available",
"x_trust_boundary": "Cross Trust Boundary"
},
"operator": {
"contains_all": "contains all",
"contains_any": "contains any",
"is": "is",
"is_not": "is not",
"matches": "matches",
"no_match": "does not match"
},
"policy_violation": {
"fails": "Violation Failures",
"infos": "Informational Violations",
"license": "License Violations",
"operational": "Operational Violations",
"security": "Security Violations",
"total": "Total Violations",
"warns": "Violation Warnings"
},
"severity": {
"critical": "Critical",
"critical_severity": "Critical Severity",
"cvss_severity": "CVSS Severity",
"derive_from_cvss_or_owasp_rr": "Derive from CVSS or OWASP RR",
"high": "High",
"high_severity": "High Severity",
"info": "Info",
"info_severity": "Informational",
"low": "Low",
"low_severity": "Low Severity",
"medium": "Medium",
"medium_severity": "Medium Severity",
"owasp_rr_severity": "OWASP Risk Rating Severity",
"unassigned": "Unassigned",
"unassigned_severity": "Unassigned Severity"
},
"validation": {
"confirmed": "{_field_} doesn't match",
"max_value": "{_field_} value should be under {max}",
"min_value": "{_field_} value should be above {min}",
"required": "{_field_} is required",