-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathen.json
More file actions
4946 lines (4946 loc) · 143 KB
/
Copy pathen.json
File metadata and controls
4946 lines (4946 loc) · 143 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
{
"init": {
"step": {
"start": {
"title": "Welcome to Homarr",
"subtitle": "Let's get started with setting up your Homarr instance.",
"description": "To get started, please select how you want to set up your Homarr instance.",
"action": {
"scratch": "Start from scratch",
"importOldmarr": "Import from Homarr before 1.0"
}
},
"import": {
"title": "Import data",
"subtitle": "You can import data from an existing Homarr instance.",
"dropzone": {
"title": "Drag the zip file here or click to browse",
"description": "The uploaded zip will be processed and you'll be able to select what you want to import"
},
"fileInfo": {
"action": {
"change": "Change file"
}
},
"importSettings": {
"title": "Import settings",
"description": "Configure the import behavior"
},
"boardSelection": {
"title": "Found {count} boards",
"description": "Choose all boards with the size you want to import",
"action": {
"selectAll": "Select all",
"unselectAll": "Unselect all"
}
},
"summary": {
"title": "Import summary",
"description": "In the below summary you can see what will be imported",
"action": {
"import": "Confirm import and continue"
},
"entities": {
"apps": "Apps",
"boards": "Boards",
"integrations": "Integrations",
"credentialUsers": "Credential users"
}
},
"tokenModal": {
"title": "Enter import token",
"field": {
"token": {
"label": "Token",
"description": "Enter the shown import token from your previous homarr instance"
}
},
"notification": {
"error": {
"title": "Invalid token",
"message": "The token you entered is invalid"
}
}
}
},
"user": {
"title": "Admin user",
"subtitle": "Specify the credentials for your administrator user.",
"notification": {
"success": {
"title": "User created",
"message": "The user was successfully created"
},
"error": {
"title": "User creation failed"
}
}
},
"group": {
"title": "External group",
"subtitle": "Specify the group that should be used for external users.",
"form": {
"name": {
"label": "Group name",
"description": "Name has to match admin group of external provider"
}
}
},
"settings": {
"title": "Settings",
"subtitle": "Configure server settings."
},
"finish": {
"title": "Finish setup",
"subtitle": "You are ready to go!",
"description": "You have successfully completed the setup process. You can now start using Homarr. Select your next action:",
"action": {
"goToBoard": "Go to {name} board",
"createBoard": "Create your first board",
"inviteUser": "Invite other users",
"docs": "Read the documentation"
}
}
},
"backToStart": "Back to start"
},
"user": {
"title": "Users",
"name": "User",
"page": {
"login": {
"title": "Log in to your account",
"subtitle": "Welcome back! Please enter your credentials"
},
"invite": {
"title": "Join Homarr",
"subtitle": "Welcome to Homarr! Please create your account",
"description": "You were invited by {username}"
},
"init": {
"title": "New Homarr installation",
"subtitle": "Please create the initial administrator user"
}
},
"field": {
"email": {
"label": "E-Mail",
"verified": "Verified"
},
"username": {
"label": "Username"
},
"password": {
"label": "Password",
"requirement": {
"length": "Includes at least 8 characters",
"lowercase": "Includes lowercase letter",
"uppercase": "Includes uppercase letter",
"number": "Includes number",
"special": "Includes special symbol"
}
},
"passwordConfirm": {
"label": "Confirm password"
},
"previousPassword": {
"label": "Previous password"
},
"homeBoard": {
"label": "Home board"
},
"pingIconsEnabled": {
"label": "Use icons for pings"
},
"defaultSearchEngine": {
"label": "Default search engine"
},
"openSearchInNewTab": {
"label": "Open search results in new tab"
},
"ddgBangs": {
"label": "Enable DuckDuckGo bangs"
}
},
"error": {
"usernameTaken": "Username already taken"
},
"action": {
"login": {
"label": "Login",
"labelWith": "Login with {provider}",
"notification": {
"success": {
"title": "Login successful",
"message": "You are now logged in"
},
"error": {
"title": "Login failed",
"message": "Your login failed"
}
},
"forgotPassword": {
"label": "Forgotten your password?",
"description": "An administrator can use the following command to reset your password:"
}
},
"register": {
"label": "Create account",
"notification": {
"success": {
"title": "Account created",
"message": "Please log in to continue"
},
"error": {
"title": "Account creation failed",
"message": "Your account could not be created"
}
}
},
"create": "Create user",
"changePassword": {
"label": "Change password",
"notification": {
"success": {
"message": "Password changed successfully"
},
"error": {
"message": "Unable to change password"
}
}
},
"changeHomeBoard": {
"notification": {
"success": {
"message": "Home board changed successfully"
},
"error": {
"message": "Unable to change home board"
}
}
},
"changeSearchPreferences": {
"notification": {
"success": {
"message": "Search preferences changed successfully"
},
"error": {
"message": "Unable to change search preferences"
}
}
},
"changeFirstDayOfWeek": {
"notification": {
"success": {
"message": "First day of week changed successfully"
},
"error": {
"message": "Unable to change first day of week"
}
}
},
"changePingIconsEnabled": {
"notification": {
"success": {
"message": "Ping icons toggled successfully"
},
"error": {
"message": "Unable to toggle ping icons"
}
}
},
"changeDdgBangs": {
"notification": {
"success": {
"message": "DuckDuckGo bangs toggled successfully"
},
"error": {
"message": "Unable to toggle DuckDuckGo bangs"
}
}
},
"manageAvatar": {
"changeImage": {
"label": "Change image",
"notification": {
"success": {
"message": "The image changed successfully"
},
"error": {
"message": "Unable to change image"
},
"toLarge": {
"title": "Image is too large",
"message": "Max image size is {size}"
}
}
},
"removeImage": {
"label": "Remove image",
"confirm": "Are you sure you want to remove the image?",
"notification": {
"success": {
"message": "Image removed successfully"
},
"error": {
"message": "Unable to remove image"
}
}
}
},
"editProfile": {
"notification": {
"success": {
"message": "Profile updated successfully"
},
"error": {
"message": "Unable to update profile"
}
}
},
"delete": {
"label": "Delete user permanently",
"description": "Deletes this user including their preferences. Will not delete any boards. User will not be notified.",
"confirm": "Are you sure, that you want to delete the user {username} with his preferences?"
},
"select": {
"label": "Select user",
"notFound": "No user found"
},
"transfer": {
"label": "Select new owner"
}
}
},
"group": {
"title": "Groups",
"name": "Group",
"search": "Find a group",
"field": {
"name": "Name",
"members": "Members",
"homeBoard": {
"label": "Home board",
"description": "Only boards accessible to the group can be selected"
},
"mobileBoard": {
"label": "Mobile board",
"description": "Only boards accessible to the group can be selected"
}
},
"permission": {
"admin": {
"title": "Admin",
"item": {
"admin": {
"label": "Administrator",
"description": "Members with this permission have full access to all features and settings"
}
}
},
"app": {
"title": "Apps",
"item": {
"create": {
"label": "Create apps",
"description": "Allow members to create apps"
},
"use-all": {
"label": "Use all apps",
"description": "Allow members to add any apps to their boards"
},
"modify-all": {
"label": "Modify all apps",
"description": "Allow members to modify all apps"
},
"full-all": {
"label": "Full app access",
"description": "Allow members to manage, use and delete any app"
}
}
},
"board": {
"title": "Boards",
"item": {
"create": {
"label": "Create boards",
"description": "Allow members to create boards"
},
"view-all": {
"label": "View all boards",
"description": "Allow members to view all boards"
},
"modify-all": {
"label": "Modify all boards",
"description": "Allow members to modify all boards (Does not include access control and danger zone)"
},
"full-all": {
"label": "Full board access",
"description": "Allow members to view, modify, and delete all boards (Including access control and danger zone)"
}
}
},
"integration": {
"title": "Integrations",
"item": {
"create": {
"label": "Create integrations",
"description": "Allow members to create integrations"
},
"use-all": {
"label": "Use all integrations",
"description": "Allows members to add any integrations to their boards"
},
"interact-all": {
"label": "Interact with any integration",
"description": "Allow members to interact with any integration"
},
"full-all": {
"label": "Full integration access",
"description": "Allow members to manage, use and interact with any integration"
}
}
},
"media": {
"title": "Medias",
"item": {
"upload": {
"label": "Upload medias",
"description": "Allow members to upload medias"
},
"view-all": {
"label": "View all medias",
"description": "Allow members to view all medias"
},
"full-all": {
"label": "Full media access",
"description": "Allow members to manage and delete any media"
}
}
},
"other": {
"title": "Other",
"item": {
"view-logs": {
"label": "View logs",
"description": "Allow members to view logs"
}
}
},
"search-engine": {
"title": "Search engines",
"item": {
"create": {
"label": "Create search engines",
"description": "Allow members to create search engines"
},
"modify-all": {
"label": "Modify all search engines",
"description": "Allow members to modify all search engines"
},
"full-all": {
"label": "Full search engine access",
"description": "Allow members to manage and delete any search engine"
}
}
}
},
"memberNotice": {
"mixed": "Some members are from external providers and cannot be managed here",
"external": "All members are from external providers and cannot be managed here"
},
"reservedNotice": {
"message": "This group is reserved for system use and restricts some actions. <checkoutDocs></checkoutDocs>"
},
"action": {
"create": {
"label": "New group",
"notification": {
"success": {
"message": "The group was successfully created"
},
"error": {
"message": "The group could not be created"
}
}
},
"transfer": {
"label": "Transfer ownership",
"description": "Transfer ownership of this group to another user.",
"confirm": "Are you sure you want to transfer ownership for the group {name} to {username}?",
"notification": {
"success": {
"message": "Transfered group {group} successfully to {user}"
},
"error": {
"message": "Unable to transfer ownership"
}
}
},
"addMember": {
"label": "Add member"
},
"removeMember": {
"label": "Remove member",
"confirm": "Are you sure you want to remove {user} from this group?"
},
"delete": {
"label": "Delete group",
"description": "Once you delete a group, there is no going back. Please be certain.",
"confirm": "Are you sure you want to delete the group {name}?",
"notification": {
"success": {
"message": "Deleted group {name} successfully"
},
"error": {
"message": "Unable to delete group {name}"
}
}
},
"changePermissions": {
"notification": {
"success": {
"title": "Permissions saved",
"message": "Permissions have been saved successfully"
},
"error": {
"title": "Permissions not saved",
"message": "Permissions have not been saved"
}
}
},
"update": {
"notification": {
"success": {
"message": "The group {name} was saved successfully"
},
"error": {
"message": "Unable to save group {name}"
}
}
},
"select": {
"label": "Select group",
"notFound": "No group found"
},
"settings": {
"board": {
"notification": {
"success": {
"title": "Settings saved",
"message": "Board settings saved successfully"
},
"error": {
"title": "Failed to save settings",
"message": "Unable to save board settings"
}
}
}
},
"changePosition": {
"notification": {
"success": {
"message": "Position changed successfully"
},
"error": {
"message": "Unable to change position"
}
}
}
},
"defaultGroup": {
"name": "Default group",
"description": "{name} - All signed in users"
}
},
"app": {
"search": "Find an app",
"page": {
"list": {
"title": "Apps",
"noResults": {
"title": "There are no apps yet",
"action": "Create your first app"
}
},
"create": {
"title": "New app",
"notification": {
"success": {
"title": "Creation successful",
"message": "The app was successfully created"
},
"error": {
"title": "Creation failed",
"message": "The app could not be created"
}
}
},
"edit": {
"title": "Edit app",
"notification": {
"success": {
"title": "Changes applied successfully",
"message": "The app was successfully saved"
},
"error": {
"title": "Unable to apply changes",
"message": "The app could not be saved"
}
}
},
"delete": {
"title": "Delete app",
"message": "Are you sure you want to delete the app {name}?",
"notification": {
"success": {
"title": "Deletion successful",
"message": "The app was successfully deleted"
},
"error": {
"title": "Deletion failed",
"message": "Unable to delete the app"
}
}
}
},
"field": {
"name": {
"label": "Name"
},
"description": {
"label": "Description"
},
"url": {
"label": "Url"
},
"useDifferentUrlForPing": {
"checkbox": {
"label": "Use different URL for ping",
"description": "Useful if Homarr can directly access using an internal hostname or network to avoid bandwidth usage of ISP"
}
}
},
"action": {
"select": {
"label": "Select app",
"notFound": "No app found",
"search": "Search for an app",
"noResults": "No results",
"action": "Select {app}",
"title": "Select an app to add to this board"
},
"create": {
"title": "Create new app",
"description": "Create a new app ",
"action": "Open app creation"
},
"add": "Add an app"
}
},
"integration": {
"page": {
"list": {
"title": "Integrations",
"search": "Search integrations",
"noResults": {
"title": "There are no integrations yet"
}
},
"create": {
"title": "New {name} integration",
"notification": {
"success": {
"title": "Creation successful",
"message": "The integration was successfully created"
},
"error": {
"title": "Creation failed",
"message": "The integration could not be created"
}
},
"app": {
"option": {
"existing": {
"title": "Existing",
"label": "Select existing app"
},
"new": {
"title": "New",
"url": {
"label": "App url",
"description": "The url the app will open when accessed from the dashboard"
}
}
}
}
},
"edit": {
"title": "Edit {name} integration",
"notification": {
"success": {
"title": "Changes applied successfully",
"message": "The integration was successfully saved"
},
"error": {
"title": "Unable to apply changes",
"message": "The integration could not be saved"
}
},
"app": {
"action": {
"add": "Link an app",
"remove": "Unlink",
"select": "Select an app to link"
}
}
},
"delete": {
"title": "Delete integration",
"message": "Are you sure you want to delete the integration {name}?",
"notification": {
"success": {
"title": "Deletion successful",
"message": "The integration was successfully deleted"
},
"error": {
"title": "Deletion failed",
"message": "Unable to delete the integration"
}
}
}
},
"field": {
"name": {
"label": "Name"
},
"url": {
"label": "Url"
},
"attemptSearchEngineCreation": {
"label": "Create Search Engine",
"description": "Integration \"{kind}\" can be used with the search engines. Check this to automatically configure the search engine."
},
"app": {
"sectionTitle": "Linked App"
},
"createApp": {
"label": "Create app",
"description": "Create an app with the same name and icon as the integration. Leave the input field below empty to create the app with the integration URL."
},
"appHref": {
"placeholder": "Custom app URL"
}
},
"action": {
"create": "New integration"
},
"testConnection": {
"action": {
"create": "Test connection and create",
"edit": "Test connection and save"
},
"error": {
"common": {
"cause": {
"title": "Cause with more details"
}
},
"unknown": {
"title": "Unknown error",
"description": "An unknown error occurred, open the cause below to see more details"
},
"parse": {
"title": "Parse error",
"description": "The response could not be parsed. Please verify that the URL is pointing to the base URL of the service."
},
"authorization": {
"title": "Authorization error",
"description": "The request was not authorized. Please verify that the credentials are correct and you have them configured with enough permissions."
},
"statusCode": {
"title": "Response error",
"description": "Received unexpected {statusCode} ({reason}) response from <url></url>. Please verify that the URL is pointing to the base URL of the integration.",
"otherDescription": "Received unexpected {statusCode} response from <url></url>. Please verify that the URL is pointing to the base URL of the integration.",
"reason": {
"badRequest": "Bad request",
"notFound": "Not found",
"tooManyRequests": "Too many requests",
"internalServerError": "Internal server error",
"serviceUnavailable": "Service unavailable",
"gatewayTimeout": "Gateway timeout"
}
},
"certificate": {
"title": "Certificate error",
"description": {
"expired": "The certificate has expired.",
"notYetValid": "The certificate is not yet valid.",
"untrusted": "The certificate is not trusted.",
"hostnameMismatch": "The certificate hostname does not match the URL."
},
"alert": {
"permission": {
"title": "Not enough permissions",
"message": "You are not allowed to trust or upload certificates. Please contact your administrator to upload the necessary root certificate."
},
"hostnameMismatch": {
"title": "Hostname mismatch",
"message": "The hostname in the certificate does not match the hostname you are connecting to. This could indicate a security risk, but you can still choose to trust this certificate."
},
"extract": {
"title": "CA certificate extraction failed",
"message": "Only self signed certificates without a chain can be fetched automatically. If you are using a self signed certificate, please make sure to upload the CA certificate manually. You can find instructions on how to do this <docsLink></docsLink>."
}
},
"action": {
"retry": {
"label": "Retry creation"
},
"trust": {
"label": "Trust certificate"
},
"upload": {
"label": "Upload certificate"
}
},
"hostnameMismatch": {
"confirm": {
"title": "Trust hostname mismatch",
"message": "Are you sure you want to trust the certificate with a hostname mismatch?"
},
"notification": {
"success": {
"title": "Trusted certificate",
"message": "Added hostname to trusted certificate list"
},
"error": {
"title": "Failed to trust certificate",
"message": "The certificate with a hostname mismatch could not be trusted"
}
}
},
"selfSigned": {
"confirm": {
"title": "Trust self signed certificate",
"message": "Are you sure you want to trust this self signed certificate?"
},
"notification": {
"success": {
"title": "Trusted certificate",
"message": "Added certificate to trusted certificate list"
},
"error": {
"title": "Failed to trust certificate",
"message": "Failed to add certificate to trusted certificate list"
}
}
},
"details": {
"title": "Details",
"description": "Review the certificate information before deciding to trust it.",
"content": {
"action": "Show content",
"title": "PEM Certificate"
}
}
},
"request": {
"title": "Request error",
"description": {
"connection": {
"hostUnreachable": "The server could not be reached. This usually means the host is offline or unreachable from your network.",
"networkUnreachable": "The network is unreachable. Please check your internet connection or network configuration.",
"refused": "The server refused the connection. It may not be running or is rejecting requests on the specified port.",
"reset": "The connection was unexpectedly closed by the server. This can happen if the server is unstable or restarted."
},
"dns": {
"notFound": "The server address could not be found. Please check the URL for typos or invalid domain names.",
"timeout": "DNS lookup timed out. This may be a temporary issue—please try again in a few moments.",
"noAnswer": "The DNS server didn't return a valid response. The domain may exist but has no valid records."
},
"timeout": {
"aborted": "The request was aborted before it could complete. This might be due to a user action or system timeout.",
"timeout": "The request took too long to complete and was timed out. Check your network or try again later."
}
}
}
},
"alertNotice": "The Save button is enabled once a successful connection is established",
"notification": {
"success": {
"title": "Connection successful",
"message": "The connection was successfully established"
},
"invalidUrl": {
"title": "Invalid URL",
"message": "The URL is invalid"
},
"secretNotDefined": {
"title": "Missing credentials",
"message": "Not all credentials were provided"
},
"invalidCredentials": {
"title": "Invalid credentials",
"message": "The credentials are invalid"
},
"commonError": {
"title": "Connection failed",
"message": "The connection could not be established"
},
"badRequest": {
"title": "Bad request",
"message": "The request was malformed"
},
"unauthorized": {
"title": "Unauthorized",
"message": "Probably wrong credentials"
},
"forbidden": {
"title": "Forbidden",
"message": "Probably missing permissions"
},
"notFound": {
"title": "Not found",
"message": "Probably wrong url or path"
},
"internalServerError": {
"title": "Internal server error",
"message": "The server encountered an error"
},
"serviceUnavailable": {
"title": "Service unavailable",
"message": "The server is currently unavailable"
},
"connectionAborted": {
"title": "Connection aborted",
"message": "The connection was aborted"
},
"domainNotFound": {
"title": "Domain not found",
"message": "The domain could not be found"
},
"connectionRefused": {
"title": "Connection refused",
"message": "The connection was refused"
},
"invalidJson": {
"title": "Invalid JSON",
"message": "The response was not valid JSON"
},
"wrongPath": {
"title": "Wrong path",
"message": "The path is probably not correct"
},
"tooManyRequests": {
"title": "Too many requests in a given time",
"message": "There were too many requests. You are likely being rate-limited or rejected by the target system"
}
}
},
"secrets": {
"title": "Secrets",
"lastUpdated": "Last updated {date}",
"notSet": {
"label": "No value set",
"tooltip": "This required secret has not been set yet"
},
"secureNotice": "This secret cannot be retrieved after creation",
"reset": {
"title": "Reset secret",
"message": "Are you sure you want to reset this secret?"
},
"noSecretsRequired": {
"segmentTitle": "No secrets",
"text": "No secrets required for this integration"
},
"kind": {
"username": {
"label": "Username",
"newLabel": "New username"
},
"apiKey": {
"label": "API Key",
"newLabel": "New API Key"
},
"password": {
"label": "Password",
"newLabel": "New password"
},
"tokenId": {
"label": "Token ID",
"newLabel": "New token ID"
},
"realm": {
"label": "Realm",
"newLabel": "New realm"
},
"personalAccessToken": {
"label": "Personal Access Token",
"newLabel": "New Personal Access Token"
},
"topic": {
"label": "Topic",
"newLabel": "New topic"
},
"url": {
"label": "Url",
"newLabel": "New url"
},
"opnsenseApiKey": {
"label": "API Key (Key)",
"newLabel": "New API Key (Key)"
},
"opnsenseApiSecret": {
"label": "API Key (Secret)",
"newLabel": "New API Key (Secret)"
},
"githubAppId": {
"label": "App Id",
"newLabel": "New App Id"