-
Notifications
You must be signed in to change notification settings - Fork 10
/
languageErrors.json
17581 lines (17581 loc) · 748 KB
/
languageErrors.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
{
"ar_AR - Arabic / \u0639\u0631\u0628\u064a": {
"missing": {
"/dashboard.txt": [
"%s ago",
"1 m",
"10 s",
"2 m",
"30 s",
"5 m",
"Abort background operation",
"Abort background process",
"Alert Message",
"Alerts",
"Array Information",
"Attention - operation continues in background",
"Check free space",
"checking",
"Click to toggle CPU chart",
"Clock is unsynchronized with no NTP servers",
"Clock synchronized with %s NTP server",
"Clock synchronized with %s NTP servers",
"Clone",
"Close Tile",
"Containers",
"Content Management",
"Docker folder",
"Docker vdisk",
"Edit VM after clone",
"emulated",
"Fan Information",
"Flash device",
"Free",
"Go to date and time settings",
"heat warnings",
"Information",
"Interface Information",
"invalid",
"Legend",
"Lock sortable items",
"Log filesystem",
"Memory Utilization",
"Motherboard Information",
"Network traffic",
"New VM",
"Notices",
"Notifications",
"Output voltage",
"Overwrite",
"Parity Information",
"Percent of total used memory",
"Percent usage of Docker folder",
"Percent usage of Docker vdisk",
"Percent usage of flash usb device",
"Percent usage of LOG file system",
"Pool",
"Power Status",
"Processor Information",
"RAM usage",
"Select time frame",
"Services",
"Shares Information",
"SMART errors",
"SMART health-check failed",
"Snapshot Name",
"Snapshot",
"Start Cloned VM",
"synching",
"Temp",
"This may leave an unknown state",
"Tile Management",
"Unassigned Devices",
"Unlock sortable items",
"UPS Model",
"Users Information",
"utilization warnings",
"VM Being Cloned",
"VM Clone",
"VM Name",
"VPN Connections",
"W",
"Warnings",
"ZFS"
],
"/docker.txt": [
"Additional Requirements",
"Crypto Currency",
"Docker Containers",
"Drivers",
"Lock sortable items",
"None Listed",
"Read Me First",
"Reset sorting",
"Total size",
"Unlock sortable items"
],
"/javascript.txt": [
"Donate",
"Read Me First",
"Array Copying",
"Array Clearing",
"Stale configuration",
"Starting Recycle Bin",
"Stopping Recycle Bin",
"Sync filesystems",
"Container Path",
"Container Port",
"Container Variable",
"Container Label",
"Container Device"
],
"/main.txt": [
"Action",
"Add Subpool",
"Add ZFS Subpool",
"After renaming the pool, check that your shares are assigned to the proper primary and secondary storage locations",
"After upgrading the volume may not be mountable in previous versions of Unraid",
"Attributes not available",
"auto",
"Autotrim",
"btrfs filesystem usage",
"cache - Cache Devices",
"Capabilities not available",
"completed",
"Compression",
"Convert to raid1c3 mode",
"Convert to raid1c4 mode",
"Critical NVME temperature threshold",
"Critical SSD temperature threshold",
"Data-Rebuild in progress",
"dedup - Deduplication Tables",
"Device contents invalid",
"Device is disabled",
"Dirty log detected",
"Disk-Clear in progress",
"Enable user share assignment",
"enter disk index and device name as applicable to your controller",
"Erase Device Content",
"Existing content is permanently lost",
"File system corruption detected",
"Fix",
"Flash device is set as public share",
"Identity is not available",
"Incorrect confirmation",
"invalid device",
"invalid devices",
"Invalid, missing or expired",
"logs - ZFS Intent Log",
"mirror",
"Missing pool disk",
"next device",
"no devices",
"No file system corruption detected",
"Not present",
"Parity Operation History",
"Parity-Sync in progress",
"Please change share SMB security",
"Please try again",
"Pool Status",
"Power",
"previous device",
"raid0",
"raid1",
"raid10",
"raid1c3",
"raid1c4",
"raid5",
"raid6",
"raidz",
"raidz2",
"raidz3",
"Read errors corrected",
"Read errors detected",
"Reading",
"ReiserFS is deprecated, please use another file system",
"Renaming the pool will change the share storage allocations",
"See %s Settings",
"single",
"SMART controller type",
"SMART notification tolerance level",
"SMART self-test in progress",
"spares - Hot Spares",
"special - Special Allocation Class",
"Started, clearing",
"Starting, copying",
"Sync errors corrected",
"Sync errors detected",
"The ZFS volume will be upgraded",
"This operation cannot be reversed",
"This will ERASE ALL device content",
"This will ERASE content of ALL devices in the pool",
"Unassigned Devices",
"Upgrade Pool",
"W",
"Warning NVME temperature threshold",
"Warning SSD temperature threshold",
"While there is some risk, if it is not possible to first mount the filesystem to clear the log, zeroing it is the only option to try and repair the filesystem, and in most cases it results in little or no data loss",
"will pause Data-Rebuild",
"will pause Disk-Clear",
"will pause Parity-Check",
"will pause Parity-Sync",
"will pause Read-Check",
"will remove the missing pool disk and then bring the array on-line",
"will resume Data-Rebuild",
"will resume Disk-Clear",
"will resume Parity-Check",
"will resume Parity-Sync",
"will resume Read-Check",
"will stop Data-Rebuild",
"will stop Disk-Clear",
"will stop Parity-Check",
"will stop Parity-Sync",
"will stop Read-Check",
"Wrong Pool State",
"Zero Log",
"zfs pool status",
"zfs",
"Check this",
"for more information",
"Make sure your server supports S3 sleep",
"Sleeping",
"System in sleep mode",
"This will put the system in sleep mode",
"wiki entry"
],
"/plugins.txt": [
"Alert Message",
"Checking connectivity",
"checking",
"Delete Plugin",
"I have read the release notes",
"No plugins installed",
"No response, aborting",
"Plugin File Install Errors",
"Plugin History",
"Remove Plugin",
"Remove Selected Plugins",
"Update Incompatible",
"Update Plugin"
],
"/settings.txt": [
"%s ago",
"a value of zero means no automatic closure",
"Accumulation duration",
"Accumulation frequency",
"Activate",
"Activated",
"Activating",
"Add Peer",
"Add Tunnel",
"Advanced",
"Allow Remote Access",
"Allow",
"Always On - Manual Port Forward",
"Always On - UPnP",
"Any",
"Apply to activate Docker after Array is Started",
"Applying",
"Auto-close",
"automatic",
"Autostart",
"bad or missing key file",
"Balance schedule",
"Basic",
"Block group usage",
"boost",
"Boxed",
"btrfs vDisk",
"Cannot renew a custom cert at",
"CA-signed certificate file",
"Celsius",
"Certificate not valid for",
"Certificate subject",
"Certificate URL",
"Change encryption key",
"Changes",
"Changing key failed for disks",
"Checking",
"CIDR optional",
"Comma separated list of IPv4 and IPv6 IP addresses",
"configure your router with a static route of",
"configure your router with port forwarding of port",
"connect to any device on the VPN tunnel",
"connect to this server using IP address",
"Connected to Unraid Connect Cloud",
"Console Options",
"Console Settings",
"CRAM-MD5",
"Cumulative parity check",
"Current listening interfaces",
"Current usage ratio",
"Data received",
"Data sent",
"Deactivate",
"Deactivating",
"Default critical SSD temperature threshold",
"Default file system for Array disks",
"Default network source",
"Default warning SSD temperature threshold",
"Delete directory",
"Delete Peer",
"Delete tunnel failed",
"Delete Tunnel",
"Delete vDisk file",
"Deny",
"directory",
"Disabled until connected to Unraid Connect Cloud",
"Display width",
"DNS Propagation is PENDING",
"DNS Rebinding Protection is ENABLED",
"DNS servers",
"docker containers on custom networks need static routing",
"Docker custom network type",
"Docker data-root",
"Docker directory",
"Docker PID Limit",
"Docker Stop Timeout",
"Docker will be available after Array is Started",
"download error",
"Downloading",
"Duplicate port entered",
"enable advanced settings view",
"Enable container table readmore-js",
"Enable NVME power monitoring",
"Enable SMB Multi Channel",
"encrypted",
"Encryption Key Update",
"ensure the peer network is different from",
"ensure the peer networks are different from",
"Enter existing passphrase",
"Every 2 hours",
"Every 3 hours",
"Every 4 hours",
"Every 6 hours",
"Every 8 hours",
"Every hour",
"Exclude listening interfaces",
"Existing encryption key",
"Fahrenheit",
"Failed to open",
"Finished",
"Flash backup",
"FTP Server",
"Full Balance recommended",
"Generate Key",
"Generate Keypair",
"GRUB Configuration",
"Header custom meta text color",
"Header custom secondary text color",
"Header show description",
"Hidden share names are not allowed",
"Import Tunnel",
"In most cases, this should be your public WAN IPv4 instead",
"In most cases, this should be your public WAN IPv4",
"In most cases, this should be your public WAN IPv6 instead",
"In most cases, this should be your public WAN IPv6",
"inactive",
"Include listening interfaces",
"Incorrect existing key",
"Interface Extra",
"Invalid data",
"IP address or FQDN",
"IPv4 network",
"IPv6 network",
"ipvlan",
"is not in the",
"Join",
"Key successfully changed",
"Keyfile",
"LAN to LAN access",
"Last handshake",
"Leave",
"Libvirt vdisk size",
"List of peers",
"Loading",
"Local access URLs",
"Local endpoint",
"Local gateway uses UPnP",
"Local keyboard layout",
"Local name",
"Local private key",
"Local public key",
"Local screen blank time",
"Local server configuration",
"Local server uses NAT",
"Local syslog port",
"Local tunnel address IPv6",
"Local tunnel address",
"Local tunnel firewall",
"Local tunnel network pool IPv6",
"Local tunnel network pool",
"Low on battery",
"MAC address mismatch",
"macvlan",
"Make sure you understand what you are doing before enabling",
"Manage password",
"Manage",
"Management Interface",
"mandatory",
"Misconfiguration can cause problems",
"Missing new key",
"Mover is running",
"MTU size",
"name or ip address",
"No Balance required",
"No Cache device present",
"No change to report",
"no name",
"No Reply",
"Not activated",
"Not present",
"not received",
"Not up-to-date",
"not used",
"or",
"Output Voltage",
"Passphrase",
"Peer allowed IPs",
"Peer DNS server",
"Peer endpoint",
"Peer name",
"Peer preshared key",
"Peer private key",
"Peer public key",
"Peer tunnel address IPv6",
"Peer tunnel address",
"Peer type of access",
"Peer update required",
"Perform TRIM Operation",
"Permit exclusive shares",
"Persistent Bash History",
"Persistent keepalive",
"Ping",
"Please consider re-applying all configurations",
"Please read the Help carefully",
"Please Stop array to complete key installation",
"Port %s is already in use by other services",
"Port %s is duplicated",
"Port already in use",
"Port out of range",
"QEMU version",
"recommended",
"redirects to",
"Reinitialize",
"Reinitializing",
"Remark",
"Remote access to LAN",
"Remote access to server",
"Remote peer configuration",
"Remote syslog port",
"Remote tunneled access",
"Replied",
"Restore default image",
"Retype new passphrase",
"Rule",
"Rules contain duplicate MAC address assignments",
"Scrub schedule",
"Select existing keyfile",
"Select new keyfile",
"Self-signed certificate file",
"Self-signed or user-provided certificate",
"Send crash information to Unraid developers",
"Server to server access",
"Set password",
"Show banner background color fade",
"show passphrase",
"Show Peer Config",
"shutdown",
"slave",
"Stop corresponding docker containers",
"subnet",
"System goes down",
"TCP",
"Terminal font size",
"Test",
"The Local endpoint does not resolve to an IPv4 address",
"The Local endpoint does not resolve to an IPv6 address",
"The Local endpoint resolves to",
"The Local tunnel network pool cannot be in",
"The Local tunnel network pool IPv6 cannot be in",
"this must be the only peer in the tunnel and sole active tunnel when in use",
"This removes any connections running over this tunnel",
"This Unraid Server was unreachable from the outside",
"to",
"Toggle keys",
"Toggle view",
"Trim Now",
"TRIM operation started",
"TRIM schedule",
"TRIM Settings",
"trim",
"Tunnel has running containers attached",
"tunnel is inactive",
"Tunnel wg0",
"Type new passphrase",
"UDP",
"Unable to register this Unraid Server",
"Unlimited",
"Unraid Connect",
"Updating",
"Upgrade Cert",
"UPnP state changed to",
"UPS Model",
"UPS overloaded",
"Use only letters A-Z, digits or space,dash,underscore",
"use printable characters only",
"uses",
"View Local Config",
"View Peer Config",
"Virt-Manager Remote Viewer",
"VM manager",
"VPN tunnel for docker containers only",
"VPN tunneled access for docker",
"VPN tunneled access for system",
"VPN tunneled access",
"WAN Port",
"Web interface",
"WireGuard Configuration",
"xfs vDisk",
"You can not exclude this interface",
"Your server has been registered",
"Your Unraid Server is reachable from the internet",
"zfs",
"Account status",
"Always - Manual Port Forward",
"Always - UPnP",
"Connected to My Servers Cloud",
"Delete Cloud Backup",
"Disabled until connected to My Servers Cloud",
"Disabled until you have signed in",
"Disabled until your root user account is password-protected",
"Dynamic - Manual Port Forward",
"Dynamic - UPnP",
"Enable Transparent 2FA for Local Access",
"Enable Transparent 2FA for Remote Access",
"port",
"Remote T2FA requires Remote Access to be enabled",
"to the Unraid server at",
"Transient errors in this log can be ignored unless you are having issues",
"Unraid API extra origins",
"View Flash Backup Error Log"
],
"/shares.txt": [
"Clean Up",
"CLEAN UP",
"Exclusive access",
"Free Space will be calculated",
"is missing",
"it references storage that does not exist",
"Mover action",
"Mover transfers files from Primary storage to Secondary storage",
"Mover transfers files from Secondary storage to Primary storage",
"No unused share configurations present",
"Not used",
"Primary storage %s",
"Primary storage to Secondary storage",
"Remove unused share configurations",
"Removed share configurations",
"Secondary storage to Primary storage",
"Secondary storage",
"Share name contains invalid characters for ZFS use",
"Share is empty and is safe to delete",
"Share must be empty to be deleted",
"Storage",
"This share is invalid",
"Warning: Configured Pool"
],
"/tools.txt": [
"Alert Message",
"Alerts",
"All Categories",
"Array slots",
"Beta",
"Clear Log",
"Creating Flash backup",
"Creation error",
"Delete all notifications",
"Delete Modprobe config",
"Deprecated Only",
"Downgrade OS",
"Downloading",
"Driver",
"Edit Modprobe config",
"Error reporting level",
"Errors Only",
"Flash backup",
"Install Language",
"Insufficient free disk space available",
"Log file cleared",
"Log size",
"LOG size",
"Next",
"No filter",
"No notifications present",
"Notices Only",
"Notices",
"PHP Info",
"PHP Information",
"PHP Log File",
"PHP Settings",
"please configure",
"Please provide diagnostics when experiencing problems",
"Pool slots",
"Post these in the forums",
"Rebuild Modules",
"Save Modprobe config",
"Select View",
"Show errors on screen",
"Stable",
"State",
"Support page",
"System Drivers",
"This will delete the selected notification files",
"Uploaded",
"VFIO-PCI Log",
"View Log",
"View VFIO-PCI Log",
"Warnings Only",
"Warnings"
],
"/translations.txt": [
"aborted",
"ago",
"Always Allow",
"Anonymous Mode",
"Array Clearing",
"Array Copying",
"Blacklisted USB Flash GUID",
"bond down",
"Browser cookie support required for Unraid OS webgui",
"By default UEFI and Legacy boot mode are both enabled when GRUB is used to boot the machine",
"Cache",
"Calculated free space value",
"Checking Wan IPs",
"Clicking OK will take you to a 3rd party website not associated with Lime Technology",
"Command execution",
"complete",
"Configuration not found",
"Confirm Password",
"Copying",
"Data copied",
"Data-Rebuild",
"Dated",
"Disk-Clear",
"Docker",
"Docs",
"Erase",
"External Link",
"folder",
"Go to My Servers Dashboard",
"GRUB configuration",
"Hide Password",
"Invalid Username or Password",
"Job",
"Keep server details anonymous",
"Max password length is 128 characters",
"month",
"NFS",
"object",
"of",
"Parity-Sync",
"Password confirmation does not match",
"Password recovery",
"Password",
"Percentage",
"Please access this server via the My Servers Dashboard",
"Please also ensure you have cookies enabled",
"Please enable it",
"Please set a password for the root user account",
"Please try a different browser",
"Popup Blocked",
"Press ANY KEY to close this window",
"Pulling image",
"Purchase Key",
"Removing container",
"Removing orphan image",
"root requires a password",
"See Help",
"Set Password",
"Show Password",
"SMB",
"Stale configuration",
"Stopping container",
"Subject",
"Submission of this troubleshooting request will automatically send your system diagnostics to Lime Technology",
"Successfully logged out",
"Successfully removed container",
"Successfully removed orphan image",
"Successfully stopped container",
"The command failed revert to rsync",
"The command failed",
"The command finished successfully",
"The Unraid OS webgui requires JavaScript",
"There is a physical problem accessing your USB Flash boot device",
"This will start your free 30 day Trial",
"Time remaining",
"Too many invalid login attempts",
"TOTAL DATA PULLED",
"Transfer Rate",
"Trial",
"Unable to set password",
"Unsupported Feature",
"Upgrade Key",
"Username not changeable",
"Username",
"VMs",
"Was this container created using this plugin",
"Windows may require a valid User to be defined even for Public shares",
"year",
"years",
"Your browser has JavaScript disabled",
"%s year ago",
"%s years ago",
"Action",
"Calculate Occupied Space",
"Calculate",
"change owner",
"Change Owner",
"change permission",
"Change Permission",
"Common",
"Completed",
"Compress",
"Copy Device",
"Copy File",
"Copy Folder",
"Copy Share",
"copy to",
"Create Folder",
"Create",
"Creating",
"Current file name",
"Current folder name",
"Delete Device",
"Delete File",
"Delete Folder",
"Delete Share",
"Device name",
"DEVICE",
"Download File",
"Enter a valid target",
"Expand",
"File is removed",
"File Manager",
"File name",
"file type",
"Folder name",
"folders",
"Group",
"in %s folder and %s file",
"in %s folder and %s files",
"in %s folders and %s file",
"in %s folders and %s files",
"Invalid path",
"Invalid source",
"Invalid target",
"Job running",
"Jobs",
"Last modified",
"Minimize",
"more",
"Move Device",
"Move File",
"Move Folder",
"Move Share",
"move to",
"Moving",
"New file name",
"New folder name",
"New owner",
"New permission",
"No jobs scheduled",
"No results found",
"Not allowed to mix disk and user shares",
"Objects to change",
"Objects to copy",
"Objects to delete",
"Objects to move",
"Other",
"Overwrite existing file",
"Overwrite existing files",
"Owner",
"Page will be reloaded",
"Parent Directory",
"Permission",
"Queue",
"Removing",
"Rename File",
"Rename Folder",
"rename to",
"Renaming",
"Save",
"Scheduled Jobs",
"Search pattern",
"Search string",
"Search",
"SHARE",
"Source device",
"Source file",
"Source folder",
"Source share",
"Source",
"Target device",
"Target file",
"Target folder",
"Target share",
"Target",
"This changes the owner of the source recursively",
"This changes the permission of the source recursively",
"This copies all the selected sources",
"This copies the device and all its content to another device",
"This copies the folder and all its content to another folder",
"This copies the selected file",
"This copies the share and all its content to another share",
"This creates a folder at the current level",
"This deletes all selected sources",
"This deletes the device and all its content",
"This deletes the folder and all its content",
"This deletes the selected file",
"This deletes the share and all its content",
"This moves all the selected sources",
"This moves the device and all its content to another device",
"This moves the folder and all its content to another folder",
"This moves the selected file",
"This moves the share and all its content to another share",
"This renames the folder to the new name",
"This renames the selected file",
"This renames the selected source",
"Total occupied space",
"Updating",
"Upload Error",
"Use sparse option",
"year",
"years",
"%s Key Created",
"%s Key Extended",
"%s Key Install Error",
"%s Key Recovered",
"%s Key Replaced",
"8 or more characters",
"a digest of recent blog posts, community videos, popular forum threads, product announcements, and more",
"Access unavailable",
"Acknowledge Replacement Conditions",
"After your Trial has reached expiration your server still functions normally until the next time you Stop the array or reboot your server",
"Already have an account",
"Alternately you may purchase a license key for this USB flash device",
"And not just for one server but all the servers in your Unraid fleet",
"Auto closing in %s",
"Auto redirecting in %s",
"Automated flash backups will be disabled until you sign in again",
"Avatar",
"Back in a flash \u26a1\ufe0f",
"Back to %s",
"Back to Registration Home",
"Back to Sign In",
"Be sure to let the install complete before you close the window",
"beta",
"BLACKLISTED",
"Browser will self destruct in %s",
"bye bye \ud83d\udc4b",
"Cannot access your USB Flash boot device",
"Cannot validate Unraid Trial key",
"Checkout the Connect docs",
"Click to copy LAN IP %s",
"Close %s",
"Close Connect details and continue to webGUI",
"Close Details",
"Close dropdown",
"Close Launchpad and continue to webGUI",
"Closing this pop-up window while actions are being preformed may lead to unintended errors",
"comments",
"Communication with %s has timed out",
"Confirm closure then continue to webGUI",
"Confirm Connect plugin removal",
"Confirm Password",
"Confirm",
"Connect Error",
"Connect plugin install failed",
"Connect",
"Connected to Mothership",
"Connected",
"Continue to Unraid",
"Continue Trial",
"Continue using Connect",
"Copied key url",
"Copy Key URL",
"Create My Account",
"Current server",
"Customizable Dashboard Tiles",
"Deep Linking",
"Disconnected",
"Display Name or Email Address",
"Display Name",
"Displaying last known server data",
"Do not have an account",
"Download any registration key linked to your account",
"Download latest backup from Connect Dashboard before signing out",
"Download latest backup from Go to Connect before signing out",
"Download unraid-api Logs",
"Dynamic Remote Access",
"Email Address",
"Enhance your experience with Connect",
"Expand your servers capabilities",
"Extend Trial",
"Extending Trial",
"Failed to connect to Unraid API",
"Fix Error",
"For best results, use one of these urls",
"Forgot Password",
"Form not valid",
"Get quick real-time info on the status of your servers such as storage, container, and VM usage",
"Get Started",
"Go Back",
"Go to Connect",
"GUID Error",
"GUID",
"Have a USB flash device that already has an account associated with it",
"Hi %s",
"I acknowledge that replacing a license key results in permanently blacklisting the previous USB Flash GUID",
"I agree to the",
"If you fill this field out then your email will not be sent",
"If you want to replace one of your license keys with a new key bound to this USB Flash device please first remove all other key files first",
"Important",
"Install Plugin",
"Installed %s Key",
"Installing %s Key",
"Invalid 2FA token",
"Invalid installation",
"Invalid username or password",
"IP",
"It appears that your license key file is corrupted or missing",
"Key file not valid",
"Key management is done via the dropdown in the top right of the webGUI on every page",
"LAN IP %s",
"LAN IP Copied",
"Learn more",
"License Management",
"Loading Connect data",
"Local access",
"Manage Your Server Within Connect",
"Message",
"Missing key file",
"Multiple License Keys Present",
"No 2FA token detected",
"No Flash",
"No Keyfile",
"No thanks",
"No USB flash configuration data",
"Not Connected to Mothership",
"Online Flash Backup",
"Open dropdown",
"Open Dropdown",
"Opens %s in new tab",
"Opens new HTTPS window to %s",
"Page Not Allowed",
"Page Not Found",
"Password confirmation must match",
"Paste or Enter code",
"Please access this server via the Go to Connect",
"Please check Settings > Network",
"Please confirm closure",
"Please copy the Key URL before closing this window",
"Please keep this window open",
"Please make sure there is a DNS server specified",
"Please make sure your server time is accurate to within 5 minutes",
"Please refresh the page to ensure you load your latest configuration",
"Please try a different USB Flash device",
"Please uninstall and reinstall the Connect plugin",
"Please wait a moment and reload the page",
"Please wait\u2026",
"Plus more on the way",
"Pop-up",
"Post your diagnostics in the forum for help",
"Product",
"Real-time Monitoring",
"Receive an additional 15 days for your trial",
"Recover Key",
"Redeem Activation Code",
"Register for Connect by signing in to Unraid.net",
"Registration key management",
"Registration Wizard",
"remaining",
"Remote access will be disabled",
"Remote access",
"Remove Connect plugin",
"Removing Connect plugin\u2026",
"Replace Key Ineligible",
"Replace Key",
"Resend Code",
"Resend Email Verification Code",
"Reset Password Now",
"Restart unraid-api",
"Restarting\u2026",
"Searching",
"See also here",
"Server Offline",
"Server up since %s",
"Shut Down",
"Sign in or sign up to get started",
"Sign In to Purchase Key",