-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathen.json
More file actions
1261 lines (1261 loc) · 56.8 KB
/
en.json
File metadata and controls
1261 lines (1261 loc) · 56.8 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
{
"AdminBanner": "You are currently in admin mode.",
"App": {
"Collapse": "Collapse",
"CollapseSidebar": "Collapse sidebar",
"Title": "XTM Hub"
},
"Badge": {
"Disabled": "Disabled",
"Draft": "Draft",
"Enabled": "Enabled",
"Published": "Published"
},
"CapabilityDescription": {
"Capabilities": {
"ADMINISTRATE_ORGANIZATION": "Allow every capabilities actions within an organization",
"MANAGE_ACCESS": "Ability to invite other users to this organization",
"MANAGE_PLATFORM_REGISTRATION": "Ability to register and unregister platforms",
"MANAGE_SUBSCRIPTION": "Ability to manage and subscribe the organization to services"
},
"Description": "You can add specific capabilities to Filigran users",
"Title": "Available capabilities"
},
"CountryComboBox": {
"Placeholder": "Choose a country"
},
"Datatable": {
"Asc": "Asc",
"Columns": "Columns",
"Desc": "Desc",
"GoFirstPage": "Go to first page",
"GoLastPage": "Go to last page",
"GoNextPage": "Go to next page",
"GoPreviousPage": "Go to previous page",
"Hide": "Hide",
"ManageColumnsVisibility": "Manage columns visibility",
"ResetTable": "Reset table",
"RowsPerPage": "Rows per page"
},
"DeploymentRequestUseCase": {
"threat_profiling_cti": "Threat Profiling (CTI)",
"threat_profiling_fimi": "Threat Profiling (FIMI)",
"threat_profiling_leo": "Threat Profiling (Law enforcement)",
"threat_profiling_faml": "Threat Profiling (Fraud & AML)",
"threat_hunting": "Threat Hunting",
"strategic_reporting": "Strategic Reporting (For Executives)",
"technical_reporting": "Strategic Reporting (for Analysts)'",
"incident_response": "Coordinating Incident Response",
"security_stack": "Integrating Security Stack",
"detection_engineering": "Detection Engineering",
"attack_simulation": "Simulating Cyber Attacks",
"crisis_simulation": "Simulating Crisis (Tabletop Exercises)",
"vulnerability_management": "Vulnerability Management",
"centralizing_knowledge": "Centralizing Knowledge",
"sharing_knowledge": "Sharing Knowledge",
"hosting_threat_community": "Hosting Threat Sharing Community"
},
"DeploymentRequestActivitySector": {
"computer_network_security": "Computer & Network Security",
"computer_games": "Computer Games",
"computer_software": "Computer Software",
"defense_space": "Defense & Space",
"entertainment": "Entertainment",
"financial_services": "Financial Services",
"government_administration": "Government Administration",
"government_relations": "Government Relations",
"higher_education": "Higher Education",
"hospital_health_care": "Hospital & Health Care",
"hospitality": "Hospitality",
"information_technology": "Information Technology and Services",
"insurance": "Insurance",
"legal_services": "Legal Services",
"luxury_goods_jewelry": "Luxury Goods & Jewelry",
"management_consulting": "Management Consulting",
"marketing_advertising": "Marketing and Advertising",
"military": "Military",
"non_profit": "Non-Profit Organization Management",
"oil_energy": "Oil & Energy",
"pharmaceuticals": "Pharmaceuticals",
"photography": "Photography",
"retail": "Retail",
"security_investigations": "Security and Investigations",
"semiconductors": "Semiconductors",
"telecommunications": "Telecommunications",
"transportation": "Transportation/Trucking/Railroad",
"utilities": "Utilities",
"wireless": "Wireless"
},
"DeleteUseCaseDialog": {
"TextDeleteUseCase": "Do you really want to delete this use case {name} ?"
},
"DialogActions": {
"ContinueTitle": "Do you want to continue?",
"PreventSheetSentence": "You have started filling out the form. Closing it now will discard any unsaved progress. Do you want to proceed?",
"PreventSheetTitle": "Unsaved progress"
},
"DisableUserDialog": {
"TextDisableThisUser": "Are you sure you want to disable this user {email} ?"
},
"Error": {
"AnErrorOccured": "An error occurred",
"Login": {
"LoginError": "You are not allowed to login"
},
"Server": {
"ACCEPT_USER_IN_PENDING_ORGA_ERROR": "Error occurred while accepting users",
"ADD_ORGANIZATION_ERROR": "Error occurred while adding organization",
"ADD_USER_SERVICE_ERROR": "Error while granting access to the user",
"ADDING_USER_ERROR": "Error occurred while creating user",
"ALREADY_SUBSCRIBED": "You have already subscribed to this service",
"CAN_UNREGISTER_PLATFORM_UNKNOWN_ERROR": "An unknown error occurred during platform unregistration",
"CANT_ADD_DISABLED_USER": "You cannot add a user that is disabled in the platform",
"CANT_ADD_USER_TO_PERSONAL_SPACE": "You cannot add a user to your personal space",
"CANT_REMOVE_LAST_ADMINISTRATOR": "You cannot remove the last administrator of an organization",
"CANT_REMOVE_YOURSELF_FROM_ORGA_ERROR": "You cannot remove yourself from organization",
"CANT_REQUEST_FREE_TRIAL": "You cannot request a free trial",
"CANT_REQUEST_FREE_TRIAL_IN_PERSONAL_SPACE": "You cannot request a free trial in your personal space",
"CANT_SUBSCRIBE_YOURSELF": "You cannot add yourself",
"COMPETITOR_DOMAIN_ALREADY_EXISTS": "A competitor with the same domain already exists",
"CREATE_DEPLOYMENT_REQUEST_ERROR": "Error occured while creating a deployment request",
"DELETE_DOCUMENT_ERROR": "Error while deleting document",
"DELETE_ORGANIZATION_ERROR": "Error while deleting organization",
"DELETE_SUBSCRIPTION_ERROR": "Error while deleting the subscription",
"DEPLOYMENT_REQUEST_HUB_STATUS_NOT_QUEUED": "You can only reorder queued deployment requests.",
"DEPLOYMENT_REQUEST_NOT_FOUND": "An unknown error occurred",
"DEPLOYMENT_REQUEST_QUOTA_NOT_FOUND": "Deployment request quota was not found.",
"DEPLOYMENT_REQUEST_STATUS_UPDATE_NOT_ALLOWED": "An unknown error occurred",
"DEPLOYMENT_REQUEST_UNKNOWN_ERROR": "An unknown error occurred",
"DOCUMENT_CREATE_ERROR": "An error occurred while creating the resource.",
"DOCUMENT_MISSING_METADATA": "Document is missing metadata.",
"DOCUMENT_NOT_FOUND": "The resource was not found.",
"DOCUMENT_UNIQUE_SLUG_ERROR": "The resource slug is already in use.",
"DOCUMENT_UPDATE_ERROR": "An error occurred while updating the resource.",
"EDIT_CAPABILITIES_CANT_REMOVE_LAST_MANAGE_ACCESS": "Since you are the last user with 'manage access' capability in your organization, you cannot remove this capability.",
"EDIT_CAPABILITIES_ERROR": "Error while editing capabilities",
"EDIT_ME_USER_ERROR": "Error while editing your profile",
"EDIT_ORGANIZATION_ERROR": "Error while editing organization",
"EDIT_USER_ERROR": "Error while editing user",
"EDIT_USER_SESSION_ERROR": "An unknown error occurred",
"EMAIL_OUTSIDE_ORGANIZATION_ERROR": "You cannot add a user whose email domain is outside your organization",
"FREE_TRIAL_ALREADY_EXISTS": "A free trial already exists for your organization",
"GRANT_CAPABILITIES_ON_ORGANIZATION_FIRST": "You must grant capabilities on organization first",
"HUBSPOT_ERROR": "An error occured while contacting us",
"INCREMENT_SHARE_NUMBER": "Error occurred while incrementing share number",
"INTEGRATION_TYPE_NOT_MANAGEABLE": "This type of integration is not manageable.",
"INTEGRATION_TYPE_NOT_RECOGNIZED": "This type of integration is not recognized",
"INVALID_ACTION_SIZE": "An unknown error occurred",
"INVALID_EMAIL": "The email should be in valid format.",
"INVALID_IMAGE_URL": "The image URL is not valid",
"INVALID_PLATFORM_ID": "An unknown error occurred",
"INVALID_PLATFORM_IDENTIFIER": "Platform identifier is invalid",
"INVALID_PLATFORM_VERSION": "Invalid platform version",
"INVALID_SERVICE_CONFIGURATION": "Service configuration is invalid",
"IS_PLATFORM_REGISTERED_UNKNOWN_ERROR": "An unknown error occurred during platform registration",
"MISSING_CAPABILITY_ON_ORGANIZATION": "Missing permissions",
"MISSING_CAPABILITY_ON_SERVICE": "Missing permissions",
"MISSING_METADATA_MAPPING": "Missing metadata mapping",
"MISSING_START_OR_END_DATE": "An unknown error occurred",
"NO_ASYNC_CONTEXT_AVAILABLE": "An unknown error occurred",
"NOT_ALLOWED_BY_DEPLOYMENT_STATUS": "An unknown error occurred",
"ORGANIZATION_SAME_DOMAIN_EXISTS": "An organization with the same domain already exists",
"ORGANIZATION_SAME_NAME_EXISTS": "An organization with the same name already exists",
"ORGANIZATIONS_DOES_NOT_MATCH_SELECTED_ORGANIZATION": "You are not allowed to do this",
"PLATFORM_NOT_REGISTERED": "The platform is not registered",
"PLATFORM_TYPE_NOT_SUPPORTED": "The platform type is not supported",
"REFRESH_USER_PLATFORM_TOKEN_UNKNOWN_ERROR": "An unknown error occurred while refreshing user platform token",
"REGISTER_PLATFORM_UNKNOWN_ERROR": "An unknown error occurred during platform registration",
"REGISTRATION_ON_ANOTHER_ORGANIZATION_FORBIDDEN": "Registration on another organization is forbidden",
"REMOVE_USER_FROM_ORGA_ERROR": "Error while removing user from organization",
"REMOVE_USER_FROM_PENDING_ORGA_ERROR": "An error occurred while removing user from a pending organization",
"SERVICE_CONFIGURATION_NOT_FOUND": "Service configuration was not found",
"SERVICE_CONTRACT_NOT_FOUND": "Service contract was not found",
"SERVICE_DEFINITION_NOT_FOUND": "Service definition was not found",
"SERVICE_GROUPS_LINKED_TO_MULTIPLE_SERVICE_INSTANCES": "You are not allowed to do this",
"SERVICE_INSTANCE_NOT_FOUND": "Service instance was not found",
"SERVICE_NOT_FOUND": "Service was not found",
"SERVICE_NOT_MANAGEABLE": "This service is not manageable.",
"SERVICE_SUBSCRIPTION_ERROR": "Error while adding a subscription to the service",
"SUBSCRIPTION_NOT_FOUND": "Subscription was not found",
"TRANSFER_ME_ERROR": "Error while requesting personal space transfer.",
"UNKNOWN_ERROR": "An unknown error occurred",
"UNREGISTER_PLATFORM_UNKNOWN_ERROR": "An unknown error occurred during platform unregistration",
"UPDATE_PLATFORM_SERVICE_METADATA_ERROR": "An error occurred while updating platform service metadata",
"USER_DISABLED": "User is disabled",
"USER_IS_NOT_IN_ORGANIZATION": "Missing permissions",
"YOU_CAN_NOT_LOGIN": "You can not login"
},
"SomethingWentWrong": "Something went wrong",
"YouAreNotAuthorized": "You are not authorized to get this page."
},
"GenericActions": {
"FilterUseCases": "Use case...",
"FilterUseCasesLabel": "Use case",
"Search": "Search...",
"Paginate": {
"PreviousPage": "Go to previous page",
"NextPage": "Go to next page",
"Manage": "Manage pagination",
"RowsPerPage": "Rows per page"
}
},
"GoToProd": "Go to production",
"HomePage": {
"Homepage": "Homepage",
"Manage": "Manage",
"OpenManagement": "Go to management page"
},
"InviteUserServiceForm": {
"Capabilities": "Available capabilities",
"CapabilitiesDescription": "You can add specific capabilities to {organizationName} users for their subscription on the {serviceName} service.",
"CapabilitiesPlaceholder": "Select capabilities",
"Description": "Additional capability: By default, your user invited to a service will have access the service. If you want to grant additional capability, select the capability/ies you want to grant to your user.",
"DisabledCapability": "if you want to give capabilities to your users on this service, first grant the activation on the organization level",
"Email": "Email",
"GrantCapability": "Grant capability",
"Organization": "Organization",
"Title": "Invite user to the {serviceName} service"
},
"UseCaseActions": {
"AddUseCase": "Add use case",
"SearchLabel": "Search"
},
"UseCaseForm": {
"Color": "Color",
"Name": "Name"
},
"UseCaseListPage": {
"Color": "Color",
"Name": "Name"
},
"LocaleSwitcher": {
"Label": "Language",
"en": "English",
"fr": "Français"
},
"LoginPage": {
"CreateYourAccount": "create your account",
"Email": "Email",
"Login": "Login",
"Logout": "Logout",
"OnFiligranWebsite": "on the Filigran website",
"Password": "Password",
"SignIn": "Sign in",
"Title": "XTM Hub login page",
"ToLoginPlease": "To login, please"
},
"MenuActions": {
"Continue": "Continue",
"Delete": "Delete",
"Details": "Details",
"Disable": "Disable",
"Remove": "Remove",
"Update": "Update"
},
"MenuLinks": {
"Backoffice": "Backoffice",
"Connectors": "OpenCTI Connectors",
"Home": "Home",
"UseCases": "Use Cases",
"Organizations": "Organizations",
"Parameters": "Parameters",
"Profile": "Profile",
"Security": "Security",
"Services": "Services",
"Settings": "Settings",
"SettingsLabel": "Settings menu",
"Users": "Users",
"OpenCTITrials": "OpenCTI Trials",
"OpenAEVTrials": "OpenAEV Trials",
"Competitors": "Competitors"
},
"CompetitorListPage": {
"Name": "Name",
"Domain": "Domain",
"Tier": "Tier",
"Edit": "Edit",
"Delete": "Delete",
"AddCompetitor": "Add competitor",
"DeleteDialog": {
"Title": "Delete competitor",
"Text": "Are you sure you want to delete the {name} competitor?"
}
},
"CompetitorForm": {
"AddTitle": "Add competitor",
"EditTitle": "Edit competitor",
"Name": "Name",
"Domain": "Domain",
"Tier": "Tier",
"AddButton": "Add competitor",
"EditButton": "Update competitor"
},
"MenuUser": {
"Profile": "Profile",
"ToggleUser": "Open menu user"
},
"Notifications": {
"Title": "Notifications ({count})",
"UserNotification": {
"Text": "<nameFormat>{name}</nameFormat> wants to join your organization",
"Title": "User Request"
}
},
"OrganizationActions": {
"ErrorNameAlreadyExists": "The organization {name} already exists.",
"OrganizationCreated": "Organization {name} has been created",
"OrganizationDeleted": "Organization has been deleted",
"OrganizationUpdated": "Organization {name} has been modified",
"SearchOrganizationWithEmail": "Search organization with email..."
},
"OrganizationForm": {
"CreateOrganization": "Create organization",
"DeleteOrganization": "Delete organization",
"Domains": "Domains",
"DomainsPlaceholder": "Add a domain",
"EditOrganization": "Edit organization",
"Error": {
"Domain": "At least one domain is required",
"DomainsInvalid": "The value as domain is invalid",
"DuplicateName": "An organization with this name already exists",
"Name": "Organization name is required"
},
"Name": "Name",
"SureDeleteOrganization": "Are you sure you want to delete this organization {organizationName}? This action can not be undone."
},
"OrganizationInServiceAction": {
"AddOrganization": "Subscribe organization to the",
"ConfirmDelete1": "Are you sure you want to delete this organization",
"ConfirmDelete2": "from this service ? This action cannot be undone.",
"DeleteOrgFromService": "Delete Organization from the service",
"EndDate": "End date (optional)",
"Organization": "Organization",
"RemoveOrganization": "Remove organization",
"SelectCapa": "Select capabilities",
"SelectCapaDescription": "If you select these capabilities, the administrator will be able to assign these capabilities to the users later.",
"SelectOrganization": "Select an organization",
"StartDate": "Start date"
},
"OrganizationSwitcher": {
"PersonalSpace": "Personal space",
"SelectOrganization": "Select an organization",
"SelectedOrganization": "SelectedOrganization"
},
"TrialsDashboard": {
"Columns": {
"Email": "Email",
"Organization": "Organization",
"StartDate": "Start Date",
"EndDate": "End Date",
"RemainingDays": "Days remaining",
"Status": "Status",
"Region": "Region",
"PlatformId": "Platform ID",
"PlatformUrl": "Platform URL",
"RegistrationStatus": "Registration Status",
"RequestDate": "Requested Date",
"Priority": "Priority",
"CancellationDate": "Cancellation Date",
"CancellationOwner": "Cancellation Owner",
"CancellationReason": "Cancellation Reason",
"Available": "Available",
"Taken": "Taken",
"Total": "Total"
},
"TabTitle": {
"Cancelled": "Cancelled",
"Expired": "Expired",
"Running": "Running",
"Waiting": "Waiting",
"Quotas": "Quotas"
},
"Toast": {
"TrialsReordered": "Trial requests were reordered"
},
"Actions": {
"SearchTrials": "Search by email or organization",
"MoveToTop": "Move to top",
"MoveUp": "Move up"
},
"UpdateQuotasForm": {
"Title": "Update quotas for {platform} in {region}",
"QuotasUpdated": "Quota has been updated successfully",
"NewCapacityLabel": "New quota capacity",
"AlertDialog": {
"ConfirmTitle": "Quota Update for Region {region}",
"ConfirmDescription": "You’ve updated the quotas for Region {region} from {oldCapacity} to {newCapacity}.",
"ConfirmSentence": "Are you sure you want to save these changes?"
}
},
"WarningCancellation": "Any cancellation will prevent that organization to ask for a new trial",
"Registered": "Registered",
"NotRegistered": "Not Registered"
},
"Parameters": {
"Version": "Version"
},
"PendingUserListPage": {
"TabTitle": "Users Requests ({usersCount})",
"WarningUserRejection": {
"Confirm": "Confirm",
"Description": "You are about to refuse this user from your organization. This action can’t be undone. Are you sure ?",
"Title": "Are you sure?"
},
"WarningUsersRejection": {
"Confirm": "Confirm",
"Description": "You are about to refuse these users from your organization. This action can’t be undone. Are you sure ?",
"Title": "Are you sure?"
},
"WarningUsersAccept": {
"Confirm": "Confirm",
"Description": "You are about to accept these users in your organization. These users won’t have any specific permissions by default. If you’d like to assign or update permissions, visit the Users tab. Are you sure ?",
"Title": "Are you sure?"
}
},
"PlatformIdentifier": {
"openaev": "OpenAEV",
"opencti": "OpenCTI"
},
"ProfilePage": {
"PlatformsEditionDialog": {
"ConfirmSentence": "Your first name and your last name will potentially be updated in your OpenCTI and OpenAEV platforms."
},
"Title": "Profile",
"UpdateProfile": "Update profile",
"PersonalSpace": {
"SuccessTransfer": "Personal space successfully transfered",
"SuccessRequest": "Personal space transfer request successfully sent",
"TitleDangerZone": "Transfer of personal space",
"TransferPersoSpaceExplanation": "You can request a personal space transfer for all of your subscriptions (the other account must already exists).",
"EmailPlaceholder": "email.i.want.to.transfer.to@email.com",
"TransferPersoSpace": "Transfer personal space",
"Transfer": "Transfer",
"TransferConfirmSentence": "Are you sure you want to transfer your personal space's subscriptions? While the new user has not confirmed by email, it won't be effective."
}
},
"RedirectPage": {
"ExploringOurRoad": "Hold tight—you're just 3 seconds away from exploring our roadmap and learning more.",
"YourFutureHub": "Your future Filigran community hub is taking shape !"
},
"Register": {
"AnotherOrganization": {
"Allowed": {
"Registered": {
"Description": "Your {platformIdentifier} platform is already registered in another organization. Do you want to transfer your platform ?",
"Title": "Platform already registered"
},
"Unregistered": {
"Description": "Your {platformIdentifier} platform was previously registered in another organization. Do you want to re-register your platform ?",
"Title": "Platform was registered"
}
},
"NotAllowed": {
"Description": "Your {platformIdentifier} platform is already registered in another organization and you don't have the necessary permissions to transfer it.",
"Title": "The platform is registered on another organization"
}
},
"Back": "Back to {platformIdentifier}",
"Confirm": "Register",
"Details": {
"Contract": "Contract",
"Contracts": {
"CE": "Community Edition",
"EE": "Enterprise Edition"
},
"Description": "Click here to access your Private Platform.",
"PlatformID": "Platform ID",
"PlatformURL": "Platform URL",
"PrivatePlatform": "Private platform"
},
"Error": {
"Capability": {
"AdminListTitle": "The administrators of your organization are the following:",
"Description": "If you want to proceed with the registration of your {platformIdentifier} platform in XTM Hub, you need to contact an admininistrator from your organization on XTM Hub who has the appropriate permissions to proceed.",
"Title": "You do not have the necessary {capability} access on the XTM Hub"
}
},
"Failed": {
"Description": "An error occurred during the platform registration",
"Title": "Registration failed"
},
"OpenCTI": {
"AnotherOrganization": {
"Allowed": {
"Registered": {
"Description": "Your OpenCTI platform is already registered in another organization. Do you want to transfer your platform ?",
"Title": "Platform already registered"
},
"Unregistered": {
"Description": "Your OpenCTI platform was previously registered in another organization. Do you want to re-register your platform ?",
"Title": "Platform was registered"
}
},
"NotAllowed": {
"Description": "Your OpenCTI platform is already registered in another organization and you don't have the necessary permissions to transfer it.",
"Title": "The platform is registered on another organization"
}
},
"Back": "Back to OpenCTI",
"Error": {
"Capability": {
"AdminListTitle": "The administrators of your organization are the following:",
"Description": "If you want to proceed with the registration of your OpenCTI platform in XTM Hub, you need to contact an admininistrator from your organization on XTM Hub who has the appropriate permissions to proceed.",
"Title": "You do not have the necessary {capability} access on the XTM Hub"
}
},
"Failed": {
"Description": "An error occurred during the platform registration",
"Title": "Registration failed"
},
"OrganizationForm": {
"Description": "Choose which organization space to register to",
"Title": "You're about to register your OpenCTI platform into XTM Hub"
},
"SameOrganization": {
"Registered": {
"Description": "Your OpenCTI platform is already registered. Do you want to re-register your platform ?",
"Title": "Platform already registered"
},
"Unregistered": {
"Description": "Your OpenCTI platform was previously registered. Do you want to re-register your platform ?",
"Title": "Platform was registered"
}
},
"Succeeded": {
"Description": "This tab will be closed soon",
"Title": "OpenCTI platform registered successfully"
},
"TooMuchOrganization": {
"Description1": "Your OpenCTI platform {platformTitle} will be re-registered under the same organization due to capability restrictions.",
"Description2": "If you wish to request a change, please contact your organization's administrator.",
"Title": "Platform Re-registration Notice"
}
},
"OrganizationForm": {
"Description": "Choose which organization space to register to",
"Title": "You're about to register your {platformIdentifier} platform into XTM Hub"
},
"SameOrganization": {
"Registered": {
"Description": "Your {platformIdentifier} platform is already registered. Do you want to re-register your platform ?",
"Title": "Platform already registered"
},
"Unregistered": {
"Description": "Your {platformIdentifier} platform was previously registered. Do you want to re-register your platform ?",
"Title": "Platform was registered"
}
},
"Succeeded": {
"Description": "This tab will be closed soon",
"Title": "{platformIdentifier} platform registered successfully"
},
"TooMuchOrganization": {
"Description1": "Your {platformIdentifier} platform {platformTitle} will be re-registered under the same organization due to capability restrictions.",
"Description2": "If you wish to request a change, please contact your organization's administrator.",
"Title": "Platform Re-registration Notice"
}
},
"RemoveUserOrgDialog": {
"TextRemoveThisUser": "Are you sure you want to remove this user {email} from your organization ?"
},
"Reset table": "Reset table",
"Rows per page": "Rows per page",
"Service": {
"ServiceDefinitionIdentifier": {
"link": "Link",
"openaev_registration": "OpenAEV Registration",
"openaev_scenarios": "OpenAEV Scenarios",
"opencti_custom_dashboards": "OpenCTI Custom Dashboards",
"opencti_integrations": "OpenCTI Integrations",
"opencti_registration": "OpenCTI Registration",
"vault": "Vault"
},
"Capabilities": {
"AccessServiceDescription": "You just have access to a service",
"AccessServiceName": "Access service",
"CapabilitiesTitle": "Capabilities",
"ManageAccessDescription": "You can access the service and invite users to this service",
"ManageAccessName": "Manage access",
"SelectCapabilities": "Select capabilities"
},
"ComingSoon": "Coming soon",
"Connectors": {
"DataImport": "Data Import",
"Description": "Explore a range of OpenCTI Connectors shared by the Filigran team",
"IntegrationDocumentationAndCode": "Integration documentation and code",
"LastVerifiedDate": "Last verified at",
"Name": "OpenCTI Connectors",
"Search": "Search a connector with name...",
"VendorContact": "Vendor Contact",
"VisitVendor": "Visit the vendor's page to learn more and get in touch",
"Incompatible": "{platformToBeUpdated} {count, plural, =1 {needs} other {need}} to be updated to deploy this connector.",
"UnavailableDeployments": "This connector is not available for automatic deployment."
},
"CreationStatus": "Creation status",
"Form": {
"Author": "Author",
"DeleteSentence": "After clicking that button, click VALIDATE to permanently delete this image.",
"DatasheetUrlLabel": "Datasheet link (url)",
"DemoUrlLabel": "Demo link (url)",
"DescriptionLabel": "Description",
"DescriptionPlaceholder": "This is a paragraph to describe the {documentType}.",
"DescriptionUpdateJSONFile": "You're about to upload a new json file. The previous json file will be deleted. Do you want to continue?",
"ExistingJSONFile": "Existing JSON file: {file_name}",
"GithubUrlLabel": "Github URL",
"Illustration": "Illustration",
"ImageLabel": "Images",
"NameLabel": "Name",
"NamePlaceholder": "{documentType} name",
"NoImage": "No image selected",
"ProductVersionLabel": "{platform} version",
"ProductVersionPlaceholder": "1.0.0",
"PublishedPlaceholder": "Is the {documentType} published?",
"Restore": "Restore",
"SelectImage": "Select image(s)",
"SelectIntegrationSubType": "Subtype",
"SelectJSONFile": "Select JSON file",
"ShortDescriptionLabel": "Short Description",
"ShortDescriptionPlaceholder": "This is some catchphrases to describe the document.",
"SlugLabel": "Slug",
"SlugPlaceholder": "slug",
"UpdateJSONFile": "Update JSON file",
"UploadImage": "Upload new image(s)",
"UrlPlaceholder": "http://www.example.com",
"UseCasesLabel": "Use cases",
"UseCasesPlaceholder": "Add use cases",
"VendorUrlLabel": "Vendor URL"
},
"OpenctiIntegrations": {
"Actions": {
"Share": "Share integration"
},
"AddService": "Add new Integration",
"IntegrationType": "Integration type",
"Filter": {
"IntegrationSubType": {
"Label": "Subtype",
"Placeholder": "Subtype..."
},
"Type": {
"Label": "Integration type",
"Placeholder": "Integration type..."
},
"ProductVersion": {
"Label": "Registered platforms",
"Placeholder": "Registered platforms..."
},
"ManagerSupported": {
"Label": "Deployment type",
"Placeholder": "Deployment type...",
"AutomaticDeploy": "Automatic deploy",
"ManualDeploy": "Manual deploy"
},
"Verified": {
"Label": "Verification status",
"Placeholder": "Verification status...",
"Verified": "Verified",
"Unverified": "Unverified"
}
},
"Type": {
"csv_feed": "CSV Feeds",
"connector": "Connectors",
"rss_feed": "RSS Feeds (coming soon)",
"json_feed": "JSON Feeds (coming soon)",
"taxii_feed": "TAXII Feeds",
"stream": "OpenCTI Streams",
"third_party_integration": "Third party integrations"
}
},
"CsvFeed": {
"Actions": {
"Added": "The CSV {name} has been added successfully",
"Deleted": "The CSV {name} has been deleted successfully",
"Share": "Share CSV Feed",
"Updated": "The CSV {name} has been modified successfully"
},
"Active": "Published",
"AddService": "Add new CSV Feed",
"DeleteService": "Delete the CSV Feed {name}",
"NonActive": "Draft",
"SureDeleteService": "Are you sure you want to delete the CSV Feed {name}?",
"UpdateService": "Update the CSV Feed {name}"
},
"TaxiiFeed": {
"Actions": {
"Added": "The TAXII {name} has been added successfully",
"Deleted": "The TAXII {name} has been deleted successfully",
"Share": "Share TAXII Feed",
"Updated": "The TAXII {name} has been modified successfully"
},
"Active": "Published",
"AddService": "Add new TAXII Feed",
"DeleteService": "Delete the TAXII Feed {name}",
"NonActive": "Draft",
"SureDeleteService": "Are you sure you want to delete the TAXII Feed {name}?",
"UpdateService": "Update the TAXII Feed {name}"
},
"Connector": {
"Actions": {
"Deleted": "The Connector {name} has been deleted successfully"
},
"DeleteService": "Delete the Connector {name}",
"SureDeleteService": "Are you sure you want to delete the Connector {name}?"
},
"Stream": {
"Actions": {
"Added": "The Stream {name} has been added successfully",
"Deleted": "The Stream {name} has been deleted successfully",
"Share": "Share Stream",
"Updated": "The Stream {name} has been modified successfully"
},
"Active": "Published",
"AddService": "Add new Stream",
"DeleteService": "Delete the Stream {name}",
"NonActive": "Draft",
"SureDeleteService": "Are you sure you want to delete the Stream {name}?",
"UpdateService": "Update the Stream {name}"
},
"ThirdPartyIntegration": {
"Actions": {
"Added": "The Third party integration {name} has been added successfully",
"Deleted": "The Third Party Integration {name} has been deleted successfully",
"Share": "Share Third Party Integration",
"Updated": "The Third Party Integration {name} has been modified successfully"
},
"Active": "Published",
"AddService": "Add new Third Party Integration",
"DeleteService": "Delete the Third Party Integration {name}",
"NonActive": "Draft",
"SureDeleteService": "Are you sure you want to delete the Third Party Integration {name}?",
"UpdateService": "Update the Third Party Integration {name}"
},
"OpenctiCustomDashboards": {
"Actions": {
"Added": "The custom dashboard {name} has been added successfully",
"Deleted": "The custom dashboard {name} has been deleted successfully",
"Share": "Share Custom Dashboard",
"Updated": "The custom dashboard {name} has been modified successfully"
},
"Active": "Published",
"AddService": "Add new dashboard",
"DeleteService": "Delete the custom dashboard {name}",
"NonActive": "Draft",
"SureDeleteService": "Are you sure you want to delete the {name} dashboard?",
"UpdateService": "Update dashboard"
},
"OpenAEVScenario": {
"Actions": {
"Added": "The scenario {name} has been added successfully",
"Deleted": "The scenario {name} has been deleted successfully",
"Updated": "The scenario {name} has been modified successfully",
"Share": "Share Scenario"
},
"Form": {
"OpenAEVScenarioFile": "Scenario file",
"ExistingOpenAEVScenarioFile": "Existing scenario file: {file_name}",
"UpdateZIPFile": "Update ZIP file",
"DescriptionUpdateZIPFile": "You're about to upload a new zip file. The previous json file will be deleted. Do you want to continue?"
},
"AddService": "Add new scenario",
"UpdateService": "Update the scenario {name}",
"DeleteService": "Delete the scenario {name}",
"SureDeleteService": "Are you sure you want to delete the scenario {name}?",
"NonActive": "Draft",
"Active": "Published"
},
"Description": "Description",
"GoTo": "Go to service page",
"GoToAdminLabel": "Manage",
"GoToLabel": "Go to",
"GoToManagement": "Go to service management",
"HighlightedServices": "To use this feature, please subscribe to one of the highlighted services first",
"Join": "Join",
"List": {
"Filter": {
"Add": "Add filter",
"NoOptions": "No options",
"Key": {
"label": "Use case",
"integration_type": "Integration type",
"product_version": "Registered platforms",
"manager_supported": "Deployment type",
"verified": "Verification status"
}
}
},
"Management": {
"AreYouSureRemoveAccess": "Are you sure you want to remove the access for the user {firstname} {lastname} for this service?",
"Description": "Find below the list of organizations subscribed to this service",
"Email": "Email",
"FirstName": "First Name",
"InviteUser": {
"InviteUser": "Invite user to the service",
"InviteUserSubtitle": "Additional capability: By default, your user invited to a service will just have access to the service. If you want to grant additional capability, select the capability/ies you want to grant to your user in the dropdown.",
"Organization": "Organization",
"TitleInviteUser": "Invite user"
},
"LastName": "Last Name",
"ManageUsers": "Manage users",
"ManageUsersForOrganization": "Manage {organizationName}'s users in the {serviceName} service",
"OneUserMax": "Add 1 user max",
"RemoveAccess": "Remove access",
"RemoveRights": "Remove rights",
"ShowPersonalSpaces": "Show personal spaces",
"SearchOrganization": "Search organization",
"Subscription": "Subscription"
},
"Name": "Name",
"NoOwnedService": "You don't have any services yet.",
"NoService": "There is no service... Yet!",
"Organizations": "Organizations",
"RegisteredPlatforms": {
"PlatformDetails": "Platform details",
"GoToMyPlatform": "Go to my platform"
},
"SearchServices": "Search service...",
"ServiceName": "Service name",
"ShareableResources": {
"Copied": "URL copied! You can now paste and share it.",
"Deploy": {
"DeployDescriptionNoPlatform": "You don't have any registered {platformIdentifier} platform",
"DeployDescriptionNoPlatformIllustration": "Register in XTM Hub illustration",
"DeployDescriptionNoPlatformThen": "To deploy a resource, you must first register your {platformIdentifier} platform.\n\nRegistration steps:\n1. Ensure you are an {platformIdentifier} administrator, or contact your administrator for assistance.\n2. Log in to your {platformIdentifier} platform and navigate to Settings > Filigran Experience.\n3. Click the "Register" button to complete the registration like in the screenshot below",
"DeployDescriptionOnePlatform": "Do you want to deploy it in the {platformName} platform?",
"DeployPlatform": "Deploy in {platformName}",
"DeployQuestionTag": "In which {platformType} platform do you want to deploy it?",
"DeployResourceDescription": "You're about to deploy the {resourceName} {resourceType}.",
"DeployIncompatibleVersion": "The resource can't be deployed to your OpenCTI platform \"{platformTitle}\" because the platform version is no longer compatible with this resource. You’ll need to update the platform or use a compatible resource version before proceeding."
},
"Details": {
"Author": "Author",
"BasicInformation": "Basic information",
"OpenCTIDocumentation": "OpenCTI Documentation",
"Downloads": "Downloads",
"LastUpdatedAt": "Last updated at",
"Overview": "Overview",
"ProductVersion": "Product minimum version",
"Shares": "Shares",
"IntegrationType": "Type",
"IntegrationSubType": "Subtype",
"GithubURL": "Github URL",
"VendorURL": "Vendor URL",
"FeedURL": "Feed URL",
"DatasheetURL": "Datasheet URL",
"DemoURL": "Demo URL"
},
"Download": "Download",
"FromVersion": "From version",
"Share": "Share"
},
"Subscribe": "Subscribe",
"SubscribeOrganization": "Subscribe organization",
"SubscribeService": "Subscribe to {serviceName} service",
"SubscribeSuccessful": "You have successfully subscribed to the service. You can now find it in your subscribed services.",
"SubscriptionRequestSuccessful": "Your request has been sent. You will soon be in touch with our team.",
"SureWantSubscriptionDirect": "Get started with our free {serviceName} service and explore resources created by the Filigran team.",
"SureWantSubscriptionUndirect": "You are going to be contacted by our commercial team to subscribe this service. Do you want to continue?",
"Trials": {
"Explore": "Explore the full potential of OpenCTI Enterprise Edition, start your 30 days free trial.",
"ExploreBold": "Free Trial!",
"ExplorePlatform": "Explore {platformName} platform with 30 days",
"ExploreProducts": "Explore OpenCTI or OpenAEV platform with 30 days",
"Active": "Your OpenCTI free trial is active",
"Provisioning": "Your OpenCTI free trial is currently being provisioned.",
"Requested": "Your OpenCTI free trial has been requested.",
"Expired": "Your OpenCTI free trial has expired.",
"Cancelled": "Your OpenCTI free trial has been cancelled.",
"CancellationReason": {
"value": "Intelligence lacks actionable insight for our specific needs",
"compatibility": "Incompatible with our existing security stack",
"complexity": "Configuration is too complex to complete within a reasonable timeframe",
"legal-security": "Internal security or legal team required immediate termination",
"expertise": "We lack the internal analysts/expertise to utilise the tool effectively"
},
"DaysRemaining": "{days, plural, =1 {# Day remaining} other {# Days remaining}}",
"Header": {
"ActiveTrial": "Active trial",
"DaysRemaining": "remaining day"
},
"LearnMore": {
"Link": "Learn more",
"openaev": {
"WhatCanYouDo": {
"Title": "What can you do with your OpenAEV trial?",
"FirstParagraph": "Get 30 days to explore all OpenAEV functionalities to simulate attacks, evaluate your defenses, and improve your security posture. This includes all OpenAEV SaaS-based Enterprise Edition features, including the use of your existing EDR agents, automated scenario generation, and AI-powered remediation guidance.",
"SecondParagraph": "Whether you want to want to simulate attack sequences, perform realistic tabletop exercises, validate your security posture, or report on your cyber resilience to leadership, you can test all OpenAEV capabilities for your specific needs.",
"Link": "Discover all OpenAEV Enterprise Edition features"
},
"Blocks": {
"First": {
"Title": "Prioritize",
"Description": "Build offensive attack simulations to identify vulnerabilities and exploitable attack paths, leveraging OpenCTI threat intelligence and MITRE ATT&CK mapping to prioritize threats based on your PIRs."
},
"Second": {
"Title": "Test",
"Description": "Validate your defenses continuously through atomic testing, custom attack sequences, or pre-packaged scenarios. Run tabletop exercises to test team responses, using OpenAEV's native EDR or pre-built integrations with leading vendors."
},
"Third": {
"Title": "Fix",
"Description": "Pinpoint where to improve your security posture with drill-down analytics, AI-powered remediation guidance, and team feedback — then close the loop with AI-assisted scenario creation."
}
}
},
"opencti": {
"WhatCanYouDo": {
"Title": "What can you do with your OpenCTI trial?",
"FirstParagraph": "Get 30 days to explore all OpenCTI functionalities and enrich your threat intelligence. This includes all OpenCTI Enterprise Edition features such as automated playbooks, ability to set-up priority intelligence requirements (PIRs), FINTEL, as well as AI-powered files import, report generation, and NLP search functionality.",
"SecondParagraph": "Explore how OpenCTI can support your specific needs—whether threat hunting, incident response, or case management—and integrate with your preferred data sources to make actionable threat intelligence flow across your security stack.",
"Link": "Discover all OpenCTI Enterprise Edition features"
},
"Blocks": {
"First": {
"Title": "Ingestion",
"Description": "Consolidate and enrich threat intelligence from any feed—commercial, open-source, internal—into a centralized platform, leveraging 300+ integrations and standardized on the STIX 2.1 framework. Use AI-assisted import of CTI reports to save countless analyst hours."
},
"Second": {
"Title": "Processing",
"Description": "Access powerful dashboard visualizations, knowledge hypergraphs, and playbooks to pivot across threat actors using timelines and ATT&CK mappings. Tailor your dashboards to meet your threat or incident management needs, and make AI your companion at every step."
},
"Third": {
"Title": "Output",
"Description": "Make threat intelligence flow through your entire security system. Share and disseminate intelligence across teams and tools with role-based access for timely action. Use OpenAEV—fully integrated with OpenCTI—to validate and improve your security posture."
}
}
}
},
"StartTrial": "Start your free trial",
"GoToMyTrial": "Go to my trial",
"InfoPersonalSpace": "You can’t start a trial in your personal space—please switch to your organization’s space",
"ReachOutToSales": "Reach out to Sales",
"ReachOutToSalesMessagePlaceholder": "Your message",
"NeedSupport": "Need support",
"ReachOutToSalesSuccessTitle": "Thank you!",
"ReachOutToSalesSuccessMessage": "Thank you for reaching out, we'll get back to you shortly.",
"ReachOutToSalesDefaultMessage": "Please contact me about the {platform} free trial",
"Cancellation": {
"Toast": {
"NoNewTrialPossible": "Thank you, your OpenCTI free trial was cancelled successfully. Please note that new openCTI trials can’t be requested.",
"NewTrialPossible": "Thank you, your OpenCTI free trial was cancelled successfully.",
"Admin": "The OpenCTI free trial was cancelled successfully."
},
"ConfirmationForm": {
"Title": "Cancel your OpenCTI free trial",
"NoNewTrialPossible": "Please note that new openCTI trials can’t be requested after this action.",
"CancellationReason": "Cancellation reason",
"CancellationReasonPlaceholder": "Select a reason",
"CancellationReasonOther": "Other",
"CancellationReasonOtherPlaceholder": "Write your reason here"
},
"Confirmation": {
"Title": "Trial Cancellation",
"Admin": "Are you sure you want to cancel OpenCTI free trial from {organizationName} ?"
}
},
"Form": {
"Region": "Region",
"RegionPlaceholder": "Please select your preferred region for hosting",
"AssociatedEmail": "Associated Email",
"JobTitle": "Job title",
"JobTitlePlaceholder": "Please select your job title",
"ActivitySector": "Activity sector",
"ActivitySectorPlaceholder": "Please select your activity sector",
"UseCase": "Use case",
"UseCasePlaceholder": "Please select your use case",
"MSSA": "MSSA",
"MSSAAgreement": "I acknowledge that I have read, understand and agree to the trial terms of",
"FormRequested": "You have requested a free trial. You will receive an email as soon as the platform is ready!"
},
"Display": {
"New": "New",
"Requested": "Requested",
"opencti": {
"Title": "OpenCTI 30-days Free Trial",
"FreeTrialDescription": "Explore all OpenCTI Enterprise Edition functionalities to start operationalizing your threat intelligence end-to-end!"
},
"openaev": {
"Title": "OpenAEV 30-days Free Trial",
"FreeTrialDescription": "Explore OpenAEV to simulate real-life attack scenarios, evaluate your security posture, and improve cyber resilience - at a technical and human level."
}
},
"CapacityWarning": {
"Title": "Availability Notice",
"Content": "A platform slot is not available in your region at this time. Would you like to receive a notification when it becomes available?",
"Continue": "Notify me"
},
"ManageUsers": {
"Title": "Manage users",
"Email": "Email"
}
},
"Vault": {
"DeleteDocument": "Delete document",
"DropFile": "Drop the document here",
"File": "Document to send",
"FileExtension": "The document must have an extension",
"FileForm": {
"AddFile": "Add new document",
"AlreadyExists": "This document already exists. The old one will be erased.",
"DeleteDialog": "Are you sure you want to delete this document?",
"DescriptionLabel": "Description",