-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.json
More file actions
4832 lines (4832 loc) · 307 KB
/
en.json
File metadata and controls
4832 lines (4832 loc) · 307 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
{
" (reversed)": " (reversed)",
" & ": " & ",
" Please contact Filigran to get your license at ": " Please contact Filigran to get your license at ",
"-": "-",
"- a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.": "- a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.",
"- if your service account has been created originally as a service account (not transformed), please also change the email of your service account before/after transforming it to a user to ensure that the future user will be able to receive an email in the forgot password workflow.": "- if your service account has been created originally as a service account (not transformed), please also change the email of your service account before/after transforming it to a user to ensure that the future user will be able to receive an email in the forgot password workflow.",
"- password will be cleaned: you will not be able to log in to ui with this service account given there will be no password in Database for this service account.": "- password will be cleaned: you will not be able to log in to ui with this service account given there will be no password in Database for this service account.",
"- Unsupported": "- Unsupported",
"- you will not pertain to the main platform organisation anymore unless you have been specifically granted access to the organisation.": "- you will not pertain to the main platform organisation anymore unless you have been specifically granted access to the organisation.",
"- your user will pertain to the main platform organisation in addition to any organisation that the current user is belonging to": "- your user will pertain to the main platform organisation in addition to any organisation that the current user is belonging to",
"... successfully deleted": "{entity_type} successfully deleted",
"... successfully duplicated": "{entity_type} successfully duplicated",
"[Preview] Ask Ariane": "[Preview] Ask Ariane",
"{count} days": "{count} days",
"{count} email address(es) extracted from pasted text": "{count} email address(es) extracted from pasted text",
"{entityType} `{entityName}` added to `{pirName}`": "{entityType} `{entityName}` added to `{pirName}`",
"{entityType} `{entityName}` removed from `{pirName}`": "{entityType} `{entityName}` removed from `{pirName}`",
"+ N override(s)": "+ {count} override(s)",
"0 - Less relevant": "0 - Less relevant",
"0 equals no maximum": "0 equals no maximum",
"1 day": "1 day",
"1 hour": "1 hour",
"1 month": "1 month",
"1 year": "1 year",
"12 hours": "12 hours",
"15 minutes": "15 minutes",
"24 hours": "24 hours",
"24h": "24h",
"2FA": "2FA",
"2FA state": "2FA state",
"30 days": "30 days",
"30 minutes": "30 minutes",
"5 minutes": "5 minutes",
"6 hours": "6 hours",
"6 months": "6 months",
"60 days": "60 days",
"90 days": "90 days",
"A connector with this name already exists. Please choose a different name.": "A connector with this name already exists. Please choose a different name.",
"A field will be created with appropriate type based on the attribute.": "A field will be created with appropriate type based on the attribute.",
"A FINTEL export will contain extra information like markings and creation date": "A FINTEL export will contain extra information like markings and creation date",
"A guided workflow that streamlines files import, selection of connectors and allows the creation of a workbench or draft for review before final import": "A guided workflow that streamlines files import, selection of connectors and allows the creation of a workbench or draft for review before final import",
"A new entity enters a selected PIR": "A new entity enters a selected PIR",
"A non-exhaustive enumeration of infrastructure types": "A non-exhaustive enumeration of infrastructure types",
"A public dashboard is a snapshot...": "A public dashboard is a snapshot of a private dashboard at a specific time. If you modify the private dashboard, already created public dashboards won't be modified.",
"a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.": "a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.",
"A widget has a @me filter enabled...": "A widget has a @me filter enabled. When sharing this dashboard as a public dashboard, the @me filter will be replaced by \"{name}\" who is sharing the dashboard. It might impact the data displayed in the dashboard.",
"About": "About",
"Abstract": "Abstract",
"Accent color": "Accent color",
"Accept": "Accept",
"Access administration": "Access administration",
"Access administration parameters": "Access administration parameters",
"Access already granted": "Access already granted",
"Access Complexity (AC)": "Access Complexity (AC)",
"Access connectors": "Access connectors",
"Access CSV feeds directly in your browser": "Access CSV feeds directly in your browser",
"Access dashboards": "Access dashboards",
"Access data sharing": "Access data sharing",
"Access ingestion": "Access ingestion",
"Access investigations": "Access investigations",
"Access knowledge": "Access knowledge",
"Access restrictions": "Access restrictions",
"Access right": "Access right",
"Access security activity": "Access security activity",
"Access stream directly in your browser": "Access stream directly in your browser",
"Access this scenario": "Access this scenario",
"Access to admin functionalities": "Access to admin functionalities",
"Access to collaborative creation": "Access to collaborative creation",
"Access to file indexing": "Access to file indexing",
"Access to support": "Access to support",
"Access to support data": "Access to support data",
"Access Vector (AV)": "Access Vector (AV)",
"Accessible for": "Accessible for",
"accidental": "Accidental/Mistake",
"Account expiration date": "Account expiration date",
"Account Expire Date": "Account Expire Date",
"Account Status": "Account Status",
"Account status": "Account status",
"Account type": "Account type",
"Action": "Action",
"Action type": "Action type",
"Actions": "Actions",
"Activate": "Activate",
"Activate access restriction": "Activate access restriction",
"Activate/Deactivate default values": "Activate/Deactivate default values",
"Activated": "Activated",
"Activating this rule will automatically generate new relationships on your existing and future data. Please be aware that enabling this rule may impact your platform's data and performance.": "Activating this rule will automatically generate new relationships on your existing and future data. Please be aware that enabling this rule may impact your platform's data and performance.",
"Active": "Active",
"Active background tasks": "Active background tasks",
"Activities": "Activities",
"Activity": "Activity",
"Activity & history": "Activity & history",
"Activity and history": "Activity and history",
"Activity evaluation": "Activity evaluation",
"Activity raw detail": "Activity raw detail",
"ACTIVITY_MANAGER": "Activity manager",
"Add": "Add",
"ADD": "ADD",
"Add a file": "Add a file",
"Add a group": "Add a group",
"Add a height": "Add a height",
"Add a live trigger": "Add a live trigger",
"Add a location": "Add a location",
"Add a max confidence level for a user": "Add a max confidence level for a user",
"Add a new branch at the same level from the parent output": "Add a new branch at the same level from the parent output",
"Add a new member": "Add a new member",
"Add a new value": "Add a new value",
"Add a reaction point": "Add a reaction point",
"Add a regular digest": "Add a regular digest",
"Add a specific max confidence level for an entity type": "Add a specific max confidence level for an entity type",
"Add a task to this container": "Add a task to this container",
"Add a user": "Add a user",
"Add a weight": "Add a weight",
"Add a widget": "Add a widget",
"Add action": "Add action",
"Add additional entities first to define relationships": "Add additional entities first to define relationships",
"Add Additional Entity": "Add Additional Entity",
"Add additional entity": "Add additional entity",
"add alias": "add alias",
"Add an action": "Add an action",
"Add an entity to this container": "Add an entity to this container",
"Add an entity to this investigation": "Add an entity to this investigation",
"Add an organization": "Add an organization",
"Add and complete": "Add and complete",
"Add attack patterns": "Add attack patterns",
"Add attributes of the instance": "Add attributes of the {type}",
"Add background color": "Add background color",
"Add background gradient": "Add background gradient",
"Add background image": "Add background image",
"Add citizenship": "Add citizenship",
"Add components": "Add components",
"Add context": "Add context",
"Add country": "Add country",
"Add country of residence": "Add country of residence",
"Add courses of action": "Add courses of action",
"Add coverage metric": "Add coverage metric",
"Add data components": "Add data components",
"Add data in content": "Add data in content",
"Add data source": "Add data source",
"Add data sources": "Add data sources",
"Add entities": "Add entities",
"Add Entity": "Add Entity",
"Add entity": "Add entity",
"Add external references": "Add external references",
"Add field": "Add field",
"Add Field": "Add Field",
"Add Field to": "Add Field to",
"Add Field to Main Entity": "Add Field to Main Entity",
"Add filter": "Add filter",
"Add filtering": "Add filtering",
"Add generated and existing indicators in the container": "Add generated & existing indicators in the container",
"Add generated and existing observables in the container": "Add generated & existing observables in the container",
"Add header": "Add header",
"Add image URL": "Add image URL",
"Add in container": "Add in container",
"Add indicators": "Add indicators",
"Add individual": "Add individual",
"Add locations": "Add locations",
"Add more fields": "Add more fields",
"Add more items...": "Add more items...",
"Add nationality": "Add nationality",
"Add new assignees": "Add new assignees",
"Add new labels": "Add new labels",
"Add new participants": "Add new participants",
"Add new specific access": "Add new specific access",
"Add notes": "Add notes",
"Add observable": "Add observable",
"Add observables": "Add observables",
"Add option": "Add option",
"Add persona": "Add persona",
"Add query attribute": "Add query attribute",
"Add redirect uris": "Add redirect uris",
"Add related data": "Add related data",
"Add related entity": "Add related entity",
"Add Relationship": "Add Relationship",
"Add relationship": "Add relationship",
"Add Security coverage": "Add Security coverage",
"Add security platforms": "Add security platforms",
"Add software": "Add software",
"Add sub attack patterns": "Add sub attack patterns",
"Add subnarratives": "Add subnarratives",
"Add subsectors": "Add subsectors",
"Add tag": "Add tag",
"Add Tick": "Add Tick",
"Add to a container": "Add to a container",
"Add to container": "Add to container",
"Add vulnerabilities": "Add vulnerabilities",
"Added": "Added",
"added a note on": "added a note on {date}",
"Additional Entities": "Additional Entities",
"Additional Entity": "Additional Entity",
"Additional Fields": "Additional Fields",
"Additional Fields (will be applied to all created entities)": "Additional Fields (will be applied to all created entities)",
"Additional fields (will be applied to all created entities)": "Additional fields (will be applied to all created entities)",
"Additional mandatory attributes": "Additional mandatory attributes",
"Additional Names": "Additional Names",
"Admin": "Admin",
"Administrative areas": "Administrative areas",
"Administrative Areas | Locations": "Administrative Areas | Locations",
"advanced": "advanced",
"Advanced configuration": "Advanced configuration",
"Advanced options": "Advanced options",
"Advanced search": "Advanced search",
"Adversary": "Adversary",
"Affected software": "Affected software",
"Affecting this sector": "Affecting this sector",
"Agentic AI (Ariane Assistant)": "Agentic AI (Ariane Assistant)",
"Agentic AI capabilities": "Agentic AI capabilities",
"AI Insights": "AI Insights",
"AI is not enabled": "AI is not enabled",
"AI Powered": "AI Powered",
"AI Summary": "AI Summary",
"alert_GROUP_WITH_NULL_CONFIDENCE_LEVEL": "Starting with OpenCTI 6.0, a Max Confidence Level will be added to groups and users. It will provide platform administrators with more control on the impact of imported data and prevent any unwanted update on data. Please read {link_blogpost} for more information.\n \nOn this platform, \"Max Confidence Level\" of some groups are currently undefined. Their members will not be able to create any data in version 6.X of the platform. In order to prevent that, make sure that all groups have a Max Confidence Level set. More info in {link_blogpost}. Be particularly mindful of users associated to Connectors, Feeds and Streams; you can set individual confidence level to override group confidence level if needed. Join {link_slack} if you need advices.",
"Alerting": "Alerting",
"Alerting | Activity | Settings": "Alerting | Activity | Settings",
"Alias": "Alias",
"Aliases": "Aliases",
"Aliases separated by commas": "Aliases separated by commas",
"All": "All",
"All add or remove actions done on the graph after the last expansion will be lost.": "All add or remove actions done on the graph after the last expansion will be lost.",
"All confidence levels": "All confidence levels",
"All entities": "All entities",
"All investigations and dashboard where the user is the only admin, will be deleted.": "All investigations and dashboard where the user is the only admin, will be deleted.",
"All labels": "All labels",
"All notifications, triggers and digests associated with the user will be deleted.": "All notifications, triggers and digests associated with the user will be deleted.",
"All observables": "All observables",
"All other filters": "All other filters",
"All reports": "All reports",
"All rule targets": "All rule targets",
"All the results may not be displayed for these filter values, read documentation for more information.": "All the results may not be displayed for these filter values, {link} for more information",
"All the results may not be displayed since the Dynamic filter targets too many entities.": "All the results may not be displayed since the Dynamic filter targets too many entities.",
"All threats": "All threats",
"All types of relationship": "All types of relationship",
"All types of target": "All types of target",
"All workbenches": "All workbenches",
"All years": "All years",
"Allow login from identity provider directly": "Allow login from identity provider directly",
"Allow logout from Identity provider directly": "Allow logout from Identity provider directly",
"Allow modification of sensitive configuration": "Allow modification of sensitive configuration",
"Allow multiple files": "Allow multiple files",
"Allow multiple instances": "Allow multiple instances",
"Allow multiple instances of main entity": "Allow multiple instances of main entity",
"Allow self signed": "Allow self signed",
"Allow self-signed certificates": "Allow self-signed certificates",
"allow to deploy in one-click threat management resources such as feeds, dashboards, playbooks, etc.": "allow to deploy in one-click threat management resources such as feeds, dashboards, playbooks, etc.",
"Allow users to uncheck draft mode": "Allow users to uncheck draft mode",
"Allow users to view users of other organizations": "Allow users to view users of other organizations",
"Allowed marking definitions": "Allowed marking definitions",
"Allowed markings": "Allowed markings",
"Already in plat.": "Already in plat.",
"Already registered in XTM Hub": "Already registered in XTM Hub",
"Also delete these elements": "Also delete these elements",
"Also include first neighbours": "Also include first neighbours",
"An analysis connector needs to be available to ask for a mapping suggestion.": "An analysis connector needs to be available to ask for a mapping suggestion.",
"An analysis is ongoing, waiting for results.": "An analysis is ongoing, waiting for results.",
"An element will persist in the trash for a fixed period of time before being permanently deleted, according to the garbage collection manager settings.": "An element will persists in the trash for a fixed period of time before being permanently deleted, according to the garbage collection manager settings.",
"An entity from a selected PIR has been updated": "An entity from a selected PIR has been updated",
"An entity has left a selected PIR": "An entity has left a selected PIR",
"An entity is linked to an entity from a selected PIR": "An entity is linked to an entity from a selected PIR",
"An enumeration of security platform type": "An enumeration of security platform type",
"An enumeration of Windows service start types": "An enumeration of Windows service start types",
"An enumeration of Windows service statuses": "An enumeration of Windows service statuses",
"An enumeration of Windows service types": "An enumeration of Windows service types",
"An error occurred while creating the connector": "An error occurred while creating the connector",
"An error occurred while importing Synchronizer configuration.": "An error occurred while importing Synchronizer configuration.",
"An error occurred while importing Taxii Feed configuration.": "An error occurred while importing Taxii Feed configuration.",
"An error occurred while retrieving data for this widget:": "An error occurred while retrieving data for this widget:",
"An error occurred while updating the connector": "An error occurred while updating the connector",
"An instance trigger on an entity X notifies the following events: update/deletion of X, creation/deletion of a relationship from/to X, creation/deletion of an entity that has X in its refs (for instance contains X, is shared with X, is created by X...), adding/removing X in the ref of an entity.": "An instance trigger on an entity X notifies the following events: update/deletion of X, creation/deletion of a relationship from/to X, creation/deletion of an entity that has X in its refs (for instance contains X, is shared with X, is created by X...), adding/removing X in the ref of an entity.",
"An open vocabulary of User Account types": "An open vocabulary of User Account types",
"An unknown error has occurred! Please try again later.": "An unknown error has occurred! Please try again later.",
"An unknown error has occurred! Please try again later.": "An unknown error has occurred! Please try again later.",
"An unknown error occurred. Please provide a": "An unknown error occurred. Please provide a",
"An unknown error occurred. Please provide a support package to your administrator or OpenCTI maintainers": "An unknown error occurred. Please provide a {link_support_package} to your administrator or OpenCTI maintainers",
"Analyses": "Analyses",
"Analysis": "Analysis",
"Analysis definition version": "Analysis definition version",
"Analysis ended": "Analysis ended",
"Analysis engine version": "Analysis engine version",
"Analysis started": "Analysis started",
"Analysis_definition_version": "Analysis_definition_version",
"Analysis_ended": "Analysis_ended",
"Analysis_engine_version": "Analysis_engine_version",
"Analysis_started": "Analysis_started",
"Analyst Workbench | Import | Data": "Analyst Workbench | Import | Data",
"Analyst workbenches": "Analyst workbenches",
"Analytics": "Analytics",
"AND": "AND",
"and ... more": "and {count} more.",
"And many more features...": "And many more features...",
"API access": "API access",
"API key": "API key",
"API Tokens": "API Tokens",
"application/json": "JSON",
"application/pdf": "PDF",
"application/vnd.ms-excel": "XLS",
"application/vnd.oasis.opendocument.text": "ODT",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "XLSX",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": "DOCX",
"Applied decay rule": "Applied decay rule",
"Apply": "Apply",
"Apply a new case template": "Apply a new case template",
"Apply case templates": "Apply case templates",
"Apply filter to managed deployments only": "Apply filter to managed deployments only",
"Apply marking definitions": "Apply marking definitions",
"Apply on": "Apply on",
"Apply on indicator observable types": "Apply on indicator observable types",
"Apply on indicator observable types (none = ALL)": "Apply on indicator observable types (none = ALL)",
"Apply predefined rule": "Apply predefined rule",
"APPLY RULE": "APPLY RULE",
"Apply the suggestion": "Apply the suggestion",
"Applying this rule on the existing data": "Applying this rule on the existing data",
"Approve": "Approve",
"Approve draft": "Approve draft",
"Architecture execution env.": "Architecture execution env.",
"Architecture mode": "Architecture mode",
"are updating...": "are updating...",
"Are you sure you want to make the change?": "Are you sure you want to make the change?",
"Are you sure you want to remove this widget?": "Are you sure you want to remove this widget?",
"Are you sure?": "Are you sure?",
"Area": "Area",
"Areas": "Areas",
"around 30 secs": "around 30 secs",
"Arsenal": "Arsenal",
"Artifacts": "Artifacts",
"Artifacts | Observations": "Artifacts | Observations",
"As it happens": "As it happens",
"Asc": "Asc",
"Ask a question...": "Ask a question...",
"Ask AI": "Ask AI",
"Ask AI (multiple formats supported)": "Ask AI (multiple formats supported)",
"Ask Ariane": "Ask Ariane",
"ASK ARIANE": "ASK ARIANE",
"Ask for knowledge enrichment": "Ask for knowledge enrichment",
"Ask new mapping": "Ask new mapping",
"Ask your question": "Ask your question",
"Assignation": "Assignation",
"Assignee(s)": "Assignee(s)",
"Assignees": "Assignees",
"Associated CWE(s)": "Associated CWE(s)",
"Associated CWE(s) (one by line)": "Associated CWE(s) (one by line)",
"Associated entity": "Associated entity",
"Associated file": "Associated file",
"Associated user": "Associated user",
"At least 1 location or 1 sector is required": "At least 1 location or 1 sector is required",
"Attached entity name": "Attached entity name",
"Attached entity type": "Attached entity type",
"Attack Complexity (AC)": "Attack Complexity (AC)",
"Attack pattern": "Attack pattern",
"Attack pattern courses of action": "Attack pattern courses of action",
"Attack pattern usage": "Attack pattern usage",
"Attack patterns": "Attack patterns",
"Attack Patterns | Techniques": "Attack Patterns | Techniques",
"Attack patterns coverage": "Attack patterns coverage",
"Attack patterns kill chain": "Attack patterns kill chain",
"Attack Requirements (AT)": "Attack Requirements (AT)",
"Attack Resource Level is an open vocabulary that captures the general level of resources that a threat actor, intrusion set, or campaign might have access to. It ranges from individual, a person acting alone, to government, the resources of a national government": "Attack Resource Level is an open vocabulary that captures the general level of resources that a threat actor, intrusion set, or campaign might have access to. It ranges from individual, a person acting alone, to government, the resources of a national government",
"Attack Vector (AV)": "Attack Vector (AV)",
"Attribute": "Attribute",
"Attribute 'notifiers' of a trigger should have at least one notifier.": "Attribute 'notifiers' of a trigger should have at least one notifier.",
"Attribute 'trigger_events' of a live trigger should have at least one event.": "Attribute 'trigger_events' of a live trigger should have at least one event.",
"Attribute \"notifiers\" of a trigger should have at least one notifier.": "Attribute \"notifiers\" of a trigger should have at least one notifier.",
"Attribute \"trigger_events\" of a live trigger should have at least one event.": "Attribute \"trigger_events\" of a live trigger should have at least one event.",
"Attribute copied to clipboard": "Attribute copied to clipboard",
"Attribute in token": "Attribute in token",
"Attribute mapping configuration": "Attribute mapping configuration",
"Attribute path to get next uri": "Attribute path to get next uri",
"Attribute used to create multiple": "Attribute used to create multiple",
"Attribute/path in token": "Attribute/path in token",
"Attributed to this actor": "Attributed to this actor",
"Attributed to this campaign": "Attributed to this campaign",
"Attributed to this country": "Attributed to this country",
"Attributed to this individual": "Attributed to this individual",
"Attributed to this intrusion set": "Attributed to this intrusion set",
"Attributed to this organization": "Attributed to this organization",
"Attributed to this region": "Attributed to this region",
"Attributes": "Attributes",
"Attributes of the instance": "Attributes of the {type}",
"Attributes of the platform": "Attributes of the platform",
"Attributes of the user": "Attributes of the user",
"Attribution": "Attribution",
"Audience": "Audience",
"Audit logs": "Audit logs",
"Audits are not supported in public dashboards": "Audits are not supported in public dashboards",
"Audits list": "Audits list",
"Authentication": "Authentication",
"Authentication (AU)": "Authentication (AU)",
"Authentication | Security | Settings": "Authentication | Security | Settings",
"Authentication Configuration": "Authentication Configuration",
"Authentication configuration": "Authentication configuration",
"Authentication context (comma-separated)": "Authentication context (comma-separated)",
"Authentication Name": "Authentication Name",
"Authentication strategies": "Authentication strategies",
"Authentication strategy": "Authentication strategy",
"Authentication successfully updated": "Authentication successfully updated",
"Authentication type": "Authentication type",
"Authentications": "Authentications",
"Author": "Author",
"Author (organization)": "Author (organization)",
"Authorized members": "Authorized members",
"Authorized members successfully updated": "Authorized members successfully updated",
"Authorized_members": "Access restriction",
"auto": "auto",
"AUTO": "AUTO",
"Auto collapse submenus in left navigation": "Auto collapse submenus in left navigation",
"Auto create group": "Auto create group",
"Auto create groups": "Auto create groups",
"Auto create organizations": "Auto create organizations",
"Auto new markings": "Auto new markings",
"auto-create group": "auto-create group",
"auto:": "auto:",
"Automated using enrichment": "Automated using enrichment",
"Automatic": "Automatic",
"Automatic references at file upload": "Automatic references at file upload",
"Automatic trigger": "Automatic trigger",
"Automatically add users to default groups": "Automatically add users to default groups",
"Automatically add users to default organizations": "Automatically add users to default organizations",
"Automatically authorize this group to new marking definition": "Automatically authorize this group to new marking definition",
"Automatically convert to STIX patterns": "Automatically convert to STIX patterns",
"Automatically create a service account": "Automatically create a service account",
"Automatically create a user": "Automatically create a user",
"Automatically create indicators from observables": "Automatically create indicators from observables",
"Automatically create observables from indicators": "Automatically create observables from indicators",
"Automation": "Automation",
"Automation | Processing | Data": "Automation | Processing | Data",
"Autonomous system": "Autonomous system",
"Autonomous systems": "Autonomous systems",
"Availability Impact (A)": "Availability Impact (A)",
"Available columns": "Available columns",
"Available for manual enrollment / trigger": "Available for manual enrollment / trigger",
"Available playbooks": "Available playbooks",
"Averages of context relations": "Averages of context relations",
"Avoid dependencies resolution": "Avoid dependencies resolution",
"Back": "Back",
"Back to login": "Back to login",
"Background color": "Background color",
"Background primary color": "Background primary color",
"Background secondary color": "Background secondary color",
"Background tasks": "Background tasks",
"Background tasks currently running": "Background tasks currently running",
"Bad login or password": "Bad login or password",
"Base attribute": "Base attribute",
"Base configuration": "Base configuration",
"Base score": "Base score",
"Base score:": "Base score:",
"Base URL": "Base URL",
"Based on": "Based on",
"based-on": "Based on an observable",
"Basic information": "Basic information",
"Basic user / password": "Basic user / password",
"Be careful, please define some filter for your exclusion rule, otherwise, since no filters are set, any indicator will match the rule and will have an exclusion rule": "Be careful, please define some filter for your exclusion rule, otherwise, since no filters are set, any indicator will match the rule and will have an exclusion rule",
"Be careful, you are about to delete the selected entities": "Be careful, you are about to delete the selected entities",
"Be careful, you are about to delete the selected entities (not the relationships)": "Be careful, you are about to delete the selected entities (not the relationships)",
"Be careful, you are about to delete the selected observables (not the relationships)": "Be careful, you are about to delete the selected observables (not the relationships)",
"Bearer token": "Bearer token",
"Because by default the workbench won't include the updates made on the entity after the creation of the workbench.": "Because by default the workbench won't include the updates made on the entity after the creation of the workbench.",
"Before creating a ticket with your support package takes some time to check if you can safely share the content depending of your security policy.": "Before creating a ticket with your support package takes some time to check if you can safely share the content depending of your security policy.",
"behind live stream": "behind live stream",
"Belonging to this organization": "Belonging to this organization",
"bic values can only include A-Z and 0-9, 8 or 11 characters": "bic values can only include A-Z and 0-9, 8 or 11 characters",
"Bind credentials": "Bind credentials",
"Bind credentials (leave empty to keep current)": "Bind credentials (leave empty to keep current)",
"Bind DN": "Bind DN",
"Biographic Information": "Biographic Information",
"Biographics": "Biographics",
"Body": "Body",
"Bookmark": "Bookmark",
"Bookmarks are not supported in public dashboards": "Bookmarks are not supported in public dashboards",
"Both latitude and longitude must be provided together": "Both latitude and longitude must be provided together",
"Browse files": "Browse files",
"Browse More": "Browse More",
"Browse the link": "Browse the link",
"Buffering: ": "Buffering: ",
"Built-in: HTML template to PDF": "Built-in: HTML template to PDF",
"Built-in: template to HTML/PDF": "Built-in: template to HTML/PDF",
"Bulk creation not supported for this type": "Bulk creation not supported for this type",
"Bulk Search": "Bulk Search",
"Bulk search": "Bulk search",
"Bundle content": "Bundle content",
"Bundle details": "Bundle details",
"Bundles processed": "Bundles processed",
"Button label": "Button label",
"by": "by",
"By default we accept iso date (YYYY-MM-DD), but you can specify your own date format in ISO notation (for instance DD.MM.YYYY)": "By default we accept iso date (YYYY-MM-DD), but you can specify your own date format in ISO notation (for instance DD.MM.YYYY)",
"By default, all files will be used to generate the response.": "By default, all files will be used to generate the response.",
"By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) ": "By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) ",
"By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) supplemental ": "By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) supplemental ",
"By enabling the OpenCTI LTS, you (and your organization) agrees to the": "By enabling the OpenCTI LTS, you (and your organization) agrees to the",
"By registering this platform into the hub, it will allow to:": "By registering this platform into the hub, it will allow to:",
"By registering this platform into the hub, it will:": "By registering this platform into the hub, it will:",
"By registering your OpenCTI platform, you'll be able to:": "By registering your OpenCTI platform, you'll be able to:",
"Bypass all capabilities": "Bypass all capabilities",
"Bypass enforced reference": "Bypass enforced reference",
"CA certificate (base64)": "CA certificate (base64)",
"Callback URL": "Callback URL",
"Callback URL override": "Callback URL override",
"Campaign": "Campaign",
"Campaigns": "Campaigns",
"Campaigns | Threats": "Campaigns | Threats",
"can edit": "can edit",
"can manage": "can manage",
"can use": "can use",
"can view": "can view",
"Cancel": "Cancel",
"Capabilities": "Capabilities",
"Capabilities in Draft": "Capabilities in Draft",
"Cards view": "Cards view",
"Cascade delete": "Cascade delete",
"Case priority": "Case priority",
"Case severity": "Case severity",
"Case templates": "Case templates",
"Case Templates | Taxonomies | Settings": "Case Templates | Taxonomies | Settings",
"Cases": "Cases",
"Cases & Analyses": "Cases & Analyses",
"CaseTemplate": "CaseTemplate",
"Category": "Category",
"category": "Category",
"Center latitude": "Center latitude",
"Center longitude": "Center longitude",
"Certificate (base64)": "Certificate (base64)",
"Certificates & Keys": "Certificates & Keys",
"Change tone": "Change tone",
"Change which data to retrieve in this widget": "Change which data to retrieve in this widget",
"Change your password": "Change your password",
"Channel": "Channel",
"Channel type": "Channel type",
"Channel types": "Channel types",
"channel_types": "Channel type",
"Channels": "Channels",
"Channels | Arsenal": "Channels | Arsenal",
"Char to escape line": "Char to escape line",
"Check the posture in OpenBAS": "Check the posture in OpenBAS",
"Checkbox": "Checkbox",
"Child organizations": "Child organizations",
"Chinese": "Chinese",
"Choose a form to fill out and create entities": "Choose a form to fill out and create entities",
"Choose target": "Choose target",
"Choose type": "Choose type",
"CISA KEV": "CISA KEV",
"Cities": "Cities",
"Cities | Locations": "Cities | Locations",
"Citizenship": "Citizenship",
"City": "City",
"Cleaning up this rule on the existing data": "Cleaning up this rule on the existing data",
"Clear": "Clear",
"Clear all filters": "Clear all filters",
"Clear all works": "Clear all works",
"Clear filters": "Clear filters",
"Clear local storage": "Clear local storage",
"Clear mappings": "Clear mappings",
"Clear this connector": "Clear this connector",
"Click here to add one": "Click here to add one",
"Click on details to see more information": "Click on details to see more information",
"Click to view full value": "Click to view full value",
"Client certificate": "Client certificate",
"Client Certificate": "Client Certificate",
"Client certificate requires the platform to be configured with HTTPS": "Client certificate requires the platform to be configured with HTTPS",
"Client ID": "Client ID",
"Client Secret": "Client Secret",
"Client secret": "Client secret",
"Client secret (leave empty to keep current)": "Client secret (leave empty to keep current)",
"Close": "Close",
"Close registration process?": "Close registration process?",
"Close unregistration process?": "Close unregistration process?",
"Cloud": "Cloud",
"Cloud Control Plane": "Cloud Control Plane",
"club": "Informal group",
"Cluster": "Cluster",
"Code": "Code",
"coercion": "Coercion/Constrained",
"Collapse": "Collapse",
"Color": "Color",
"color": "color",
"Column": "Column",
"Column index": "Column index",
"Columns": "Columns",
"coming soon": "coming soon",
"Comma": "Comma",
"Comma-separated": "Comma-separated",
"comment": "Comment",
"Commit message": "Commit message",
"Commit message when updating data from the UI.": "Commit message when updating data from the UI.",
"Commit messages": "Commit messages",
"Community": "Community",
"Compare": "Compare",
"Compare with my security posture": "Compare with my security posture",
"complete": "Complete",
"COMPLETE_DELETE": "COMPLETE_DELETE",
"Completed": "Completed",
"Completed tasks": "Completed tasks",
"Completed works": "Completed works",
"Complex": "Complex",
"Computing activity evaluation...": "Computing activity evaluation...",
"Confidence": "Confidence",
"confidence": "Confidence",
"Confidence level": "Confidence level",
"confidence scale configuration has been successfully updated": "confidence scale configuration has been successfully updated",
"confidence_0": "None",
"confidence_15": "Low",
"confidence_50": "Moderate",
"confidence_75": "Good",
"confidence_85": "Strong",
"confidence_gt": "Confidence greater than",
"confidence_lte": "Confidence less than or equal",
"confidence_unknown": "Unknown",
"Confidences": "Confidences",
"Confidentiality Impact (C)": "Confidentiality Impact (C)",
"Confidentiality impact (C)": "Confidentiality impact (C)",
"Configuration": "Configuration",
"Configuration | Activity | Settings": "Configuration | Activity | Settings",
"Configuration Name": "Configuration Name",
"Configuration name": "Configuration name",
"Configuration version": "Configuration version",
"Configuration_version": "Configuration_version",
"Configure file indexing": "Configure file indexing",
"Confirm": "Confirm",
"Confirmation": "Confirmation",
"Confirmation required": "Confirmation required",
"Connected": "Connected",
"Connected since": "Connected since",
"Connected workers": "Connected workers",
"connectedToId": "Related entity",
"Connection successfully verified": "Connection successfully verified",
"Connectivity lost": "Connectivity lost",
"Connector": "Connector",
"Connector catalog": "Connector catalog",
"Connector catalog | Ingestion | Data": "Connector catalog | Ingestion | Data",
"Connector catalogs": "Connector catalogs",
"Connector configuration": "Connector configuration",
"Connector name": "Connector name",
"Connectors": "Connectors",
"Connectors & workers": "Connectors & workers",
"Connectors | Ingestion | Data": "Connectors | Ingestion | Data",
"Connectors API usage: register, ping, export push ...": "Connectors API usage: register, ping, export push ...",
"consent message": "consent message",
"Constituent": "Constituent",
"Contact information": "Contact information",
"contact the Filigran team": "contact the Filigran team",
"Contact us": "Contact us",
"Container": "Container",
"Container summary": "Container summary",
"Container type": "Container type",
"Container wrapper": "Container wrapper",
"container_type": "Type of analysis",
"Containers": "Containers",
"containers": "Cases & analysis",
"Containers (reports, groupings, notes & opinions)": "Containers (reports, groupings, notes & opinions)",
"Containers digest": "Containers digest",
"Contains": "Contains",
"contains": "contains",
"Content": "Content",
"Content (1 / line)": "Content (1 / line)",
"Content mapping view": "Content mapping view",
"Content max marking definition levels": "Content max marking definition levels",
"Content view": "Content view",
"contest": "Ephemeral groupment",
"Context": "Context",
"context": "Context",
"Context relations": "Context relations",
"Context_data.created_by_ref_id": "Author",
"Context_data.creator_ids": "Creator",
"Context_data.id": "Related entity",
"Context_data.labels_ids": "Labels",
"Context_data.object_marking_refs_ids": "Marking definition",
"Context_data.search": "Search keyword",
"contextCreatedBy": "Author of related entity",
"contextCreator": "Creator of related entity",
"contextEntityId": "Related entity",
"contextEntityType": "Types of related entity",
"contextObjectLabel": "Label of related entity",
"contextObjectMarking": "Marking of related entity",
"Contextual view": "Contextual view",
"CONTINUE": "CONTINUE",
"Continue": "Continue",
"Continue registration": "Continue registration",
"Continue to register": "Continue to register",
"Continue to unregister": "Continue to unregister",
"Continue unregistration": "Continue unregistration",
"Contracts": "Contracts",
"Control": "Control",
"Convert": "Convert",
"Convert associated files to STIX 2.1": "Convert associated files to STIX 2.1",
"Convert Service account": "Convert Service account",
"Convert Service account into User": "Convert Service account into User",
"Convert this workbench to a draft": "Convert this workbench to a draft",
"Convert to draft": "Convert to draft",
"Convert User": "Convert User",
"convert USER": "convert USER",
"Convert User into Service account": "Convert User into Service account",
"Copied": "Copied",
"Copied to clipboard": "Copied to clipboard",
"Copy": "Copy",
"copy": "copy",
"Copy attribute name to clipboard": "Copy attribute name to clipboard",
"Copy confidence level to OpenCTI scores for indicators": "Copy confidence level to OpenCTI scores for indicators",
"Copy disabled: too many selected elements (maximum number of elements for a copy: ": "Copy disabled: too many selected elements (maximum number of elements for a copy: ",
"Copy link": "Copy link",
"Copy OpenCTI scores to confidence level for indicators": "Copy OpenCTI scores to confidence level for indicators",
"Copy public link": "Copy public link",
"Copy to clipboard": "Copy to clipboard",
"Copy uri to clipboard for your csv client": "Copy uri to clipboard for your csv client",
"Copy uri to clipboard for your Taxii client": "Copy uri to clipboard for your Taxii client",
"Copy widget name to clipboard": "Copy widget name to clipboard",
"Copy/paste mode": "Copy/paste mode",
"Copy/paste text content": "Copy/paste text content",
"Correlate": "Correlate",
"Correlated cases": "Correlated cases",
"Correlated containers": "Correlated containers",
"Correlated groupings": "Correlated groupings",
"Correlated indicators and observables": "Correlated indicators and observables",
"Correlated indicators and observables distribution": "Correlated indicators and observables distribution",
"Correlated intrusion sets": "Correlated intrusion sets",
"Correlated reports": "Correlated reports",
"Correlation view": "Correlation view",
"Count": "Count",
"Countries": "Countries",
"Countries | Locations": "Countries | Locations",
"Country": "Country",
"Country of Residence": "Country of Residence",
"Course of action": "Course of action",
"Courses of action": "Courses of action",
"Courses of Action | Techniques": "Courses of Action | Techniques",
"Courses of action view": "Courses of action view",
"Cover page text color": "Cover page text color",
"Coverage": "Coverage",
"Coverage details": "Coverage details",
"Coverage information": "Coverage information",
"Coverage Information": "Coverage Information",
"Coverage name": "Coverage name",
"Coverage recurrence (every x)": "Coverage recurrence (every x)",
"Coverage score (0-100)": "Coverage score (0-100)",
"Coverage update periodicity": "Coverage update periodicity",
"Coverage validity period": "Coverage validity period",
"Covered entity": "Covered entity",
"CREATE": "CREATE",
"Create": "Create",
"create": "create",
"Create ...": "Create {entity_type}",
"Create / Update dashboards": "Create / Update dashboards",
"Create / Update investigations": "Create / Update investigations",
"Create / Update knowledge": "Create / Update knowledge",
"Create a campaign": "Create a campaign",
"Create a case template": "Create a case template",
"Create a channel": "Create a channel",
"Create a city": "Create a city",
"Create a connector": "Create a connector",
"Create a container and wrap the element inside it": "Create a container and wrap the element inside it",
"Create a content from a template": "Create a content from a template",
"Create a country": "Create a country",
"Create a course of action": "Create a course of action",
"Create a coverage": "Create a coverage",
"Create a CSV Feed": "Create a CSV Feed",
"Create a CSV Ingester": "Create a CSV Ingester",
"Create a CSV ingester": "Create a CSV ingester",
"Create a CSV mapper": "Create a CSV mapper",
"Create a CSV Mapper configuration": "Create a CSV Mapper configuration",
"Create a custom theme": "Create a custom theme",
"Create a data component": "Create a data component",
"Create a data source": "Create a data source",
"Create a decay exclusion rule": "Create a decay exclusion rule",
"Create a decay rule": "Create a decay rule",
"Create a dissemination list": "Create a dissemination list",
"Create a Draft": "Create a Draft",
"Create a feed": "Create a feed",
"Create a feedback": "Create a feedback",
"Create a file": "Create a file",
"Create a fintel design": "Create a fintel design",
"Create a form": "Create a form",
"Create a group": "Create a group",
"Create a grouping": "Create a grouping",
"Create a individual": "Create a individual",
"Create a JSON feed": "Create a JSON feed",
"Create a JSON mapper": "Create a JSON mapper",
"Create a kill chain phase": "Create a kill chain phase",
"Create a label": "Create a label",
"Create a live activity trigger": "Create a live activity trigger",
"Create a live stream": "Create a live stream",
"Create a live trigger": "Create a live trigger",
"Create a malware": "Create a malware",
"Create a malware analysis": "Create a malware analysis",
"Create a marking definition": "Create a marking definition",
"Create a message": "Create a message",
"Create a narrative": "Create a narrative",
"Create a nested relationship": "Create a nested relationship",
"Create a new container at each run": "Create a new container at each run",
"Create a new file with the content": "Create a new file with the content",
"Create a new public dashboard": "Create a new public dashboard",
"Create a new template": "Create a new template",
"Create a note": "Create a note",
"Create a notifier": "Create a notifier",
"Create a opinions": "Create a opinions",
"Create a playbook": "Create a playbook",
"Create a position": "Create a position",
"Create a public dashboard": "Create a public dashboard",
"Create a region": "Create a region",
"Create a regular activity digest": "Create a regular activity digest",
"Create a regular digest": "Create a regular digest",
"Create a relationship": "Create a relationship",
"Create a report": "Create a report",
"Create a request for information": "Create a request for information",
"Create a request for takedown": "Create a request for takedown",
"Create a retention policy": "Create a retention policy",
"Create a role": "Create a role",
"Create a RSS ingester": "Create a RSS ingester",
"Create a sector": "Create a sector",
"Create a security coverage": "Create a security coverage",
"Create a security platform": "Create a security platform",
"Create a service account for this feed": "Create a service account for this feed",
"Create a sighting": "Create a sighting",
"Create a status": "Create a status",
"Create a status template": "Create a status template",
"Create a stream": "Create a stream",
"Create a subscription": "Create a subscription",
"Create a system": "Create a system",
"Create a task": "Create a task",
"Create a task template": "Create a task template",
"Create a TAXII collection": "Create a TAXII collection",
"Create a TAXII ingester": "Create a TAXII ingester",
"Create a template": "Create a template",
"Create a threat actor group": "Create a threat actor group",
"Create a threat actor individual": "Create a threat actor individual",
"Create a tool": "Create a tool",
"Create a user": "Create a user",
"Create a user for this feed": "Create a user for this feed",
"Create a vocabulary": "Create a vocabulary",
"Create a vulnerability": "Create a vulnerability",
"Create a widget": "Create a widget",
"Create a workbench": "Create a workbench",
"Create a workspace": "Create a workspace",
"Create an area": "Create an area",
"Create an artifact": "Create an artifact",
"Create an attack pattern": "Create an attack pattern",
"Create an attribute": "Create an attribute",
"Create an automatic user": "Create an automatic user",
"Create an entity": "Create an entity",
"Create an event": "Create an event",
"Create an exclusion list": "Create an exclusion list",
"Create an external reference": "Create an external reference",
"Create an incident": "Create an incident",
"Create an incident response": "Create an incident response",
"Create an indicator": "Create an indicator",
"Create an indicator based on an observable": "Create an indicator based on an observable",
"Create an indicator from this observable": "Create an indicator from this observable",
"Create an infrastructure": "Create an infrastructure",
"Create an intrusion set": "Create an intrusion set",
"Create an investigation": "Create an investigation",
"Create an observable": "Create an observable",
"Create an observed data": "Create an observed data",
"Create an OpenCTI Stream": "Create an OpenCTI Stream",
"Create an opinion": "Create an opinion",
"Create an organization": "Create an organization",
"Create an outcome based on a template": "Create an outcome based on a template",
"Create and map": "Create and map",
"Create as draft": "Create as draft",
"Create as draft by default": "Create as draft by default",
"Create Authentication": "Create Authentication",
"Create dashboard": "Create dashboard",
"Create external reference at upload": "Create external reference at upload",
"Create file": "Create file",
"Create indicators from all observables in the bundle": "Create indicators from all observables in the bundle",
"Create investigation": "Create investigation",
"Create LDAP": "Create LDAP",
"Create LDAP Authentication": "Create LDAP Authentication",
"Create Location": "Create Location",
"Create missing entities": "Create missing entities",
"Create multiple entities": "Create multiple entities",
"Create multiple observables": "Create multiple observables",
"Create multiple relationships": "Create multiple relationships",
"Create observables based on an indicator": "Create observables based on an indicator",
"Create observables from all indicators in the bundle": "Create observables from all indicators in the bundle",
"Create observables from this indicator": "Create observables from this indicator",
"Create OIDC": "Create OIDC",
"Create OIDC Authentication": "Create OIDC Authentication",
"Create OpenID": "Create OpenID",
"Create priority intelligence requirement": "Create priority intelligence requirement",
"Create relations in bulk": "Create relations in bulk",
"Create relations in bulk for": "Create relations in bulk for",
"Create Relationship": "Create Relationship",
"Create SAML": "Create SAML",
"Create SAML Authentication": "Create SAML Authentication",
"Create SSO": "Create SSO",
"Create unknown entities": "Create unknown entities",
"Create Widget": "Create Widget",
"Create Workbench": "Create Workbench",
"created": "Created",
"Created At": "Created At",
"Created by": "Created by",
"Created By": "Created By",
"Created entities": "Created entities",
"Created the": "Created the",
"created_at": "Ingested",
"created_at_gt": "Ingested after",
"created_at_lt": "Ingested before",
"created_gt": "Created after",
"created_lt": "Created before",
"created-by": "Author",
"Created-by.internal_id": "Author",
"createdBy": "Author",
"Creating entities...": "Creating entities...",
"Creation": "Creation",
"Creation date": "Creation date",
"Creation date (in this platform)": "Creation date (in this platform)",
"Creator": "Creator",
"Creator_id": "Creator",
"creator_id": "Technical creator",
"Creators": "Creators",
"Credential": "Credential",
"Credentials": "Credentials",
"Credentials lookup": "Credentials lookup",
"Criteria": "Criteria",
"Critical": "Critical",
"CRITICAL": "CRITICAL",
"CSIRT": "CSIRT",
"CSV data.": "CSV data.",
"CSV Feeds": "CSV Feeds",
"CSV feeds": "CSV feeds",
"CSV Feeds | Data sharing | Data": "CSV Feeds | Data sharing | Data",
"CSV Feeds | Ingestion | Data": "CSV Feeds | Ingestion | Data",
"CSV file": "CSV file",
"CSV mapper created": "CSV mapper created",
"CSV Mapper edition": "CSV Mapper edition",
"CSV Mappers": "CSV Mappers",
"CSV Mappers | Processing | Data": "CSV Mappers | Processing | Data",
"CSV separator": "CSV separator",
"CSV URL": "CSV URL",
"Current cache version date": "Current cache version date",
"Current entity refers to the entity in which you will use the Fintel template. Removing this filter means you will lost the context of the container in which the template is used.": "Current entity refers to the entity in which you will use the Fintel template. Removing this filter means you will lost the context of the container in which the template is used.",
"Current instance": "Current instance",
"Current password": "Current password",
"Current platform": "Current platform",
"Current specific accesses": "Current specific accesses",
"Current stable score": "Current stable score",
"Current state": "Current state",
"Current User": "Current User",
"Custom dashboard": "Custom dashboard",
"Custom dashboards": "Custom dashboards",
"Custom dashboards | Dashboards": "Custom dashboards | dashboards",
"Customization": "Customization",
"Customize columns": "Customize columns",
"Customize provider identifier": "Customize provider identifier",
"Customize scale": "Customize scale",
"CVSS V2": "CVSS V2",
"CVSS V3": "CVSS V3",
"CVSS V4": "CVSS V4",
"CVSS2 Access Complexity (AC)": "CVSS2 Access Complexity (AC)",
"CVSS2 Access Vector (AV)": "CVSS2 Access Vector (AV)",
"CVSS2 Authentication (Au)": "CVSS2 Authentication (Au)",
"CVSS2 Availability Impact (A)": "CVSS2 Availability Impact (A)",
"CVSS2 Confidentiality Impact (C)": "CVSS2 Confidentiality Impact (C)",
"CVSS2 Exploitability (E)": "CVSS2 Exploitability (E)",
"CVSS2 Integrity Impact (I)": "CVSS2 Integrity Impact (I)",
"CVSS2 Remediation Level (RL)": "CVSS2 Remediation Level (RL)",
"CVSS2 Report Confidence (RC)": "CVSS2 Report Confidence (RC)",
"CVSS2 Score": "CVSS2 Score",
"CVSS2 Temporal Score": "CVSS2 Temporal Score",
"CVSS2 Vector": "CVSS2 Vector",
"CVSS3 - Attack vector": "CVSS3 - Attack vector",
"CVSS3 - Attack vector (AV)": "CVSS3 - Attack vector (AV)",
"CVSS3 - Availability impact": "CVSS3 - Availability impact",
"CVSS3 - Availability impact (A)": "CVSS3 - Availability impact (A)",
"CVSS3 - Confidentiality impact": "CVSS3 - Confidentiality impact",
"CVSS3 - Confidentiality impact (C)": "CVSS3 - Confidentiality impact (C)",
"CVSS3 - Integrity impact": "CVSS3 - Integrity impact",
"CVSS3 - Integrity impact (I)": "CVSS3 - Integrity impact (I)",
"CVSS3 - Scope (S)": "CVSS3 - Scope (S)",
"CVSS3 - Score": "CVSS3 - Score",
"CVSS3 - Severity": "CVSS3 - Severity",
"CVSS3 Attack Complexity (AC)": "CVSS3 Attack Complexity (AC)",
"CVSS3 Attack Vector (AV)": "CVSS3 Attack Vector (AV)",
"CVSS3 Availability Impact (A)": "CVSS3 Availability Impact (A)",
"CVSS3 Confidentiality Impact (C)": "CVSS3 Confidentiality Impact (C)",
"CVSS3 Exploit Code Maturity (E)": "CVSS3 Exploit Code Maturity (E)",
"CVSS3 Integrity Impact (I)": "CVSS3 Integrity Impact (I)",
"CVSS3 Privileges Required (PR)": "CVSS3 Privileges Required (PR)",
"CVSS3 Remediation Level (RL)": "CVSS3 Remediation Level (RL)",
"CVSS3 Report Confidence (RC)": "CVSS3 Report Confidence (RC)",
"CVSS3 Score": "CVSS3 Score",
"CVSS3 Severity": "CVSS3 Severity",
"CVSS3 Temporal Score": "CVSS3 Temporal Score",
"CVSS3 User interaction (UI)": "CVSS3 User interaction (UI)",
"CVSS3 Vector": "CVSS3 Vector",
"CVSS4 Attack Complexity (AC)": "CVSS4 Attack Complexity (AC)",
"CVSS4 Attack Requirements (AT)": "CVSS4 Attack Requirements (AT)",
"CVSS4 Attack Vector (AV)": "CVSS4 Attack Vector (AV)",
"CVSS4 Exploit Maturity (E)": "CVSS4 Exploit Maturity (E)",
"CVSS4 Privileges Required (PR)": "CVSS4 Privileges Required (PR)",
"CVSS4 Score": "CVSS4 Score",
"CVSS4 Severity": "CVSS4 Severity",
"CVSS4 SS Avalability Impact (SA)": "CVSS4 SS Avalability Impact (SA)",
"CVSS4 SS Confidentiality Impact (SC)": "CVSS4 SS Confidentiality Impact (SC)",
"CVSS4 SS Integrity Impact (SI)": "CVSS4 SS Integrity Impact (SI)",
"CVSS4 User Interaction (UI)": "CVSS4 User Interaction (UI)",
"CVSS4 Vector": "CVSS4 Vector",
"CVSS4 VS Availability Impact (VA)": "CVSS4 VS Availability Impact (VA)",
"CVSS4 VS Confidentiality Impact (VC)": "CVSS4 VS Confidentiality Impact (VC)",
"CVSS4 VS Integrity Impact (VI)": "CVSS4 VS Integrity Impact (VI)",
"Danger Zone": "Danger Zone",
"DangerZoneTooltip": "Changing the configuration here could have a significant impact on the stability of the platform. Only users with the capability to change sensitive configurations are allowed to do so. Make sure you know what you are doing.",
"Dark": "Dark",