-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
en.ts
2454 lines (2452 loc) · 67.2 KB
/
en.ts
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
import "dayjs/locale/en";
import { MRT_Localization_EN } from "mantine-react-table/locales/en/index.cjs";
export default {
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",
},
},
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",
},
},
},
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",
},
permission: {
admin: {
title: "Admin",
item: {
admin: {
label: "Administrator",
description: "Members with this permission have full access to all features and settings",
},
},
},
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",
},
},
},
},
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",
},
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",
},
},
},
app: {
page: {
list: {
title: "Apps",
noResults: {
title: "There aren't any apps",
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",
},
},
},
integration: {
page: {
list: {
title: "Integrations",
search: "Search integrations",
empty: "No integrations found",
},
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",
},
},
},
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",
},
},
},
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",
},
},
action: {
create: "New integration",
},
testConnection: {
action: {
create: "Test connection and create",
edit: "Test connection and save",
},
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",
},
},
},
secrets: {
title: "Secrets",
lastUpdated: "Last updated {date}",
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",
},
},
},
permission: {
use: "Select integrations in items",
interact: "Interact with integrations",
full: "Full integration access",
},
},
common: {
rtl: "{value}{symbol}",
symbols: {
colon: ": ",
},
beta: "Beta",
error: "Error",
action: {
add: "Add",
apply: "Apply",
backToOverview: "Back to overview",
create: "Create",
edit: "Edit",
import: "Import",
insert: "Insert",
remove: "Remove",
save: "Save",
saveChanges: "Save changes",
cancel: "Cancel",
delete: "Delete",
discard: "Discard",
confirm: "Confirm",
continue: "Continue",
previous: "Previous",
next: "Next",
checkoutDocs: "Check out the documentation",
tryAgain: "Try again",
loading: "Loading",
},
iconPicker: {
label: "Icon URL",
header: "Type name or objects to filter for icons... Homarr will search through {countIcons} icons for you.",
},
information: {
min: "Min",
max: "Max",
},
notification: {
create: {
success: "Creation successful",
error: "Creation failed",
},
delete: {
success: "Deletion successful",
error: "Deletion failed",
},
update: {
success: "Changes applied successfully",
error: "Unable to apply changes",
},
transfer: {
success: "Transfer successful",
error: "Transfer failed",
},
},
multiSelect: {
placeholder: "Pick one or more values",
},
multiText: {
placeholder: "Add more values",
addLabel: "Add {value}",
},
select: {
placeholder: "Pick value",
badge: {
recommended: "Recommended",
},
},
userAvatar: {
menu: {
switchToDarkMode: "Switch to dark mode",
switchToLightMode: "Switch to light mode",
management: "Management",
preferences: "Your preferences",
logout: "Logout",
login: "Login",
homeBoard: "Your home board",
loggedOut: "Logged out",
},
},
dangerZone: "Danger zone",
noResults: "No results found",
preview: {
show: "Show preview",
hide: "Hide preview",
},
zod: {
errors: {
default: "This field is invalid",
required: "This field is required",
string: {
startsWith: "This field must start with {startsWith}",
endsWith: "This field must end with {endsWith}",
includes: "This field must include {includes}",
invalidEmail: "This field must be a valid email",
},
tooSmall: {
string: "This field must be at least {minimum} characters long",
number: "This field must be greater than or equal to {minimum}",
},
tooBig: {
string: "This field must be at most {maximum} characters long",
number: "This field must be less than or equal to {maximum}",
},
custom: {
passwordsDoNotMatch: "Passwords do not match",
passwordRequirements: "Password does not meet the requirements",
boardAlreadyExists: "A board with this name already exists",
invalidFileType: "Invalid file type, expected {expected}",
fileTooLarge: "File is too large, maximum size is {maxSize}",
invalidConfiguration: "Invalid configuration",
},
},
},
mantineReactTable: MRT_Localization_EN,
},
section: {
dynamic: {
action: {
create: "New dynamic section",
remove: "Remove dynamic section",
},
remove: {
title: "Remove dynamic section",
message:
"Are you sure you want to remove this dynamic section? Items will be moved at the same location in the parent section.",
},
},
category: {
field: {
name: {
label: "Name",
},
},
action: {
create: "New category",
edit: "Rename category",
remove: "Remove category",
moveUp: "Move up",
moveDown: "Move down",
createAbove: "New category above",
createBelow: "New category below",
},
create: {
title: "New category",
submit: "Add category",
},
remove: {
title: "Remove category",
message: "Are you sure you want to remove the category {name}?",
},
edit: {
title: "Rename category",
submit: "Rename category",
},
menu: {
label: {
create: "New category",
changePosition: "Change position",
},
},
},
},
item: {
action: {
create: "New item",
import: "Import item",
edit: "Edit item",
moveResize: "Move / resize item",
duplicate: "Duplicate item",
remove: "Remove item",
},
menu: {
label: {
settings: "Settings",
},
},
create: {
title: "Choose item to add",
addToBoard: "Add to board",
},
moveResize: {
title: "Move / resize item",
field: {
width: {
label: "Width",
},
height: {
label: "Height",
},
xOffset: {
label: "X offset",
},
yOffset: {
label: "Y offset",
},
},
},
edit: {
title: "Edit item",
advancedOptions: {
label: "Advanced options",
title: "Advanced item options",
},
field: {
integrations: {
label: "Integrations",
},
customCssClasses: {
label: "Custom css classes",
},
},
},
remove: {
title: "Remove item",
message: "Are you sure you want to remove this item?",
},
},
widget: {
app: {
name: "App",
description: "Embeds an app into the board.",
option: {
appId: {
label: "Choose app",
},
openInNewTab: {
label: "Open in new tab",
},
showTitle: {
label: "Show app name",
},
showDescriptionTooltip: {
label: "Show description tooltip",
},
pingEnabled: {
label: "Enable simple ping",
},
},
error: {
notFound: {
label: "No app",
tooltip: "You have no valid app selected",
},
},
},
dnsHoleSummary: {
name: "DNS Hole Summary",
description: "Displays the summary of your DNS Hole",
option: {
layout: {
label: "Layout",
option: {
row: {
label: "Horizontal",
},
column: {
label: "Vertical",
},
grid: {
label: "Grid",
},
},
},
usePiHoleColors: {
label: "Use Pi-Hole colors",
},
},
error: {
internalServerError: "Failed to fetch DNS Hole Summary",
integrationsDisconnected: "No data available, all integrations disconnected",
},
data: {
adsBlockedToday: "Blocked today",
adsBlockedTodayPercentage: "Blocked today",
dnsQueriesToday: "Queries today",
domainsBeingBlocked: "Domains on blocklist",
},
},
dnsHoleControls: {
name: "DNS Hole Controls",
description: "Control PiHole or AdGuard from your dashboard",
option: {
layout: {
label: "Layout",
option: {
row: {
label: "Horizontal",
},
column: {
label: "Vertical",
},
grid: {
label: "Grid",
},
},
},
showToggleAllButtons: {
label: "Show Toggle All Buttons",
},
},
error: {
internalServerError: "Failed to control DNS Hole",
},
controls: {
enableAll: "Enable All",
disableAll: "Disable All",
setTimer: "Set Timer",
set: "Set",
enabled: "Enabled",
disabled: "Disabled",
processing: "Processing",
disconnected: "Disconnected",
hours: "Hours",
minutes: "Minutes",
unlimited: "Leave blank to unlimited",
},
},
clock: {
name: "Date and time",
description: "Displays the current date and time.",
option: {
customTitleToggle: {
label: "Custom Title/City display",
description: "Show off a custom title or the name of the city/country on top of the clock.",
},
customTitle: {
label: "Title",
},
is24HourFormat: {
label: "24-hour format",
description: "Use 24-hour format instead of 12-hour format",
},
showSeconds: {
label: "Display seconds",
},
useCustomTimezone: {
label: "Use a fixed timezone",
},
timezone: {
label: "Timezone",
description: "Choose the timezone following the IANA standard",
},
showDate: {
label: "Show the date",
},
dateFormat: {
label: "Date Format",
description: "How the date should look like",
},
},
},
notebook: {
name: "Notebook",
description: "A simple notebook widget that supports markdown",
option: {
showToolbar: {
label: "Show the toolbar to help you write markdown",
},
allowReadOnlyCheck: {
label: "Allow check in read only mode",
},
content: {
label: "The content of the notebook",
},
},
controls: {
bold: "Bold",
italic: "Italic",
strikethrough: "Strikethrough",
underline: "Underline",
colorText: "Color text",
colorHighlight: "Colored highlight text",
code: "Code",
clear: "Clear formatting",
heading: "Heading {level}",
align: "Align text: {position}",
blockquote: "Blockquote",
horizontalLine: "Horizontal line",
bulletList: "Bullet list",
orderedList: "Ordered list",
checkList: "Check list",
increaseIndent: "Increase Indent",
decreaseIndent: "Decrease Indent",
link: "Link",
unlink: "Remove link",
image: "Embed Image",
addTable: "Add table",
deleteTable: "Delete Table",
colorCell: "Color Cell",
mergeCell: "Toggle cell merging",
addColumnLeft: "Add column before",
addColumnRight: "Add column after",
deleteColumn: "Delete column",
addRowTop: "Add row before",
addRowBelow: "Add row after",
deleteRow: "Delete row",
},
align: {
left: "Left",
center: "Center",
right: "Right",
},
popover: {
clearColor: "Clear color",
source: "Source",
widthPlaceholder: "Value in % or pixels",
columns: "Columns",
rows: "Rows",
width: "Width",
height: "Height",
},
},
iframe: {
name: "iFrame",
description: "Embed any content from the internet. Some websites may restrict access.",
option: {
embedUrl: {
label: "Embed URL",
},
allowFullScreen: {
label: "Allow full screen",
},
allowTransparency: {
label: "Allow transparency",
},
allowScrolling: {
label: "Allow scrolling",
},
allowPayment: {
label: "Allow payment",
},
allowAutoPlay: {
label: "Allow auto play",
},
allowMicrophone: {
label: "Allow microphone",
},
allowCamera: {
label: "Allow camera",
},
allowGeolocation: {
label: "Allow geolocation",
},
},
error: {
noUrl: "No iFrame URL provided",
noBrowerSupport: "Your Browser does not support iframes. Please update your browser.",
},
},
"smartHome-entityState": {
name: "Entity State",
description: "Display the state of an entity and toggle it optionally",
option: {
entityId: {
label: "Entity ID",
},
displayName: {
label: "Display-name",
},
entityUnit: {
label: "Entity Unit",
},
clickable: {
label: "Clickable",
},
},
},
"smartHome-executeAutomation": {
name: "Execute Automation",
description: "Trigger an automation with one click",
option: {