-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
1056 lines (1056 loc) · 45.4 KB
/
en.json
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
{
"_meta": {
"displayName": "English",
"name": "en"
},
"checklist": {
"All": "All",
"AssignedObjects": "Assigned objects",
"Card": "Card",
"Checked": "Checked",
"Checklists": "Checklists",
"Collapse": "Collapse",
"Expand": "Expand",
"GeneralDescription": "General description",
"Inapplicable": "Inapplicable",
"Info": "Info",
"Show": "Show:",
"Unchecked": "Unchecked",
"Undefined": "Undefined",
"itemsChecked": " items are checked"
},
"connection": {
"ActionImmediateM": "This action is immediate and cannot be reverted",
"AddAppConnection": "Connection",
"AddProject": "Project",
"AppConnection": "App connection",
"AppConnectionId": "App conection ID",
"AppConnectionName": "Connection name",
"AppConnectionProjects": " Projects of \"{appConnectionName}\" connection",
"Cancel": "Cancel",
"CannotReceiveInformationM": "You cannot receive connection information. Contact the party that initiated the connection",
"Connect": "Connect",
"ConnectToHive": "Connect to Hive",
"Connected": "Connected",
"ConnectionError": "Connection error",
"ConnectionName": "{projectName} connection",
"ConnectionNameOptional": "Connection name (optional)",
"ConnectionSuccessful": "Connection successful",
"Copied": "Copied to clipboard",
"CopiedUuid": "Connection UUID copied to clipboard",
"CopyUuid": "Copy UUID",
"Delete": "Delete",
"DeleteAppConnectionQ": "Delete connection?",
"Disconnected": "Disconnected",
"EditName": "Edit name",
"ExistingConnectionEstablished": "Existing connection established",
"HiveConnections": "Hive connections",
"Id": "ID",
"LinkExisting": "Link with existing",
"LoadStatus": "Load connection status...",
"Name": "Name",
"Network": "Network",
"NewAppConnectionCreated": "New app connection created",
"NewConnection": "New connection",
"NewConnectionCreated": "New connection created",
"NoConnectionsYetM": "You don't have any connections",
"NoResponseFromHiveM": "No response from the Hive side for {duration} minutes",
"NotConnected": "Not connected",
"Pending": "Pending",
"ProjectConnection": "Project connection",
"ProjectConnectionId": "Project conection ID",
"ProjectCreationAvailability": "Available on successful status connection",
"Projects": "Projects",
"Status": "Status",
"Successful": "Connected",
"TableName": "Name",
"TableProjects": "Projects",
"TableStatus": "Status",
"UnnamedConnection": "Unnamed connection",
"UpgradePlan": "Upgrade to Enterprise",
"UpgradePlanM": "Upgrade your plan to be able to connect to Hive",
"UploadConfigM": "Upload the configuration file to Hive",
"alreadyInProgress": "already in progress"
},
"dashboard": {
"Cancel": "Cancel",
"Card": "Card",
"CardCompleted": "Completed:",
"CardCompletedConjunction": " and ",
"CardGroup": "Group:",
"CardHostname": "Hostname:",
"CardIp": "IP:",
"CardProject": "Project:",
"CardSla": "SLA:",
"CardTitle": "Card Title",
"CardWasDeletedN": "No cards were deleted | Card was deleted | {n} cards were deleted",
"ChangeOrder": "Change order",
"ConfigureCard": "Configure Card",
"CreateCardsM": "Create cards to track issues",
"CreateCardsUnavailableM": "You can create card when issues appear",
"Criticality": "Criticality",
"CriticalityScore": "Criticality Score",
"CrossProjectDashboard": "Cross-project dashboard",
"Dashboard": "Dashboard",
"DiscardChanges": "Discard",
"DiscardChangesQ": "Discard changes?",
"Done": "DONE",
"DragToChangeOrderM": "Drag card to change order",
"ErrorCannotPollDashboardM": "Cannot poll project dashboard without projectId",
"ErrorCardIdMismatchM": "ValueError, card.id & cardId mismatch",
"ErrorDashboardIdCardMismatchM": "ValueError, card.dashboardId & dashboardId mismatch",
"ErrorDashboardIdMismatchM": "ValueError, id & dashboard.id mismatch",
"ErrorFailedCreatingDashboardCardM": "Failed creating dashboard card",
"ErrorFailedFetchingDashboardCardDraftM": "Failed fetching dashboard card draft",
"ErrorFailedFetchingDashboardCardM": "Failed fetching dashboard card",
"ErrorFailedLoadingDashboardM": "Failed loading dashboard",
"ErrorFailedLoadingProjectDashboardM": "Failed loading project dashboard",
"ErrorFailedRemovingDashboardCardM": "Failed removing dashboard card",
"ErrorFailedSavingDashboardM": "Failed saving dashboard",
"ErrorFailedUpdatingDashboardCardM": "Failed updating dashboard card",
"ErrorInvalidScore": "Invalid score: {scoreString}",
"LeavingWithoutSavingM": "You are leaving the page without saving your changes",
"Loading": "Loading…",
"LoadingProject": "Loading project…",
"ManageCards": "Manage cards",
"ManageDashboard": "Manage Dashboard",
"NameRequired": "Name is required",
"NewCard": "New Card",
"None": "None",
"OptionToTrackChecklist": "Checklist progress",
"OptionToTrackNumber": "Number of selected issues",
"OptionToTrackParameters": "Parameters of selected issues",
"OptionToTrackSubset": "Subset of selected issues",
"ParameterFirst": "First",
"ParameterNone": "None",
"ParameterSecond": "Second",
"Probability": "Probability",
"ProbabilityScore": "Probability Score",
"Save": "Save",
"SaveCard": "Save card",
"Score": "Score",
"ScoreCritical": "Critical",
"ScoreHigh": "High",
"ScoreInfo": "Info",
"ScoreLow": "Low",
"ScoreMedium": "Medium",
"Status": "Status",
"TabChecklists": "Checklists",
"TabCounters": "Counters",
"TabPie": "Pie charts",
"TabSubset": "Subset counters",
"TabTables": "Tables",
"Total": "Total",
"TotalScore": "Total Score",
"Undo": "Undo",
"Unknown": "Unknown",
"UnrecognizedCardType": "Unrecognized card type",
"WhatToTrackQ": "What you want to track",
"criticalityScoreLetter": "c",
"probabilityScoreLetter": "p",
"scoreCritical": "crit",
"scoreCriticalLetter": "c",
"scoreHigh": "high",
"scoreHighLetter": "h",
"scoreInfo": "info",
"scoreInfoLetter": "i",
"scoreLow": "low",
"scoreLowLetter": "l",
"scoreMedium": "med",
"scoreMediumLetter": "m"
},
"filter": {
"Completed": "Completed",
"Criticality": "Criticality",
"Filter": "Filter",
"Hostnames": "Hostnames",
"IpAddresses": "IP addresses",
"LessOptions": "Less options",
"MoreOptions": "More options",
"No": "No",
"NoSla": "No SLA",
"NotCompleted": "Not completed",
"NotOverdue": "Not overdue",
"Overdue": "Overdue",
"Probability": "Probability",
"Project": "Project",
"Projects": "Projects",
"RemediationStatus": "Remediation status",
"Reset": "Reset",
"Score": "Score",
"SelectChecklistsM": "Select checklists to track",
"SelectIssues": "Select issues",
"ShowAll": "Show all",
"ShowLess": "Show less",
"ShowMore": "Show more",
"SubsetIssues": "Subset issues",
"Yes": "Yes",
"completed": "completed",
"noSla": "no SLA",
"notCompleted": "not completed",
"notOverdue": "not overdue",
"overdue": "overdue"
},
"integration": {
"ActionImmediateM": "This action is immediate and cannot be reverted",
"AddIntegration": "Add integration",
"ApiTokenM": "You can use an API token to authenticate a script or other process with an Atlassian cloud product. You generate the token from your Atlassian account, then copy and paste it here.",
"Apiary": "Apiary",
"ApplyForAllIssuesM": "Apply this set of values for all issues",
"AskToCreateServer": "Ask admin to create server",
"Cancel": "Cancel",
"ClickToCopy": "Click to copy info",
"ComingSoon": "Coming soon...",
"Configure": "Configuration",
"ConnectName": "Connect name",
"Copied": "Copied to clipboard",
"Copy": "Copy",
"CopyWebhook": "Copy webhook",
"Create": "Create",
"CreateNewServerM": "Create new integration server",
"CreateOther": "Create other",
"DefaultValuesOptionalFieldsM": "Default values for optional fields",
"DefaultValuesRequiredFieldsM": "Default values for required fields",
"Delete": "Delete",
"DeleteIntegrationPermanentlyM": "It will be deleted permanently",
"DeleteIntegrationQ": "Delete integration?",
"DeleteServerQ": "Delete server?",
"Edit": "Edit",
"EditServerM": "Edit integration server",
"Email": "E-mail",
"ErrorCannotDeleteIntegrationM": "Cannot delete {integrationCode} yet",
"ErrorUnableToConnectToJiraM": "Unable to connect to the remote JIRA server",
"ErrorUnableToConnectToJiraServerErrorM": "Server got itself into a trouble trying connecting to the provided remote JIRA server",
"ExportErrorM": "Error when export in",
"ExportSuccessM": "Successfully exported",
"FillRequiredFields": "Fill in required fields",
"HideOptional": "Hide optional fields",
"Integration": "Integration",
"IntegrationServers": "Integration servers",
"Integrations": "Integrations",
"IssueCountN": "No issues | One issue | {n} issues",
"IssueType": "Issue Type",
"Jira": "Jira",
"JiraOptionalFields": "Jira’s optional fields",
"JiraRequiredFields": "Jira’s required fields",
"JiraServer": "Jira server",
"JiraServers": "Jira Servers",
"JiraUnsupportedFields": "Jira unsupported fields",
"JiraWarningEmptyBackwardStatusM": "Select at least one status to complete the reverse sync setup.",
"JiraWarningNotHttpsM": "Using http protocol may cause reverse synchronization issues",
"LocalStatus": "Local status",
"Login": "Login",
"MyIntegrationServerName": "My integration server name",
"MyJiraConnection": "My Jira Connection",
"Next": "Next",
"NoIssueTypesMQ": "No issue types in the selected project, do you have any?",
"NoProjectsMQ": "No projects in Jira, have you got one?",
"NoRequiredFields": "No required fields",
"NothingFound": "Nothing found",
"ParagraphAffectedHostnames": "Affected hostnames",
"ParagraphAffectedIps": "Affected IPs",
"ParagraphGeneralDescription": "General description",
"ParagraphRecommendations": "Recommendations",
"ParagraphRiskDescription": "Risk description",
"ParagraphStepsToReproduce": "Steps to reproduce",
"ParagraphTechnicalDescription": "Technical description",
"Password": "Password",
"PasswordJiraM": "Password for your Jira account",
"PreviewBeforeJiraM": "Preview before sending to jira",
"PreviewBeforeJiraUnsupportedFieldsM": "@:integration.PreviewBeforeJiraM (@.lower:integration.UnsupportedFieldsM)",
"Project": "Project",
"Required": "Required.",
"Retry": "Retry",
"ReverseSync": "Reverse synchronization",
"Save": "Save",
"SelectProjectM": "Please select project first",
"SendDetailsTo": "Please send the details below to",
"SendIssueN": "Send | Send one issue | Send {n} issues",
"SendingToJira": "Sending to Jira…",
"SendingToJiraFailed": "Sending failed",
"ServerConnectionsChangeM": "If you change server settings, it may affect all existing connections.",
"ServerConnectionsMN": "Server has no connections | Server has one connection | Server has {n} connections",
"ServerName": "Server name",
"ServerWithConnectionsDeleteM": "Server has {integrationsNumber} connection. @:integration.ActionImmediateM",
"ShowOptional": "Show optional fields",
"StatusMapping": "Status mapping",
"StatusMappingUnavailableM": "The status mapping is currently unavailable. Jira wasn't able to send status back to Apiary. Reverse synchronization of statuses won't be proceeded.",
"TableCreated": "Created",
"TableHostname": "Hostname",
"TableName": "Name",
"TableToken": "Token",
"TableWebhook": "Webhook",
"Token": "Token",
"Unknown": "Unknown",
"UnknownProject": "Uknown project",
"UnsupportedField": "Unsupported field",
"UnsupportedFieldsInIssueTypeM": "Selected issue type contains unsupported fields.",
"UnsupportedFieldsM": "There are unsupported fields",
"UnsupportedFilesInIssueM": "The selected issue contains unsupported fields.",
"WebUrl": "Web URL",
"WebhookCopiedM": "Webhook copied to clipboard",
"addNewM": "add new by Enter",
"draft": "draft",
"issueCountN": "no issues | one issue | {n} issues",
"typeToSearchM": "start type to search",
"validationErrors": {
"HostnameRequiredM": "Please fill in Web URL field",
"HostnameValidM": "URL should have http(s) protocol and doesn't support fake hostnames (like localhost), ?query or #hash",
"JiraIssueTypeRequiredM": "Please select Issue Type",
"JiraProjectKeyRequiredM": "Please select Project",
"NameRequiredM": "Please fill in name field",
"ServerNameRequiredM": "Please fill in Server name field",
"TokenRequiredM": "Please fill in credentials field",
"UsernameRequiredM": "Please fill in user credentials field",
"UsernameValidM": "Email should be valid",
"ValidationError": "Validation error:"
}
},
"issue": {
"AddAssigneeM": "Click above to add new assignees",
"AffectedAssets": "Affected assets",
"AllAssignedM": "All users have been invited to the project or assigned issues",
"AllIssues": "All Issues",
"Assign": "Assign",
"AssignIssues": "Assign issues",
"Attachments": "Attachments",
"Back": "Back",
"Cancel": "Cancel",
"Card": "Card",
"Comments": "Comments",
"CompatibleWith": "Compatible with",
"ConnectionError": "Connection error",
"Created": "Created",
"CriticalityShort": "Crit.",
"Csv": "CSV",
"DataExported": "Data was exported",
"DefaultIssueStatuses": "Default Issue Statuses",
"Delimiter": "Delimiter",
"DoubleQuote": "Double quote",
"DownloadAll": "Download all",
"EditorM": "He will be able to edit selected issues",
"EmailOrUsername": "Email or username",
"Encoding": "Encoding",
"EnterToSend": "{modifierSymbol}+Enter to send",
"ErrorFailedDeletingCommentM": "Failed deleting comment",
"ErrorFailedDeletingIssueM": "Failed deleting issue",
"ErrorFailedFetchingExternalCommentsM": "Failed fetching external comments",
"ErrorFailedFetchingIssueM": "Failed fetching issue",
"ErrorFailedFetchingIssueStatusHistoryM": "Failed fetching issue status history",
"ErrorFailedFetchingIssuesCountM": "Failed fetching issues count",
"ErrorFailedLoadingIssuesM": "Failed loading issues",
"ErrorFailedPostingNewCommentM": "Failed posting new comment",
"ErrorFailedSavingIssueM": "Failed saving issue",
"ErrorFailedToGetExportMetaInformationM": "Failed to get export meta-information",
"ErrorFailedUpdatingCommentM": "Failed updating comment",
"EscapeCharacter": "Escape character",
"Export": "Export",
"ExportCsv": "Export in CSV",
"Exporting": "Exporting...",
"FilePreviewUnavailableM": "File content preview is not available ¯\\_(ツ)_/¯",
"FileUploadNotImplementedSendQ": "File upload is not implemented yet, send message anyway?",
"Files": "Files",
"Format": "Format",
"HideSettings": "Hide advanced settings",
"Info": "Info",
"Issues": "Issues",
"IssuesSelectedN": "No issues selected | One issue selected | {n} issues selected",
"JiraTasks": "Jira tasks",
"LineTerminator": "Line terminator",
"Loading": "Loading",
"LoadingIssue": "Loading issue...",
"MakeEditor": "Make editor",
"MakeEditorQ": "Make user editor?",
"MakeReadOnly": "Make read-only",
"MakeReadOnlyQ": "Make user read-only?",
"MaxExportCountExceededM": "Only the first {maxCount} are available for export",
"MessageHere": "Message here…",
"Messages": "Messages",
"Next": "Next",
"No": "No",
"NoCommentsM": "You don't have any comments",
"NoDataAvailable": "No data available",
"NoUsersAssigned": "No assignees yet",
"NoUsersMatchM": "No users matching your search query",
"NoUsersMatchQueryM": "No users matching your search query \"{quickSearch}\"",
"NoUsersToAssignM": "No users for assignment",
"Noname": "Noname",
"Ok": "Ok",
"Previous": "Previous",
"ProbabilityShort": "Prob.",
"ProjectName": "[Project {projectName}]",
"QuoteCharacter": "Quote character",
"QuoteFields": "Quote fields",
"ReadOnlyM": "He will be able to view selected issues but not edit them",
"Retry": "Retry",
"Save": "Save",
"SaveAs": "Save as",
"ShowAll": "Show all ({items})",
"ShowLess": "Show less",
"ShowSettings": "Show advanced settings",
"StatusFixConfirmed": "Fix confirmed",
"StatusFixUnconfirmed": "Fix unconfirmed",
"StatusNewIssue": "New issue",
"StatusRetestRequired": "Retest required",
"Subset": "Subset",
"TableAssignee": "Assignee",
"TableAssigneeAndExport": "Assignee & Export",
"TableCriticality": "Criticality",
"TableCriticalityScore": "Criticality Score",
"TableHostnames": "Hostnames",
"TableIps": "IP addresses",
"TableIssue": "Issue",
"TableProbability": "Probability",
"TableProbabilityScore": "Probability Score",
"TableProject": "Project",
"TableScore": "Score",
"TableScoreShort": "S…",
"TableSla": "SLA",
"TableStatus": "Status",
"TableTask": "Task",
"TableTotalScore": "Total Score",
"TableView": "Table view",
"Task": "Task",
"Update": "Update",
"Yes": "Yes",
"canEdit": "can edit",
"canRead": "can read",
"card": "card",
"filesNumber": "{filesNumber} file(s)'",
"issueCountP": "issue | issues",
"mixed": "(mixed)",
"removeAssignee": "remove",
"unrecognizedRecord": "unrecognized record"
},
"layout": {
"About": "About",
"Admin": "Admin",
"Administration": "Administration",
"Agree": "Agree",
"AllProjects": "All projects",
"AltAppLogo": "{appName} logo",
"AltJiraLogo": "Jira Logo",
"AltUserAvatar": "{userLogin} avatar",
"AppConnections": "App connections",
"AreYouSureQ": "Are you sure?",
"Cancel": "Cancel",
"Checklists": "Checklists",
"ConfirmIntentionsM": "Please confirm your intentions",
"Copied": "Copied to clipboard",
"CopyToClipboard": "Copy to clipboard",
"Dashboard": "Dashboard",
"DefaultStatuses": "Default statuses",
"DownloadReport": "Download report",
"EmptyView": "Empty View",
"Help": "Help",
"Integrations": "Integrations",
"Issues": "Issues",
"JiraServers": "Jira servers",
"Ldap": "LDAP",
"License": "License",
"LogOut": "Log out",
"NotFound": "Not found.",
"NotFound404": "404 Not Found",
"NothingYetM": "There is nothing here yet :(",
"PinSidebar": "Pin sidebar",
"Profile": "Profile",
"Project": "Project",
"Projects": "Projects",
"ReportTemplates": "Report templates",
"SelectProject": "Select project",
"Settings": "Settings",
"Sla": "SLA",
"Smtp": "SMTP",
"Team": "Team",
"Today": "Today",
"TokenCopiedM": "Token's been copied to clipboard",
"Tomorrow": "Tomorrow",
"UnpinSidebar": "Unpin sidebar",
"Users": "Users",
"Welcome": "Welcome",
"Yesterday": "Yesterday",
"altIssueType": "issue type",
"emailContact": "contact@hexway.io",
"emailSupport": "support@hexway.io",
"fallbackMessage": "Something has gone wrong :("
},
"license": {
"AddItems": " + Add {itemName}",
"Advanced": "Advanced",
"AlreadyHaveMaximumM": "You already have the maximum number of {featureName}.",
"Basic": "Basic",
"ClientName": "Client name",
"ComparisonPlans": "Comparison plans",
"ContactUs": "Contact us",
"ContactUsToExpand": "Contact us to expand it",
"CurrentPlan": "Current plan",
"Delete": "Delete",
"DeleteLicenseImmediateM": "This action is immediate and cannot be reverted",
"DeleteLicenseQ": "Delete license?",
"EmailAtM": "To expand it, please email us at ",
"EndDate": "End date",
"ErrorDeletingLicenseM": "Error deleting license",
"ErrorFetchingActiveLicenseM": "Error fetching active license",
"ErrorFetchingLicenseInfoM": "Error fetching license info",
"ErrorUploadingNewLicenseM": "Error uploading a new license",
"Feature": "Feature",
"FeatureUnavailableM": "This feature is not available in your current plan.",
"FeaturesUsed": "Features used",
"GetFeature": "Get feature",
"License": "License",
"LicenseExpirationM": "Your license {expiration}",
"LicenseTypePlan": "{licenseType} plan",
"NotNow": "Not now",
"OnPrem": "OnPrem",
"PerUser": "Per user",
"PriceInfoCorporate": "Request price",
"PriceInfoPentest": "$78 monthly",
"Professional": "Professional",
"RenewLicenseToGetItemsBackM": "Renew license to get {expiredMaxCount} {name} back",
"ReplaceFile": "Replace license file",
"ShowMore": "Show more",
"StartDate": "Start date",
"Unlimited": "Unlimited",
"UpgradeToUseM": "This can always upgrade your plan to use {featureName}.",
"UploadFile": "Upload license file",
"UploadLicense": "Upload license",
"Used": "Used",
"YouReachedM": "You’ve reached your",
"community": "community",
"enterprise": "enterprise",
"hasExpired": "has expired",
"limitOf": " limit of {featureName}",
"limits": "limits",
"pentest": "pentest",
"perProject": "per project",
"plan": "plan",
"planFeature": {
"ApiCount": "API",
"ApiaryReportCount": "Apiary report generator",
"ApplicationCount": "Applications",
"BotUsersCount": "Apiary bot users",
"ChecklistCount": "Checklists",
"CredentialsCount": "Credentials",
"CrossProjectDashboardCount": "Cross-project dashboard",
"CustomReportBrandCount": "Custom branded reports",
"DashboardsCount": "Project dashboard",
"DeploymentsCount": "Deployments",
"HiveReportCount": "Hive report generator",
"ImportFromToolsCount": "Import from tools",
"IssueCustomFieldsCount": "Issue custom fields",
"IssueSchemaCount": "Issue schema",
"IssueTemplatesCount": "Issue templates",
"IssuesCount": "Issues",
"JiraCount": "Jira integration",
"LdapCount": "LDAP integration",
"MfaCount": "MFA",
"NotesCount": "Notes",
"NotificationsCount": "Notifications",
"ProjectCount": "Projects",
"ReportTemplateServiceCount": "Report template creation service",
"SnapshotCount": "Scan comparisons",
"SupportCount": "Support",
"TagsCount": "Tags",
"UserCount": "Seats"
},
"unlimited": "unlimited",
"unlimitedNumberOf": "unlimited number of",
"willExpire": "will expire"
},
"notification": {
"DeletedCommentJira": "Deleted Jira comment",
"EmailDeletedCommentJira": "E-mail Deleted Jira comment",
"EmailIssueStatusChange": "E-mail Issue Status Change",
"EmailNewCommentJira": "E-mail New comment to Jira",
"EmailNewIssue": "E-mail New Issue",
"EmailNewMessage": "E-mail New Message",
"EmailNotifications": "E-mail notifications",
"EmailUpdatedCommentJira": "E-mail Updated Jira comment",
"ErrorFetchingNotificationsM": "Error fetching notifications",
"ErrorProcessingNotificationM": "Error processing notification",
"Events": "Events",
"IssueStatusChange": "Issue Status Change",
"MarkAllRead": "Mark all as read",
"NewCommentJira": "New comment to Jira",
"NewIssue": "New Issue",
"NewMessage": "New Message",
"NewNotificationsApiaryM": "New unread notifications in Apiary",
"Notifications": "Notifications",
"Settings": "Settings",
"UpdatedCommentJira": "Updated Jira comment",
"WebNotifications": "Web notifications",
"newNotificationN": "No new notifications | 1 new notification | {n} new notifications",
"off": "off",
"on": "on"
},
"project": {
"ActionImmediateM": "This action is immediate and cannot be reverted",
"AddProjectOrGroupM": "Add your project or group",
"AllInvitedM": "All users have already been invited to the project",
"ApiaryMembers": "Apiary @:project.members",
"ApiaryProjectTeam": "Apiary @:project.projectTeam",
"AppConnectionNewProject": "New project of \"{appConnectionName}\"",
"BreakConnection": "Break connection",
"Cancel": "Cancel",
"ChangeCounterpartTeamM": "Once project is created, the team can only be changed in Hive",
"ChangeOwner": "Change",
"ChangeOwnerM": "User will replace the current owner of the project",
"ChangeOwnerQ": "Change project owner?",
"Completion": "Completion",
"ConnectToHive": "Connect to Hive",
"ConnectedToHive": "Connected to Hive",
"ConnectionError": "Connection error",
"ConnectionId": "Connection ID {connectionID}",
"Create": "Create",
"CreateGroup": "Create group",
"CreateProject": "Create project",
"Delete": "Delete",
"DeleteGroupQ": "Delete group?",
"DeleteProjectQ": "Delete project?",
"Description": "Description",
"Disconnect": "Disconnect",
"DisconnectProjectQ": "Disconnect project?",
"EditGroup": "Edit group",
"EditProject": "Edit project",
"EditorM": "He will gain access to all issues in the project",
"ErrorConnectionNotLoadedM": "Connection is not loaded",
"ErrorFailedCreatingProjectGroupM": "Failed creating project group",
"ErrorFailedDeletingProjectGroupM": "Failed deleting project group",
"ErrorFailedFetchingProjectGroupM": "Failed fetching project group",
"ErrorFailedFetchingProjectGroupTreeM": "Failed fetching project group tree",
"ErrorFailedUpdatingProjectGroupM": "Failed updating project group",
"ErrorParentGroupNotLoadedM": "Parent group #{parentId} is not loaded, cannot get group path",
"Group": "Group",
"GroupName": "Group name",
"HiveMembers": "Hive @:project.members",
"HiveProjectTeam": "Hive @:project.projectTeam",
"Info": "Info",
"InvitePeople": "Invite people (email or username)",
"Leave": "Leave",
"LeaveProject": "Leave project",
"LeaveProjectQ": "Leave project?",
"LoadingRemoteMembersM": "Loading Hive members",
"Location": "Location",
"LocationApiary": "Location in Apiary",
"MakeEditor": "Make editor",
"MakeEditorQ": "Make user editor?",
"Member": "Member",
"MobileAppSecurityAnalisys": "Mobile App Security analisys",
"MoreMembersN": "No more members | +1 member | {n} more members",
"NameAsterisk": "Name *",
"NewProject": "New project",
"Next": "Next",
"NoProjectsM": "You don't have any projects",
"NoUsersMatchM": "No users matching your search query",
"NoUsersMatchQueryM": "The are no users matching \"{quickSearch}\"",
"NoUsersToInviteM": "No users to invite",
"OwnerName": "Owner: {ownerDisplayName}",
"Pentest": "Pentest",
"Project": "Project",
"ProjectDescription": "Project description",
"ProjectDescriptionOptional": "Description @:project.optional",
"ProjectDetails": "Project details",
"ProjectEditingRestrictedM": "Only the owner or the admin can edit the project",
"ProjectName": "Project name",
"ProjectTeam": "Project team",
"ProjectType": "Project type",
"ProjectTypeOptional": "Type @:project.optional",
"ProjectWillBeUnaccessibleM": "You will be unable to access this project anymore",
"Projects": "Projects",
"Retry": "Retry",
"Save": "Save",
"SaveProject": "Save project",
"Scope": "Scope",
"ScopeOptional": "Scope @:project.optional",
"SearchByM": "Search by folder or project name",
"SearchGroup": "Search group",
"SecurityAudit": "Security Audit",
"SelectAppConnection": "Select app connection",
"Start": "Start",
"StartEnd": "Start-End",
"SynchronizationDisabledM": "Synchronization with Hive will be disabled",
"TableEnd": "End",
"TableName": "Name",
"TableStart": "Start",
"TableTeam": "Team",
"TableType": "Type",
"Team": "Team",
"assignee": "assignee",
"editor": "editor",
"fixErrorsM": "Please fix the errors",
"members": "members",
"optional": "(optional)",
"owner": "owner",
"projectTeam": "project team",
"readOnly": "read-only",
"removeMember": "remove",
"validationErrors": {
"CompletionDateIsAfter": "Completion should be after start",
"CompletionDateRequired": "Please fill in completion date field",
"NameMaxLength": "Name must be at most 128 symbols long",
"NameRequired": "Please fill in name field",
"StartDateRequired": "Please fill in start date field",
"ValidationError": "Validation error:"
}
},
"report": {
"Author": "Author",
"Cancel": "Cancel",
"Debug": "Debug",
"Delete": "Delete",
"DeleteTemplateQ": "Delete template?",
"Download": "Download",
"DownloadReport": "Download report",
"ErrorExpectedReportTemplateM": "Expected ReportTemplate, got something else",
"GeneratingReport": "Generating report...",
"IGotIt": "I got it",
"IssueStatus": "Issue status",
"NoDataAvailable": "No data available",
"RenderDebugTagsM": "Render debug tags, debug tags look like: {? expression }",
"ReportDownloaded": "Report was downloaded",
"ReportTemplate": "Report template",
"ReportTemplateName": "Report template \"{fileName}\"",
"ReportTemplates": "Report Templates",
"SelectStatus": "Select status",
"SelectTemplate": "Select template",
"SetupTocAndPaginationM": "To set up TOC and page numbering in MS Word correctly, {0} press {1}+A then F9 and select \"Update entire table\"",
"Template": "Template",
"UploadTemplate": "Upload template",
"Uploaded": "Uploaded",
"downloading": "downloading..."
},
"service": {
"ActionImmediateM": "This action is immediate and cannot be reverted",
"AdminGroupDn": "Admin Group DN",
"Authentication": "Authentication",
"BaseDn": "Base DN",
"BlockedGroupDn": "Blocked Group DN",
"Cancel": "Cancel",
"ConfigureLdap": "Configure LDAP",
"Connection": "Connection",
"ConnectionEstablished": "Connection established",
"ConnectionFailed": "Connection failed",
"ConnectionNotTestedM": "Connection has not been tested and is not guaranteed to work properly, proceed with caution",
"ConnectionSecurity": "Connection security",
"ConnectionWillBeUsedM": "Connection will be used for future authentications",
"Delete": "Delete",
"DeleteSmtpConfigQ": "Delete SMTP config?",
"DisableLdapQ": "Disable LDAP?",
"EditConfig": "Edit config",
"EditorGroupDn": "Editor Group DN",
"EmailAttribute": "E-Mail Attribute",
"ErrorConnection": "Connection error",
"FirstNameAttribute": "First Name Attribute",
"From": "From",
"Host": "Host",
"LastNameAttribute": "Last Name Attribute",
"Ldap": "LDAP",
"LdapConnection": "LDAP Connection",
"LdapPort": "LDAP Port",
"LdapProtocol": "LDAP Protocol",
"LdapSettings": "LDAP Settings",
"LocalAuthAvailableM": "Only local authentication will be possible",
"LoginAttribute": "Login Attribute",
"Message": "Message",
"NotificationsFromM": "You'll be receiving notifications from this email",
"ObjectClass": "Object Class",
"Off": "Off",
"On": "On",
"Password": "Password",
"Port": "Port",
"ReadonlyGroupDn": "Readonly Group DN",
"RemoveLdapConfigM": "LDAP configuration will be wiped",
"RemoveLdapConfigQ": "Remove LDAP configuration?",
"ResendTestEmail": "Resend test e-mail",
"Save": "Save",
"SaveAnyway": "Save anyway",
"SaveConfigurationQ": "Save configuration?",
"SendTestEmail": "Send test e-mail",
"ServiceLogin": "Service Login",
"ServicePassword": "Service Password",
"SimpleMailTransferProtocol": "Simple Mail Transfer Protocol",
"Smtp": "SMTP",
"SmtpConfig": "SMTP config",
"SmtpDeletedSuccessM": "SMTP was successfully deleted",
"Subject": "Subject",
"TableBaseDn": "BaseDN",
"TableDn": "DN",
"TableEmail": "Email",
"TableGroups": "Groups",
"TableHost": "Host",
"TableIsAdmin": "Is admin",
"TableIsBlocked": "Is blocked",
"TableLastName": "Last Name",
"TableLogin": "Login",
"TableName": "Name",
"TablePort": "Port",
"TestConnection": "Test connection",
"TestEmailM": "Test e-mail configuration",
"TestEmailSentToM": "Test e-mail will be sent to this address",
"TestEmailSentToSuccessM": "Test e-mail sent to {email} successfully",
"TestingConnection": "Testing connection…",
"To": "To",
"Total": "Total",
"UserFilter": "User Filter",
"UserMapping": "User mapping",
"Username": "Username",
"Users": "Users",
"loginUser": "login_user",
"recordsN": "no records | 1 record | {n} records",
"validationErrors": {
"AdminGroupDnFormat": "Invalid DN format",
"AdminLoginRequired": "Administrator Login is required",
"AdminPasswordRequired": "Administrator Password is required",
"BaseDnFormat": "Invalid DN format",
"BaseDnRequired": "Base DN is required",
"BlockedGroupDnFormat": "Invalid DN format",
"EditorGroupDnFormat": "Invalid DN format",
"FirstNameRequired": "First Name Attribute is required",
"FromAddressEmail": "Email must be valid",
"FromAddressRequired": "From address is required",
"HostRequired": "Host is required",
"LastNameRequired": "Last Name Attribute is required",
"MessageRequired": "Message is required",
"ObjectClassRequired": "Object Class is required",
"PasswordRequired": "Password is required",
"PortPositive": "Port must be positive",
"PortRequired": "Port is required",
"ProtocolRequired": "Protocol is required",
"ReadonlyGroupDnFormat": "Invalid DN format",
"SubjectRequired": "Subject is required",
"ToAddressEmail": "Email must be valid",
"ToAddressRequired": "To address is required",
"UserEmailRequired": "E-Mail Attribute is required",
"UserFilterFormat": "Invalid LDAP filter format",
"UserFilterRequired": "User Filter is required",
"UserLoginRequired": "Login Attribute is required",
"UsernameRequired": "Username is required",
"ValidationError": "Validation error:"
}
},
"shared": {
"aboutModal": {
"AllFeatures": "All {platformName} features available",
"CheckNewM": "Check new product version",
"CreatedBy": "Created by",
"EmailUsAtM": "If you have any questions or want to upgrade your plan, please feel free to email us at {0}",
"EqualVersionM": "You are using the latest version",
"LearnFeatures": "Learn available features",
"MaximumProjectsM": "Maximum number of projects: {maxProjects}",
"MaximumUsersM": "Maximum number of users: {maxUsers}",
"NameVersion": "{planName} version",
"NewVersionM": "New version available: {versionOnServer}",
"PlatformHelpCenter": "{platformName} help center",
"Version": "Version {version}",
"altPlatformName": "{platformName} logo",
"errorOcurredM": "An error occurred while checking the version.",
"unlimited": "unlimited"
},
"connectionStatus": {
"Connected": "Connected",
"ConnectionError": "Connection error",
"ConnectionSuccessful": "Connection successful",
"Copied": "Copied to clipboard",
"Disconnected": "Disconnected",
"ErrorNotInstigatorM": "You cannot receive connection information. Contact the party that initiated the connection",
"LoadStatusM": "Load connection status...",
"NoResponseForM": "No response from the {platformName} side for {duration} minutes",
"Pending": "Pending",
"UnnamedConnection": "Unnamed connection",
"UploadFileM": "Upload the configuration file to {platformName}"
},
"issueStatus": {
"Add": "Add",
"AddNew": "Add new",
"Cancel": "Cancel",
"ChangeStatusToRemoveM": "To remove this status you must \nchange issues' status",
"DescriptionBrigDraftM": "Issue is in progress",
"DescriptionBrigFixConfirmedM": "Issue was fixed. Issue status will change automatically\n to \"{statusLookup.fix_confirmed.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"DescriptionBrigFixUnconfirmedM": "Issue was not fixed. Issue status will change automatically\n to \"{statusLookup.fix_unconfirmed.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"DescriptionBrigReadyM": "Issue is ready. When choosing this status issue will be\n automatically sent to \"{counterpartPlatform.displayName}\"",
"DescriptionBrigRetestRequiredM": "Retest required. This status will be set automatically\n when issue status in \"{counterpartPlatform.displayName}\" changes to \"{statusLookup.retest_required.displayName}\"",
"DescriptionBrigVerifiedM": "Issue was checked and approved",
"DescriptionFrigateAwaitingRetestM": "Retest required. Issue status will change automatically\n to \"{statusLookup.awaiting_retest.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"DescriptionFrigateFixConfirmedM": "Issue was fixed. This status will be set automatically\n when issue status in \"{counterpartPlatform.displayName}\" changes to \"{statusLookup.fix_confirmed.displayName}\"",
"DescriptionFrigateFixUnconfirmedM": "Issue was not fixed. This status will be set automatically\n when issue status in \"{counterpartPlatform.displayName}\" changes to \"{statusLookup.fix_unconfirmed.displayName}\"",
"DescriptionFrigateNewIssueM": "You have a new issue.",
"DescriptionFrigateRetestRequiredM": "Retest required. Issue status will change automatically\n to \"{statusLookup.retest_required.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"DescriptionVampyAwaitingRetestM": "Retest required. Issue status will change automatically\n to \"{statusLookup.awaiting_retest.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"DescriptionVampyFixConfirmedM": "Issue was fixed. This status will be set automatically\n when issue status in \"{counterpartPlatform.displayName}\" changes to \"{statusLookup.fix_confirmed.displayName}\"",
"DescriptionVampyFixUnconfirmedM": "Issue was not fixed. This status will be set automatically\n when issue status in \"{counterpartPlatform.displayName}\" changes to \"{statusLookup.fix_unconfirmed.displayName}\"",
"DescriptionVampyNewIssueM": "You have a new issue.",
"DescriptionVampyRetestRequiredM": "Retest required. Issue status will change automatically\n to \"{statusLookup.retest_required.displayName}\" for this issue in \"{counterpartPlatform.displayName}\"",
"HistoryChanges": "History of changes",
"IssueSyncInM": "This status can be obtained from \"{counterpartPlatform.displayName}\"",
"IssueSyncOutM": "This status will change status in \"{counterpartPlatform.displayName}\"",
"Manage": "Manage",
"ManageDefaultStatuses": "Manage default statuses",
"ManageStatusIn": "Manage statuses in {name}",
"ManageStatuses": "Manage statuses",
"Rename": "Rename",
"Save": "Save",
"StatusExistsM": "Such status already exists, updated its name and icon",
"StatusRequirementsM": "Please, use some characters and/or numbers for your status",
"SyncStatusChangedM": "Will be sent to \"{counterpartPlatform.displayName}\" soon",
"SyncStatusErrorM": "Failed to send to \"{counterpartPlatform.displayName}\"\nTry again later",
"SyncStatusReceivedM": "Has been successfully sent to \"{counterpartPlatform.displayName}\"",
"SyncStatusSentM": "Is being sent to \"{counterpartPlatform.displayName}\"",
"issueCountN": "no issues | 1 issue | {n} issues",
"newStatus": "new status"
},
"layout": {
"Action": "Action",
"Cancel": "Cancel",
"Close": "Close",
"Today": "Today",
"Tomorrow": "Tomorrow",
"Yesterday": "Yesterday",
"emailContact": "contact@hexway.io",
"emailSupport": "support@hexway.io"
},
"license": {
"community": "community",
"enterprise": "enterprise",
"pentest": "pentest"
}
},
"sla": {
"ApplyForFutureOnlyM": "Apply for future issues only",
"Critical": "Critical",
"DaysToRemediate": "Amount of days to remediate",
"ErrorFailedResettingProjectSlaSettings": "Failed resetting project SLA settings",
"ErrorFailedSettingProjectSlaSettings": "Failed setting project SLA settings",
"ErrorFetchingGlobalSlaSettings": "Error fetching global SLA settings",
"ErrorFetchingProjectSlaSettings": "Error fetching project SLA settings",
"ErrorSettingGlobalSlaSettings": "Error setting global SLA settings",
"ExceptManuallyChangedAndFixConfirmedM": "Except the ones with manually changed SLA {0} and issues with \"Fix confirmed\" status",
"High": "High",
"Info": "Info",
"IssueScore": "Issue score",
"Low": "Low",
"Medium": "Medium",
"NoSla": "No SLA",
"None": "None",
"OverdueRemediateTillM": "Overdue. Should've remediated till {date}",
"OverdueRemediatedM": "Overdue. Remediated on {date}",
"Recalculate": "Recalculate",
"RecalculateAllM": "Recalculate each issue SLA from all projects",
"RecalculateThisM": "Recalculate each issue SLA from this project",
"RemediateTill": "To remediate till",
"RemediateTillM": "To remediate till {date}",
"RemediatedOnTimeM": "Remediated on time on {date}",
"Reset": "Reset",
"ResetToDefault": "Reset to default",
"Save": "Save",
"ServiceLevelAgreement": "Service Level Agreement",
"Sla": "SLA",
"SlaChangedManually": "SLA changed manually",
"SoonToIverdueM": "Soon to be overdue. To remediate till {date}",
"Undefined": "Undefined",
"off": "off",
"on": "on"
},
"user": {
"Accepted": "Accepted",
"Actions": "Actions",
"Admin": "Admin",
"AppStore": "App Store",
"AuthenticatorApps": "Authenticator apps",
"Back": "Back",
"Block": "Block",
"BlockUserQ": "Block user?",
"Blocked": "Blocked",
"BotUser": "Bot user",
"BotUserLogin": "Bot user \"{userLogin}\"",
"Cancel": "Cancel",
"CheckMfaM": "Check your authenticator app then enter code from app below to sign in",
"ClickToDisableM": "On. Click to disable",
"ClickToEnable": "Click to enable",
"Create": "Create",
"CreateBotUser": "Create bot user",
"CreateRegularUser": "Create regular user",
"DeclineUserQ": "Decline user?",
"Delete": "Delete",
"DeleteBot": "Delete",
"DeleteBotQ": "Delete bot?",
"DeleteBotUser": "Delete bot user",
"DeleteBotUserQ": "Delete bot user?",
"DeleteBotWarningM": "The bot will be deleted immediately, you cannot undo this action",
"DeleteUserQ": "Delete user?",
"DemoUserLogin": "Login: {userLogin}",
"DemoUserPassword": "Password: {userPassword}",
"DemoUsers": "Demo Users",
"DisablSecurityCodeQ": "Disable security code?",
"Disabled": "Disabled",
"Editor": "Editor",
"Email": "Email",
"ErrorFetchingUserRolesM": "Error fetching user roles",
"FirstName": "First name",
"GooglePlay": "Google Play",
"GotIt": "Got it!",
"InstallAppM": "You need to install a mobile authenticator app. We can recommend {0}",
"Language": "Language",
"LastName": "Last name",
"LdapLogin": "LDAP login",
"Login": "Login",
"LoseAdminPrivilegesM": "You will lose admin privileges and will be unable to manage system.",
"ManageUsers": "Manage Users",
"MfaConfigurationCancelled": "MFA configuration cancelled",
"NewBot": "New bot",
"NewUser": "New user",