forked from Neos-Metaverse/NeosLocale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
2084 lines (1810 loc) · 139 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
{
"localeCode": "en",
"authors": ["Frooxius", "Enverex", "rampa_3", "Melnus", "dfgHiatus", "Earthmark"],
"messages": {
"General.OK": "OK",
"General.Start": "Start",
"General.Finish": "Finish",
"General.Cancel": "Cancel",
"General.Continue": "Continue",
"General.Next": "Next",
"General.Back": "Back",
"General.Confirm": "Really?",
"General.Loading": "Loading...",
"General.Processing": "Processing...",
"General.FAILED": "FAILED",
"General.Reset": "Reset",
"General.WorldOpenConfirm": "Really open?",
"General.Save": "Save",
"General.Saving": "Saving...",
"General.Saved": "Saved!",
"General.Done": "Done!",
"General.Close": "Close",
"General.CopyToClipboard": "Copy to clipboard",
"General.CopiedToClipboard": "Copied!",
"General.CopiedToClipboardLong": "Copied to clipboard!",
"General.Create": "Create",
"General.Creating": "Creating...",
"General.Buy": "Buy",
"General.UI.SearchPrompt": "Search...",
"General.UI.SearchPromptLong": "Type to search...",
"General.UI.ToggleEditMode": "Toggle Edit Mode",
"General.UI.ToggleSubtitles": "Toggle Subtitles",
"General.UI.Subtitles.On" : "Subtitles: On",
"General.UI.Subtitles.Off" : "Subtitles: Off",
"General.UI.MusicVolumeLocal": "Music Volume (local):",
"General.UI.VoiceVolumeLocal": "Voice Volume (local):",
"General.UI.SoundVolumeLocal": "Sound Volume (local):",
"General.UI.PressToBegin": "Press To Begin",
"General.Sort.Ascending": "Ascending",
"General.Sort.Descending": "Descending",
"Locomotion.Noclip.Name": "Noclip",
"Locomotion.Noclip.Description": "Simple no-clip flying mode, ideal for editing.",
"Locomotion.Teleport.Name": "Teleport",
"Locomotion.Teleport.Description": "Uses ballistic path teleport, for comfortable locomotion.",
"Locomotion.Fly.Name": "Fly",
"Locomotion.Fly.Description": "Physical Fly Mode",
"Locomotion.WalkRun.Name": "Walk/Run",
"Locomotion.WalkRun.Description": "Physical walking, running and jumping.",
"Locomotion.WalkRunGripping.Name": "Walk/Run (with climbing)",
"Locomotion.WalkRunGripping.Description": "Physical walking, running, jumping and climbing.",
"Locomotion.ZeroG.Name": "Zero-G",
"Locomotion.ZeroG.Description": "Weightless physical locomotion",
"Locomotion.GrabWorld.Name": "Grab World",
"Locomotion.GrabWorld.Description": "Creates a world anchor with the reference and moves the user relative to it.",
"Locomotion.Slide.Name": "Slide",
"Locomotion.Slide.Description": "Simple Sliding locomotion that snaps to surface if present, flying otherwise.",
"Interaction.Destroy": "Destroy",
"Interaction.Duplicate": "Duplicate",
"Interaction.SaveToInventory": "Save To Inventory",
"Interaction.Undo": "Undo",
"Interaction.Redo": "Redo",
"Interaction.EquipTool": "Equip",
"Interaction.DequipTool": "Dequip",
"Interaction.ScalingEnabled": "Scaling Enabled",
"Interaction.ScalingDisabled": "Scaling Disabled",
"Interaction.ResetScale": "Reset Scale",
"Interaction.LaserEnabled": "Laser Enabled",
"Interaction.LaserDisabled": "Laser Disabled",
"Interaction.Grab.Palm": "Grab: Palm",
"Interaction.Grab.Precision": "Grab: Precision",
"Interaction.Grab.Auto": "Grab: Auto",
"Interaction.Grab.Off": "Grab: Laser Only",
"Interaction.Locomotion": "Locomotion",
"Interaction.Locomotion.None": "None",
"Interaction.NamedEquipTool": "Equip {name}",
"Interaction.NamedEquipTool.Default": "Tool",
"Interaction.EnterAnchor": "Enter Anchor",
"Interaction.ExitAnchor": "Exit Anchor",
"Interaction.EquipAvatar": "Equip Avatar",
"Interaction.SaveAsScreenshot": "Save as screenshot",
"Interaction.ExportScreenshot": "Export screenshot",
"Interaction.ImportFile": "Import File",
"Interaction.ExportFile": "Export File",
"Interaction.CopyLink": "Copy Link",
"Dash.Screens.Home": "Home",
"Dash.Screens.Worlds": "Worlds",
"Dash.Screens.Contacts": "Contacts",
"Dash.Screens.Inventory": "Inventory",
"Dash.Screens.Desktop": "Desktop",
"Dash.Screens.Session": "Session",
"Dash.Screens.FileBrowser": "<nobr>File Browser",
"Dash.Screens.Settings": "Settings",
"Dash.Screens.Exit": "Exit",
"Dash.Actions.PasteFromClipboard": "Paste content from clipboard",
"Dash.Actions.TurnOffUIEdit": "Turn off UI Edit Mode",
"Dash.Actions.CoreWorldsHeader": "Core Worlds",
"Dash.Actions.ContentHub": "Content Hub",
"Dash.Actions.MTC": "Metaverse Training Center <size=75%>(tutorials)</size>",
"Dash.Actions.CloudHome": "My Cloud Home",
"Dash.Exit.Header": "Exit Neos",
"Dash.Exit.ExitAndSave": "Exit & Save Homes",
"Dash.Exit.ExitAndDiscard": "Exit & Discard Homes",
"Dash.Exit.ThankYou": "Thank you for using Neos!",
"Dash.Exit.SubmittedBy": "Submitted by: {name}",
"World.Waiting": "Waiting...",
"World.HostIsStarting": "Host is starting session",
"World.Loading": "Loading...",
"World.LoadingFailed": "Failed",
"World.LoadedAssets": "Loaded {assets} of {total_assets}",
"World.Downloading": "Downloading {bytes} of {total_bytes}",
"World.Connection.EstablishingConnection": "Establishing connection",
"World.Connection.RequestingJoin": "Requesting Join",
"World.Connection.Authenticating": "Authenticating",
"World.Connection.Connected": "Connected",
"World.Connection.SyncingInitialState": "Syncing initial world state",
"World.Connection.LNL.DirectIP": "LNL Direct IP",
"World.Connection.LNL.NATPunchthrough": "LNL NAT Punchthrough {n}",
"World.Connection.LNL.Relay": "LNL Relay",
"World.Connection.SteamNetworkingSockets": "Steam Networking Sockets",
"World.Error.AccessDenied": "Access Denied",
"World.Error.SecurityViolation": "Security Violation",
"World.Error.OnlyRegisteredUsers": "Only registered users are allowed to join",
"World.Error.OnlyContacts": "Only contacts of the host are allowed to join",
"World.Error.OnlyContactsOfContacts": "Only contacts of users in the session are allowed to join",
"World.Error.Private": "This session is private",
"World.Error.SessionEnded": "Session Has Ended",
"World.Error.UserLimitReached": "Session has reached user limit",
"World.Error.FailedAuthentication": "Failed authentication",
"World.Error.FailedUserID": "Failed to authenticate UserID",
"World.Error.FailedFetchingAuthentication": "Failed to fetch authentication info",
"World.Error.JoinAlreadyRequested": "Join has already been requested",
"World.Error.FailedConnectToRelay": "Failed to connect to relay",
"World.Error.FailedToConnect": "Failed to establish connection",
"World.Error.InvalidAddress": "Invalid Address",
"World.Error.NoPort": "No Port Specified",
"World.Error.IncompatibleVersion": "Incompatible Neos Version",
"World.Error.Unknown": "Unknown Error",
"World.Config.Name": "World Name:",
"World.Config.Description": "Description:",
"World.Config.MaxUsers": "Maximum Users:",
"World.Config.MobileFriendly": "Mobile Friendly",
"World.Config.SaveOptionsHeader": "World Save Options:",
"World.Config.EditMode": "Edit Mode:",
"World.Config.AccessLevelHeader": "Who can join this world?",
"World.Config.AutoKickAFK": "Auto Kick AFK users:",
"World.Config.AutoKickAFKMinutes": "Max AFK Minutes:",
"World.Config.HideFromListing": "Don't show in session lists",
"World.Config.Autosave": "Autosave (will overwrite last save):",
"World.Config.AutosaveInterval": "Autosave interval (minutes):",
"World.Config.CleanupAssets": "Cleanup Unused Assets:",
"World.Config.CleanupInterval": "Cleanup interval (seconds):",
"World.Actions.StartSession": "Start Session",
"World.Actions.Join": "Join",
"World.Actions.Focus": "Focus",
"World.Actions.Close": "Close World",
"World.Actions.Leave": "Leave World",
"World.Actions.Save": "Save Changes",
"World.Actions.SaveAs": "Save As...",
"World.Actions.SaveCopy": "Save Copy...",
"World.Actions.SaveHere": "Save Here",
"World.Actions.SaveToInventory": "Save To Inventory",
"World.Actions.Saving": "Saving...",
"World.Actions.Discard": "Discard Changes",
"World.Actions.Clone": "Clone World",
"World.Actions.Delete": "Delete World",
"World.Actions.ConfirmDelete": "Confirm Delete",
"World.Actions.ReallyConfirmDelete": "PERMANENTLY DELETE",
"World.Actions.Overwrite": "Overwrite with {name}",
"World.Actions.ConfirmOverwrite": "Confirm OVERWRITE",
"World.Actions.Overwriting": "Overwriting...",
"World.Actions.ClosePrompt": "Close World?",
"World.Actions.LeavePrompt": "Leave World?",
"World.Actions.CloseConfirm": "Close",
"World.Actions.LeaveConfirm": "Leave",
"World.Actions.CannotClose": "(cannot close this world)",
"World.Actions.GuestWarning": "",
"World.Actions.HostingWarning": "You're hosting this world. All users will be disconnected.",
"World.Actions.GetWorldOrb": "Get World Orb",
"World.Actions.CopyWorldURL": "Copy World URL",
"World.Actions.CopyRecordURL": "Copy Record URL",
"World.Actions.StartCustomSession": "Start Custom Session",
"World.Actions.ModifyMetadata": "Edit Metadata",
"World.Actions.GetSessionOrb": "Get Session Orb",
"World.Actions.CopySessionURL": "Copy Session URL",
"World.Indicator.NoData": "No Data",
"World.Indicator.LocalWorld": "Local Machine",
"World.Indicator.Author": "By: {name}",
"World.Indicator.Host": "Host: {name}",
"World.Indicator.Hosting": "Hosting",
"World.Indicator.Sessions": "{n,plural, one {# session} other {# sessions}}",
"World.Indicator.Users": "Users",
"World.Indicator.Users.None": "(no active sessions found)",
"World.Indicator.Description": "Description",
"World.Indicator.Description.None": "(no description provided)",
"World.Indicator.Visited": "(visited)",
"World.Detail.ActiveSessions": "Active Sessions:",
"World.Detail.ActiveUsers": "Active Users:",
"World.Detail.NewSession": "<new session>",
"World.Detail.DescriptionHeader": "Description: ",
"World.Detail.SessionInformationHeader": "Session Information",
"World.Detail.Uptime": "Uptime",
"World.Detail.AccessLevel": "Visibility",
"World.Detail.Users": "Users",
"World.Detail.Users.Count": "{active}{away, select, 0 {} other { (+{away} away)}} out of {max}",
"World.Detail.WorldInformationHeader": "World Information",
"World.Detail.PublishDate": "Published",
"World.Detail.ModifyDate": "Last Updated",
"World.Detail.Visits": "Visits",
"World.Detail.Tags": "Tags",
"World.Detail.ActionsHeader": "Actions:",
"World.Category.Everything": "Everything",
"World.Category.Featured": "Featured",
"World.Category.PublishedWorlds": "Published Worlds",
"World.Category.ActiveSessions": "Active Sessions",
"World.Category.FriendSessions": "Contacts Sessions",
"World.Category.HeadlessSessions": "Headless Sessions",
"World.Category.Social": "Social",
"World.Category.Games": "Games",
"World.Category.Art": "Art",
"World.Category.Tutorials": "Tutorials",
"World.Category.Educational": "Educational",
"World.Category.Random": "Shuffle",
"World.Category.MyWorlds": "My Worlds",
"World.Category.Custom": "Custom",
"World.AccessLevel.Anyone": "Anyone",
"World.AccessLevel.RegisteredUsers": "Registered Users",
"World.AccessLevel.Friends": "Contacts",
"World.AccessLevel.FriendsOfFriends": "Contacts+",
"World.AccessLevel.LAN": "LAN",
"World.AccessLevel.Private": "Private (invite only)",
"World.SortParameter.SearchScore": "Search Score",
"World.SortParameter.Name": "Name",
"World.SortParameter.OpenedWorldCount": "Opened Worlds",
"World.SortParameter.TotalSessionCount": "Total Sessions",
"World.SortParameter.TotalUserCount": "Total Users",
"World.SortParameter.CreationDate": "Creation Date",
"World.SortParameter.LastUpdateDate": "Modification Date",
"World.SortParameter.FirstPublishTime": "Published Date",
"World.SortParameter.TotalVisits": "Total Visits",
"World.SortParameter.LastVisit": "Last Visit",
"World.SortParameter.Random": "Random",
"World.Filter.DataSources": "Data Sources:",
"World.Filter.OpenedWorlds": "Opened Worlds",
"World.Filter.ActiveSessions": "Active Sessions",
"World.Filter.PublishedWorlds": "Published Worlds",
"World.Filter.LocalWorlds": "Local Worlds",
"World.Filter.BaseSearch": "Base Search:",
"World.Filter.ByOwner": "By Owner:",
"World.Filter.UserOwner": "Owner is User",
"World.Filter.GroupOwner": "Owner is Group",
"World.Filter.SubmittedToGroup": "Submitted To Group:",
"World.Filter.Featured": "Only Featured",
"World.Filter.MyWorlds": "My Worlds",
"World.Filter.SessionFiltering": "Session Filtering:",
"World.Filter.MinimumUsers": "Minimum Users: <b>{n}</b>",
"World.Filter.MinimumFriends": "Minimum Contacts: <b>{n}</b>",
"World.Filter.OnlyHeadless": "Only Headless Hosts",
"World.Filter.MaxAccessLevel": "Maximum Access Level:",
"World.Filter.MinimumUptime": "Minimum Uptime:",
"World.Filter.Sorting": "Sorting:",
"World.Edit.Title": "Edit World Metadata",
"World.Edit.Name": "World Name:",
"World.Edit.Description": "Description:",
"World.Edit.Tags": "Tags (comma separated):",
"World.Edit.Path": "World Path:",
"World.Edit.AccessLevelHeader": "Who can open this world?",
"World.Edit.AccessPrivate": "Only Me",
"World.Edit.AccessPatreon": "Patreon Supporters",
"World.Edit.AccessPublic": "Anyone (public)",
"Tools.AvatarCreator": "Avatar Creator",
"Tools.FullBodyCalibrator": "Full Body / Avatar Calibrator",
"Tools.CameraStreaming": "Camera / Streaming",
"Tools.CreateNewWorld": "Create New World",
"Tools.DepositNCR": "Deposit NCR",
"Tools.WithdrawNCR": "Withdraw NCR",
"Tools.Debug": "Debug",
"Tools.StreamAudio": "Stream Audio",
"Tools.Setup2FA": "Setup 2FA",
"Tools.BuyStorage": "Buy Storage",
"Tools.StreamAudio.Start": "Start Streaming",
"Tools.StreamAudio.Bitrate": "Bitrate: {bitrate} kbps",
"Tools.StreamAudio.Title": "{username} Audio Stream",
"Tools.StreamAudio.Spatialized": "Spatialized",
"Tools.StreamAudio.Broadcast": "Broadcast",
"Tools.StreamAudio.PlayForOwner.Off": "Play for owner: Off",
"Tools.StreamAudio.PlayForOwner.On": "Play for owner: On",
"Tools.BuyStorage.Title.Self": "Buy additional storage space",
"Tools.BuyStorage.Title.Gift": "Gift storage space to {name}",
"Tools.BuyStorage.Description": "This will add additional storage to the account. If it already has additional storage from other sources (e.g. Patreon), it will be added on top. If you purchased the same amount of storage previously with NCR, its duration will be extended.",
"Tools.BuyStorage.Amount": "Amount (GB):",
"Tools.BuyStorage.Months": "Months:",
"Tools.BuyStorage.Cost": "Cost: {n} NCR",
"Options.FreeformDash.On": "Freeform Dash: On",
"Options.FreeformDash.Off": "Freeform Dash: Off",
"Options.SeatedMode.On": "Seated Mode: On",
"Options.SeatedMode.Off": "Seated Mode: Off",
"Options.Nameplates.All": "Nameplates: All",
"Options.Nameplates.NonContacts": "Nameplates: Non-contacts",
"Options.Nameplates.Hide": "Nameplates: Hide",
"Indicator.OnlineUsers": "Online Users: {num_registered} (~{num_total})",
"Indicator.ServerStatus": "<color=#fff>Server Status:</color> {status, select, Good {Good} Slow {Slow} Down {Down} NoInternet {No Internet}} ({response_ms} ms)",
"Indicator.Sync.AllSynced": "All Synced",
"Indicator.Sync.SyncingItems": "Syncing {item_count,plural, one {# item} other {# items}} <nobr>({item_percent} %)",
"Indicator.Sync.UploadingVariants": "Uploading {variant_count,plural, one {# asset variant} other {# asset variants}}",
"Indicator.Sync.SyncError": "Sync Error! <size=50%>Check log for details</size>",
"Indicator.Sync.OutOfSpace": "Out of Space! <size=50%>Cannot sync</size>",
"Indicator.LiveHiddenMessage": "(information hidden while live)",
"Account.Login": "Login",
"Account.Logout": "Logout",
"Account.Register": "Register",
"Account.LoginOrRegister": "Login / Register",
"Account.LogoutConfirm": "Really logout?",
"Account.LoggingIn": "Logging in...",
"Account.LoggingOut": "Logging out...",
"Account.Registering": "Registering...",
"Account.Anonymous": "Anonymous",
"Account.PatreonSupporter": "Patreon Supporter",
"Account.Username": "Username:",
"Account.Email": "Email:",
"Account.RememberMe": "Remember Me (for 7 days):",
"Account.RepeatEmail": "Repeat Email:",
"Account.UsernameOrEmail": "Username or Email:",
"Account.Password": "Password:",
"Account.RepeatPassword": "Repeat Password:",
"Account.RecoverPassword": "Lost Password?",
"Account.LiveEmailWarning": "<color=#f00>WARNING:</color> live.com, hotmail.com, outlook.com and other Microsoft-hosted services can take up to 1-2 days to accept the email.",
"Account.PasswordRules": "(at least 8 characters, 1 digit, 1 lowercase, 1 uppercase)",
"Account.AgeConfirm": "I am 13 years of age or older",
"Account.LostPassword": "Lost Password",
"Account.SendRecoveryCode": "Send Recovery Code",
"Account.ResetPasswordHeader": "Reset Your Password",
"Account.ResetPasswordInstructions": "A recovery code has been sent to your email. Copy it to the field below:",
"Account.RecoveryCode": "Recovery Code:",
"Account.NewPassword": "New Password:",
"Account.ResetPassword": "Set New Password",
"Account.Requesting": "Requesting...",
"Account.ErrorPasswordMismatch": "Passwords do not match!",
"Account.ErrorEmailMismatch": "Emails do not match!",
"Account.ErrorLoginError": "Login Error:",
"Account.RegistrationSuccess": "<size=120%>Success!</size><br><br>An email has been sent to {email} with a verification link.<br><br>Once you click on this link, we'll automatically log you in as long as this dialog is open.<br><br>If you run into problems, reach us at hello@neos.com or discord.gg/neosvr",
"Account.TOTP.Initializing": "Checking status of 2FA for your account...",
"Account.TOTP.Code.Header": "Secret Code",
"Account.TOTP.Code.Description": "First you need to input a secret code to your TOTP authentication app such as <b>Authy</b> or <b>Google Authenticator</b>.<br><br>We recommend doing this by scanning the QR code, but alternatively you can manually input the secret code. <b>Never share this code with anyone.</b><br><br>If you're in VR you can switch to desktop by pressing F8.",
"Account.TOTP.Code.QRCode": "Scan QR Code",
"Account.TOTP.Code.Key": "Secret code:",
"Account.TOTP.RecoveryCodes.Header": "Recovery Codes",
"Account.TOTP.RecoveryCodes.Description": "Save these codes in a secure location. They can be used to recover access to your account in case you lose or damage your phone. Each code can be used only once. <b>Never share them with anyone.</b> If you lose them, you will <color=red>PERMANENTLY</color> lose access to your account.",
"Account.TOTP.RecoveryCodes.Codes": "Codes:",
"Account.TOTP.Activate.Header": "Activate 2FA",
"Account.TOTP.Activate.Description": "In order to activate the 2FA on your account, use the 6-digit token generated by your authenticator app to ensure that everything is working correctly.<br><br>Once activated, you'll need to use the code to confirm certain operations.<br><br>Note: Currently the code is only used for NCR transactions, but this will be expanded to account login in the future.",
"Account.TOTP.Activate.Token": "6-digit token:",
"Account.TOTP.Activate.TokenField": "Enter your token here...",
"Account.TOTP.Activate.Activate": "Activate",
"Account.TOTP.Activate.Activating": "Activating...",
"Account.TOTP.Activate.InvalidToken": "Invalid token!",
"Account.TOTP.Message.AlreadySetup": "2FA has already been setup on your account!",
"Account.TOTP.Message.Error": "Unexpected error! Please try again later.",
"Account.TOTP.Message.SetupComplete": "<size=150%>Congratulations!</size><br><br>Your account is now setup with 2FA for extra protection!<br><br>Currently any NCR interactions will require you to input your code. You can optionally enable this for account login with /enableLogin2FA command, but note this requires you to use /webLogin command before you login on account.neos.com",
"Account.TOTP.Deactivate.Header": "Deactivate 2FA",
"Account.TOTP.Deactivate.Description": "2FA is currently <b><color=green>setup and active on your account</color></b>. If you need to deactivate it (e.g. due to loss of your phone or the codes being compromised), you can do so here.<br><br>After deactivation, you can setup 2FA again, which will generate a brand new secret code and new set of recovery codes.<br><br>If you lose your phone and need to setup 2FA again, we <b>STRONGLY</b> advise you do so immediately, as each recovery code can be used only once and after you run out you'll be completely locked out of your account.",
"Account.TOTP.Deactivate.Deactivate": "Deactivate",
"Account.TOTP.Deactivate.Deactivating": "Deactivating...",
"Account.TOTP.Message.DeactivationComplete": "2FA has been successfully deactivated on your account.<br><br>Your account is now at increased risk!<br><br>We strongly recommend setting up 2FA again immediately, especially if you used a recovery code due to losing your phone.",
"2FA.Header": "2FA Verification",
"2FA.Token": "6-digit Token:",
"Profile.Status.Online": "Online",
"Profile.Status.Away": "Away",
"Profile.Status.Busy": "Busy",
"Profile.Status.Invisible": "Invisible",
"Profile.Status.Offline": "Offline",
"Session.Tab.Settings": "Settings",
"Session.Tab.Users": "Users",
"Session.Tab.Permissions": "Permissions",
"Session.Permission.Anonymous": "Default Anonymous:",
"Session.Permission.Vistor": "Default Visitor:",
"Session.Permission.Contact": "Default Contact:",
"Session.Permission.Host": "Default Host:",
"Session.Permission.PermissionOverrideCount": "Permission Overrides: {n,select, -1 {---} other {{n}}}",
"Session.Permission.ClearOverrides": "Clear User Overrides",
"Permissions.NotAllowedToSpawn": "You are not allowed to spawn things here.",
"Permissions.NotAllowedToSave": "You are not allowed to save items in this world.",
"Permissions.NotAllowedToSwapAvatar": "You are not allowed to swap to custom avatar here.",
"User.Actions.Silence": "Silence",
"User.Actions.Mute": "Mute",
"User.Actions.Jump": "Jump",
"User.Actions.Respawn": "Respawn",
"User.Actions.Kick": "Kick",
"User.Actions.Ban": "Ban",
"Contacts.Add": "Add Contact",
"Contacts.Remove": "Remove Contact",
"Contacts.ConfirmRemove": "Really remove?",
"Contacts.AcceptRequest": "Accept Request",
"Contacts.IgnoreRequest": "Ignore Request",
"Contacts.Invite": "Invite Here",
"Contacts.SendCredits": "Send Credits",
"Contacts.GiftStorage": "Gift Storage Space",
"Contacts.BanFromAllSessions": "Ban from my hosted sessions",
"Contacts.UnbanFromAllSessions": "Unban from my hosted sessions",
"Contacts.BanFromCurrentWorld": "Ban from current world",
"Contacts.UnbanFromCurrentWorld": "Unban from current world",
"Contacts.RecordingVoiceMessage": "Recording voice...",
"Contacts.TokensDisabled": "NCR/KFC/CDFT related functionality is disabled in this build.",
"Contacts.InSession": "In {name}",
"Contacts.InPrivate": "In Private World",
"Contacts.InFriendsOnly": "In Contacts Only World",
"Contacts.InHidden": "In Hidden World",
"Contacts.InHiddenFriendsOnly": "In Hidden, Contacts Only World",
"Contacts.InHiddenFriendsOfFriends": "In Hidden, Contacts+ World",
"Contacts.InLAN": "In LAN World",
"Contacts.UsingDifferentVersion": "Using version {version}",
"Contacts.RequestSent": "Request sent",
"Contacts.RequestReceived": "Contact request",
"Contacts.RequestIgnored": "Ignored",
"Contacts.Blocked": "Blocked",
"Contacts.SearchResult": "Search Result",
"Contacts.Bot": "Bot account",
"Notifications.IsOnline": "Is now Online",
"Notifications.IsOnlineOnDifferentVersion": "Is now Online <size=75%>(using version: {version})</size>",
"Notifications.ReceivedContactRequest": "Sent a contact request",
"Notifications.ReceivedInvite": "Is inviting you to:",
"Notifications.ReceivedItem": "Sent you an item:",
"Notifications.ReceivedCredits": "Sent {amount} {token}",
"Notifications.TransferedCredits": "Transferred {amount} {token}",
"Notifications.ReceivedTip": "Received tip {amount} {token}",
"Notifications.SentTip": "Sent tip {amount} {token}",
"Notifications.VoiceMessage": "Sent a voice message",
"Undo.SetField": "Set field {field_name} to {value}",
"Undo.SetReference": "Set reference {ref_name} to {ref_target}",
"Undo.Spawn": "Spawn {name}",
"Undo.Destroy": "Destroy {name}",
"Undo.SpawnComponent": "Attach {component_type} on {slot_name}",
"Undo.DuplicateComponent": "Duplicate Component",
"Undo.DestroyComponent": "Destroy {component_type} on {slot_name}",
"Undo.Transform": "Moved {name}",
"Undo.Translate": "Translate",
"Undo.TranslateAlongAxis": "Translate Along Axis",
"Undo.RotateAroundAxis": "Rotate Around Axis",
"Undo.ResetPosition": "Reset Position",
"Undo.ResetRotation": "Reset Rotation",
"Undo.ResetScale": "Reset Scale",
"Undo.GrabObjects": "Grab Objects",
"Undo.DestroyGrabbed": "Destroy Grabbed Objects",
"Undo.DuplicateGrabbed": "Duplicate Grabbed Objects",
"Undo.ChangeBoxSize": "Change Box Size",
"Undo.BrushStroke": "Brush Stroke",
"Undo.ChangeColor": "Change Color",
"Undo.CloneComponent": "Clone Component",
"Undo.MoveIKBone": "Move IK Bone",
"Undo.MoveSun": "Move The Sun",
"Undo.ApplyMaterial": "Apply Material",
"Undo.BakeMeshes": "Bake {name}",
"Undo.ChangeMesh": "Change Mesh",
"Undo.InsertParent": "Insert Parent for {name}",
"Undo.Wiggler": "Evil Stuff",
"Undo.ExtractMaterialsFromHierarchy": "Extract Materials from Hierarchy",
"Undo.BatchConvertMaterials": "Batch convert materials",
"Tooltips.Dev.CreateNew": "Create New...",
"Tooltips.Dev.Selection": "Selection: {mode}",
"Tooltips.Dev.DevMode.Off": "Developer Mode: Off",
"Tooltips.Dev.DevMode.On": "Developer Mode: On",
"Tooltips.Dev.OpenInspector": "Open Inspector",
"Tooltips.Dev.DeselectAll": "Deselect All",
"Tooltips.Dev.DestroySelected": "Destroy Selected",
"Tooltips.Dev.ConfirmDestroySelected": "REALLY Destroy Selected",
"Tooltip.Logix.NodeBrowser": "Node Browser",
"Tooltip.Logix.UnpackChildren": "Unpack children & connected nodes",
"Tooltip.Logix.SetPackingRoot": "Set Packing Root",
"Tooltip.Logix.ClearPackingRoot": "Clear Packing Root",
"Tooltip.Color.Picker": "Color Picker",
"Tooltip.GrabbableSetter.Scalable": "Set Scalable",
"Tooltip.GrabbableSetter.NonScalable": "Set Non-scalable",
"Tooltip.GrabbableSetter.ApplyToRoot": "Set Apply to Root",
"Tooltip.GrabbableSetter.AppyToHit": "Set Apply to Hit",
"Tooltip.CharacterCollider.MarkGrippable": "Mark Grippable",
"Tooltip.CharacterCollider.DontMarkGrippable": "Don't Mark Grippable",
"Tooltip.CharacterCollider.EnsureWalkRun": "Ensure Walk/Run locomotion",
"Tooltip.CharacterCollider.EnsureZeroG": "Ensure Zero-G locomotion",
"Tooltip.CharacterCollider.EnsurePhysicalFly": "Ensure Physical Fly locomotion",
"Tooltip.Light.Point": "Point",
"Tooltip.Light.Spot": "Spot",
"Tooltip.Light.Sun": "Sun",
"Tooltip.MeshVisibility.KeepShadow": "Keep Shadow",
"Tooltip.MeshVisibility.ShadowOff": "Disable Shadow",
"Tooltip.MeshVisibility.ShadowOn": "Enable Shadow",
"Tooltip.MeshVisibility.OnlyShadow": "Set to only shadow",
"Tooltip.MeshVisibility.DoubleSidedShadow": "Set to double sided shadow",
"Tooltip.Slicer.Add": "Add Slicer",
"Tooltip.Slicer.Clear": "Clear Setup",
"Tooltip.Material.RayMode": "Ray Mode",
"Tooltip.Material.AreaMode": "Area Mode",
"Tooltip.Material.ObjectMode": "Object Global Mode",
"Tooltip.Material.SceneMode": "Scene Global Mode",
"Tooltip.Material.CreateCopy": "Create Copy",
"Tooltip.Material.Edit": "Edit Material",
"Tooltip.Material.Convert": "Convert to...",
"Tooltip.Material.ConvertAll": "Convert All to...",
"Tooltip.Material.CreateNew": "Create New",
"Tooltip.Mesh.Edit": "Edit Mesh",
"Tooltip.Microphone.Format.WAV": "WAV",
"Tooltip.Microphone.Format.Vorbis": "OGG Vorbis",
"Tooltip.Microphone.Format.FLAC": "FLAC",
"Tooltip.Microphone.ModeHold": "Hold to record",
"Tooltip.Microphone.ModePress": "Press to start/stop recording",
"Tooltip.Microphone.SourceRaw": "Raw",
"Tooltip.Microphone.SourceFiltered": "Filtered & Normalized",
"CreateNew.Back": "<<< <i>Back</i>",
"CreateNew.EmptyObject": "Empty Object",
"CreateNew.ParticleSystem": "Particle System",
"CreateNew.Object": "Object",
"CreateNew.Object.AvatarCreator": "Avatar Creator",
"CreateNew.Object.Camera": "Camera",
"CreateNew.Object.ReflectionProbe": "Reflection Probe",
"CreateNew.Object.Mirror": "Mirror",
"CreateNew.Object.Portal": "Portal",
"CreateNew.Object.VideoPlayer": "Video Player",
"CreateNew.Object.SpawnArea": "Spawn Area",
"CreateNew.Object.SpawnPoint": "Spawn Point",
"CreateNew.Object.UIXCanvas": "UIX Canvas",
"CreateNew.Object.Facet": "Facet",
"CreateNew.Object.FogVolume": "Fog Volume",
"CreateNew.Object.FogVolume.Additive": "Additive",
"CreateNew.Object.FogVolume.Alpha": "Alpha",
"CreateNew.Object.FogVolume.Multiplicative": "Multiplicative",
"CreateNew.Object.FogVolume.Gradient": "Gradient",
"CreateNew.Text": "Text",
"CreateNew.Text.Basic": "Basic",
"CreateNew.Text.Outline": "Outline",
"CreateNew.Editor": "Editor",
"CreateNew.Editor.UserInspector": "User Inspector",
"CreateNew.Editor.LightSourcesWizard": "World Light Sources Wizard",
"CreateNew.Editor.TextRendererWizard": "World Text Renderer Wizard",
"CreateNew.Editor.AssetOptimizationWizard": "Asset Optimization Wizard",
"CreateNew.Editor.LogixTransferWizard": "LogiX Transfer Wizard",
"CreateNew.Editor.CubemapCreator": "Cubemap Creator",
"CreateNew.Editor.ReflectionProbes": "Reflection Probe Wizard",
"CreateNew.3DModel": "3D Model",
"CreateNew.3DModel.Triangle": "Triangle",
"CreateNew.3DModel.Box": "Box",
"CreateNew.3DModel.Sphere": "Sphere",
"CreateNew.3DModel.Capsule": "Capsule",
"CreateNew.3DModel.Cone": "Cone",
"CreateNew.3DModel.Cylinder": "Cylinder",
"CreateNew.3DModel.Quad": "Quad",
"CreateNew.3DModel.Grid": "Grid",
"CreateNew.3DModel.Torus": "Torus",
"CreateNew.Collider": "Collider",
"CreateNew.Collider.Box": "Box",
"CreateNew.Collider.Sphere": "Sphere",
"CreateNew.Collider.Capsule": "Capsule",
"CreateNew.Collider.Cylinder": "Cylinder",
"CreateNew.Collider.Cone": "Cone",
"CreateNew.Collider.Mesh": "Mesh",
"CreateNew.Light": "Light",
"CreateNew.Light.Point": "Point",
"CreateNew.Light.Spot": "Spot",
"CreateNew.Light.Directional": "Directional",
"CreateNew.Materials": "Materials",
"CreateNew.Directory.Title": "Create new directory:",
"CreateNew.Directory.Error.EmptyName": "Please provide a name:",
"CreateNew.Directory.Error.LongName": "Name is too long:",
"CreateNew.Directory.Error.InvalidName": "Invalid name:",
"AvatarCreator.Title": "Avatar Creator",
"AvatarCreator.Instructions": "Align avatar objects with the headset and controller references (optional) and press Create to convert them to an avatar",
"AvatarCreator.UseSymmetry": "Use Symmetry",
"AvatarCreator.ShowToolAnchors": "Show Tool Anchors",
"AvatarCreator.SetupVolumeMeter": "Setup Volume Meter",
"AvatarCreator.SetupEyes": "Setup Eyes",
"AvatarCreator.SetupFaceTracking": "Setup Face Tracking",
"AvatarCreator.ProtectAvatar": "Protect Avatar",
"AvatarCreator.CalibrateFeet": "Calibrate Feet",
"AvatarCreator.CalibrateHips": "Calibrate Pelvis/Hips",
"AvatarCreator.AlignHeadForward": "Align Head Forward",
"AvatarCreator.AlignHeadUp": "Align Head Up",
"AvatarCreator.AlignHeadRight": "Align Head Right",
"AvatarCreator.CenterHead": "Center Head Position",
"AvatarCreator.TryAlignHands": "Try Align Hands",
"AvatarCreator.AlignToolAnchors": "Align Tool Anchors",
"AvatarCreator.Create": "Create",
"Importer.General.AsRawFile": "Raw File",
"Importer.Folder.Title": "Folder Importer",
"Importer.Folder.Individual": "Individual import",
"Importer.Folder.Individual.Description": "Creates a separate import dialog for each supported file in the folder",
"Importer.Folder.Batch": "Batch import",
"Importer.Folder.Batch.Description": "Creates a single importer for each type, using same settings for each file",
"Importer.Folder.Minecraft": "Minecraft World",
"Importer.Folder.Minecraft.Description": "Imports a Minecraft World if Mineways is installed.",
"Importer.Image.Title": "Image Importer",
"Importer.Image.Prompt": "What are you importing?",
"Importer.Image.Regular": "Image / Texture",
"Importer.Image.Screenshot": "Neos Photo <size=50%>(captured here)</size>",
"Importer.Image.360": "360° photo / skybox",
"Importer.Image.StereoPhoto": "Stereo Photo",
"Importer.Image.Stereo360": "Stereo 360° photo",
"Importer.Image.180": "180° photo",
"Importer.Image.Stereo180": "Stereo 180° photo",
"Importer.Image.LUT": "LUT",
"Importer.ImageVideo.LayoutPrompt": "What layout does it use?",
"Importer.ImageVideo.LayoutHorizontalLR": "Side by Side LR",
"Importer.ImageVideo.LayoutHorizontalRL": "Side by Side RL",
"Importer.ImageVideo.LayoutVerticalLR": "Top Bottom LR",
"Importer.ImageVideo.LayoutVerticalRL": "Top Bottom RL",
"Importer.Model.Title": "Model Importer",
"Importer.Model.Prompt": "What are you importing?",
"Importer.Model.Regular": "3D Model",
"Importer.Model.3DScan": "3D Scan",
"Importer.Model.CAD": "CAD Model",
"Importer.Model.PointCloud": "Point Cloud",
"Importer.Model.VertexColorModel": "Vertex Colored Model",
"Importer.Model.AdvancedSettings": "Advanced Settings",
"Importer.Model.ModelKindPrompt": "What kind of 3D model?",
"Importer.Model.RegularKind": "Regular / Avatar",
"Importer.Model.SeparableKind": "Separable with snappable pieces",
"Importer.Model.UnitsPrompt": "What units is it in?",
"Importer.Model.AutoScale": "Auto Scale (unknown scale)",
"Importer.Model.AutoHumanoid": "Auto Humanoid Height",
"Importer.Model.Meters": "Meters (m)",
"Importer.Model.Millimeters": "Millimeters (mm)",
"Importer.Model.Centimeters": "Centimeters (cm)",
"Importer.Model.Inches": "Inches",
"Importer.Model.FinalizePrompt": "All set?",
"Importer.Model.RunImport": "Run Import!",
"Importer.Model.Advanced.Scale": "Scale: ",
"Importer.Model.Advanced.AutoScale": "Auto Scale",
"Importer.Model.Advanced.MaxTexSize": "Max Texture Size",
"Importer.Model.Advanced.ImageFormat": "Image Format: ",
"Importer.Model.Advanced.Material": "Material: ",
"Importer.Model.Advanced.PreferSpecular": "Prefer Specular",
"Importer.Model.Advanced.AlignAxis": "Align Axis: ",
"Importer.Model.Advanced.Normals": "Calculate Normals",
"Importer.Model.Advanced.Tangents": "Calculate Tangents",
"Importer.Model.Advanced.VertexColors": "Import Vertex Colors",
"Importer.Model.Advanced.Bones": "Import Bones",
"Importer.Model.Advanced.Lights": "Import Lights",
"Importer.Model.Advanced.TextureAlpha": "Calculate Texture Alpha",
"Importer.Model.Advanced.AlbedoColor": "Import Albedo Color",
"Importer.Model.Advanced.ImportEmissive": "Import Emissive",
"Importer.Model.Advanced.Colliders": "Generate Colliders",
"Importer.Model.Advanced.Animations": "Import Animations",
"Importer.Model.Advanced.SetupSnappable": "Setup as snappable",
"Importer.Model.Advanced.SetupTimelapse": "Setup as timelapse",
"Importer.Model.Advanced.ImportExternalTextures": "Import external textures",
"Importer.Model.Advanced.SkinnedMeshes": "Import skinned meshes",
"Importer.Model.Advanced.SetupIK": "Setup IK",
"Importer.Model.Advanced.VisualizeRig": "Visualize Rig",
"Importer.Model.Advanced.ForceTpose": "Force T-Pose",
"Importer.Model.Advanced.ForcePointCloud": "As Point Cloud",
"Importer.Model.Advanced.DualSided": "Make Dual Sided",
"Importer.Model.Advanced.FlatShaded": "Make Flat Shaded",
"Importer.Model.Advanced.DeduplicateInstances": "Deduplicate Instances (slow)",
"Importer.Model.Advanced.Optimize": "Optimize Model/Scene",
"Importer.Model.Advanced.SplitSubmeshes": "Split Submeshes",
"Importer.Model.Advanced.RandomColors": "Generate Random Colors",
"Importer.Model.Advanced.SpawnMaterialOrbs": "Spawn Material Orbs",
"Importer.Model.Advanced.ImagesByName": "Import Images by Name",
"Importer.Model.Advanced.ForcePointFiltering": "Force Point Filtering",
"Importer.Model.Advanced.ForceNoMipMaps": "No MipMaps",
"Importer.Model.Advanced.ForceUncompressed": "Force Uncompressed",
"Importer.Model.Advanced.Grabbable": "Make Grabbable",
"Importer.Model.Advanced.Scalable": "Make Scalable",
"Importer.Model.Advanced.PositionAtOrigin": "Position At Origin",
"Importer.Model.Advanced.AssetsOnObject": "Place Assets On Object",
"Importer.Video.Title": "Video Importer",
"Importer.Video.Prompt": "What are you importing?",
"Importer.Video.Regular": "Video",
"Importer.Video.360": "360° Video",
"Importer.Video.Stereo": "Stereo Video",
"Importer.Video.Stereo360": "Stereo 360° Video",
"Importer.Video.Depth": "Depth Video",
"Importer.Video.180": "180° Video",
"Importer.Video.Stereo180": "Stereo 180° Video",
"Importer.Video.Depth.Prompt": "Depth Preset",
"Importer.Video.Depth.Default": "Default",
"Credits.Title": "Send Credits",
"Credits.TokenPrompt": "Which token do you want to send?",
"Credits.NCR.Title": "Neos Credits (<b>NCR</b>)",
"Credits.NCR.Description": "Ethereum token with real world value",
"Credits.KFC.Title": "Kompletely Fake Credits (<b>KFC</b>)",
"Credits.KFC.Description": "Neos' sandbox token with no real value.",
"Credits.AmountPrompt": "{action,select, send {How much do you want to send?} withdraw {How much do you want to withdraw?} tip {How much do you want to tip?}}",
"Credits.Amount": "Amount: ",
"Credits.Balance": "Balance: ",
"Credits.WithdrawalAddress": "Withdrawal Address:\n<color=red>Make sure your wallet supports ERC-20 tokens!</color>",
"Credits.AnonymousTip": "Anonymous Tip: ",
"Credits.TipMessage": "Tip Message: ",
"Credits.TransactionComment": "Transaction Comment: ",
"Credits.ConfirmHeader": "Confirm transaction:",
"Credits.Recipient": "Recipient:",
"Credits.Conversion": "Conversion:",
"Credits.Comment": "Comment:",
"Credits.SendWarning": "You're sending real money, please double check the information.",
"Credits.Send": "Send",
"Credits.Sending": "Sending...",
"Credits.Success": "Success!\nYou can close this window.",
"Credits.BlockchainWarning": "Please note that the transfer to blockchain can take up to 48 hours.",
"Credits.TipConfirmation": "You are about to send a tip to <b><color=#0ff>{username}</color></b>. Would you like to proceed?",
"NewWorld.Title": "New World",
"NewWorld.Template": "World Template:",
"NewWorld.CustomPreset": "Custom Preset:",
"NewWorld.SessionSettings": "Session Settings:",
"NewWorld.UnsafeMode": "Unsafe Mode:",
"NewWorld.Port": "Port:",
"NewWorld.AutoPort": "Auto:",
"NewWorld.DefaultName": "{name} World",
"FullBody.Title": "Full Body / Avatar Calibration",
"FullBody.SetHeight": "1) Set your height",
"FullBody.HeightInstructions": "Make sure this is your actual height, otherwise calibration won't work correctly. The mannequin should fit the headset and controllers.",
"FullBody.HeightWarning": "This seems incorrect. Make sure it's your actual height.",
"FullBody.ConfirmMapping": "2) Confirm tracker mapping",
"FullBody.MappingInstructions": "Stand in upright position and ensure the trackers are tracking and detected correctly.",
"FullBody.StartCalibration": "Start Tracker Calibration",
"FullBody.JustCalibrateAvatar": "Just calibrate my avatar",
"FullBody.JustCalibrateAvatarDescription": "Skip full body calibration and just calibrate the avatar",
"FullBody.SkipAndAdjustAvatar": "Skip and adjust avatar",
"FullBody.CalibrateInstructions": "Align yourself with the red body overlay in your playspace and press both triggers to confirm. Make sure your real feet and hips match the virtual ones as close as possible.",
"FullBody.BeforeCalibrationInstructions": "Make sure trackers are tracking and your height is set",
"FullBody.CalibratingPoseInstructions": "Align yourself with the reference and press both triggers to confirm",
"FullBody.AdjustAvatarInstructions": "Adjust avatar body offsets to best match the reference",
"FullBody.FineTuneCalibrationInstructions": "Verify and fine tune calibration by moving blue references",
"FullBody.CalibrateTrackersHeader": "Calibrate Trackers",
"FullBody.CalibrateTrackersInstructions": "Grab and position the blue body parts relative to the trackers to adjust their offset. They should match the location of the tracker on your body.\nYou can adjust calibration anytime later by reopening this tool.",
"FullBody.UseSymmetry": "Use Symmetry",
"FullBody.ShowBodyOverlay": "Show Body Overlay",
"FullBody.HeightCompensationInstructions": "If the mannequin is too tall (hunched) or too short, adjust the height compensation for best fit.",
"FullBody.RecalibratePrompt": "Mangled or missing trackers?",
"FullBody.Recalibrate": "Run T-Pose calibration again",
"FullBody.CalibrateAvatarPrompt": "Need to adjust avatar fit?",
"FullBody.CalibrateAvatar": "Calibrate My Avatar",
"FullBody.FinishPrompt": "All good?",
"FullBody.FinishCalibration": "Finish fullbody calibration",
"FullBody.CalibrateAvatarTitle": "Calibrate Avatar",
"FullBody.CalibrateAvatarInstructions": "Make sure all body parts are mapped and then drag the blue spheres around, to make the avatar best match the body reference.",
"FullBody.ShowReferenceOverlay": "Show Reference Overlay",
"FullBody.ResetAvatarPrompt": "Avatar mangled or not tracking?",
"FullBody.ResetAvatar": "Reset Mapping",
"FullBody.AvatarHeightCompensationInstructions": "If the avatar is too tall (ends up hunched up) or too short for you, adjust its height compensation here so it better fits your height.",
"FullBody.AvatarHeightCompensation": "Avatar Height Compensation: {n, number, percent}",
"FullBody.ResetAvatarHeightCompensation": "Reset Height Compensation",
"FullBody.AvatarSaveWarning": "Don't forget to save your avatar after you're finished calibrating it!",
"FullBody.FinishAvatarCalibration": "Finish Avatar Calibration",
"FullBody.CalibrationFinishedInstructions": "If you're satisfied with the calibration, you can save your avatar now and exit.",
"FullBody.CloseCalibrator": "Close Calibrator",
"FullBody.CalibrationRedoInstructions": "If the calibration is off or you want to calibrate more avatars you can make more adjustments. You can also reopen this calibrator any time in the future to make adjustments.\nIf you've only changed your trackers, you don't need to calibrate your avatars again.",
"FullBody.ReturnToTrackerCalibration": "Return to tracker calibration",
"FullBody.Hips": "Hips",
"FullBody.Feet": "Feet",
"FullBody.Chest": "Chest",
"FullBody.Elbows": "Elbows",
"FullBody.Knees": "Knees",
"FullBody.TrackerMapped": "Tracker Mapped",
"FullBody.NotTracking": "Not Tracking...",
"FullBody.NoTracker": "No Tracker Mapped",
"FullBody.FeetNotTracking": "Feet not tracking...",
"FullBody.AvatarPointMapped": "Mapped",
"FullBody.AvatarPointNotMapped": "Not Mapped",
"FullBody.AvatarPointNoTracker": "No Tracker",
"CameraControl.Title": "Camera Control",
"CameraControl.MirroringOffWarning": "MIRRORING OFF",
"CameraControl.MirrorToDisplay": "Mirror to display",
"CameraControl.TakePhoto": "Photo",
"CameraControl.Take360Photo": "360° Photo",
"CameraControl.Mode.SmoothPOV": "Smooth POV",
"CameraControl.Mode.ThirdPerson": "Third Person",
"CameraControl.Mode.Group": "Group",
"CameraControl.Mode.World": "World",
"CameraControl.Mode.Manual": "Manual",
"CameraControl.Settings.AvoidOcclusion": "Avoid Occlusion",
"CameraControl.Settings.KeepInWorldspace": "Keep In Worldspace",
"CameraControl.Settings.MovementWobble": "Movement Wobble",
"CameraControl.Settings.AimInFrontOfHead": "Aim In Front of Head",
"CameraControl.Settings.HideCamera": "Hide Camera",
"CameraControl.Settings.ForceEyesOnCamera": "Force Eyes On Camera",
"CameraControl.Settings.HideBadges": "Hide Badges",
"CameraControl.Settings.HideLasers": "Hide Lasers",
"CameraControl.Settings.ShowFrustum": "Show Frustum",
"CameraControl.Settings.PhotoTimer": "Photo Timer",
"CameraControl.Settings.ShowLiveBadge": "Show Live Badge",
"CameraControl.Settings.AudioFromCameraViewpoint": "Audio from camera viewpoint",
"CameraControl.OpenCloseUsers": "Users",
"CameraControl.CreateCameraAnchor": "Create Camera Anchor",
"CameraControl.Anchors.Interpolate": "Interpolate between anchors",
"CameraControl.Anchors.InterpolationSpeed": "Anchor Interpolation Speed:",
"CameraControl.Anchors.LinearInterpolation": "Linear Interpolation",
"CameraControl.Anchors.NoAnchors": "No camera anchors in this world",
"CameraControl.Positioning.FieldOfView": "Field of View",
"CameraControl.Positioning.AngleOffset": "Angle Offset",
"CameraControl.Positioning.Distance": "Distance",
"CameraControl.Positioning.Height": "Height",
"CameraControl.Positioning.FirstPersonPitch": "First Person Pitch",
"CameraControl.Positioning.FirstPersonRoll": "First Person Roll",
"CameraControl.Positioning.FirstPersonOffset": "First Person Offset",
"CameraControl.Positioning.Reset": "Reset",
"CameraControl.Control.AnyoneCanInteract": "Anyone Can Interact",
"CameraControl.Control.RenderPreviewForEveryone": "Render Preview For Everyone",
"CameraControl.Control.RenderPrivateUI": "Render Private UI",
"CameraControl.Control.MotionBlur": "Motion Blur",
"CameraControl.Control.ScreenSpaceReflections": "Screen Space Reflections",
"CameraControl.Control.SpawnPhotoInWorld": "Spawn photo in the world",
"CameraControl.Control.FlipPreview": "Flip Preview",
"CameraControl.Control.GroupDetectionRadius": "Group Detection Radius: {n} m",
"CameraControl.Control.GroupExcludeBoundary": "Group Exclude Boundary: {n} m",
"CameraControl.Control.PositionSmoothSpeed": "Position Smooth Speed: {n}",
"CameraControl.Control.AngleSmoothSpeed": "Angle Smooth Speed: {n}",
"CameraControl.Control.FramingSmoothSpeed": "Framing Smooth Speed: {n}",
"CameraControl.OBS.IP": "OBS Websocket IP:",
"CameraControl.OBS.Password": "OBS Password (optional):",
"CameraControl.OBS.Connect": "Connect",
"CameraControl.OBS.Instructions": "Make sure that OBS is running and has the obs-websocket plugin installed",
"CameraControl.OBS.OpenInstaller": "Open installer webpage",
"CameraControl.OBS.Launch": "Launch OBS",
"CameraControl.OBS.Launching": "Launching...",
"CameraControl.OBS.Launched": "Launched!",
"CameraControl.OBS.Connecting": "Connecting...",
"CameraControl.OBS.Connected": "Connected!",
"CameraControl.OBS.Disconnected": "Disconnected!",
"CameraControl.OBS.AuthFailure": "Authentication Failure!",
"CameraControl.OBS.ConnectionFailed": "Connection failed: ",
"CameraControl.OBS.ConnectionTimeout": "Connection timeout. Is OBS running with websocket plugin installed?",
"CameraControl.OBS.UnexpectedConnectionError": "Unexpected connection error:",
"CameraControl.OBS.DisconnectedPage": "OBS Disconnected",
"CameraControl.OBS.ReturnToConnect": "Return to connect page",
"CameraControl.OBS.AutoMirror": "Auto Mirror on Record/Stream",
"CameraControl.OBS.Bitrate": "Bitrate: {n}/s",
"CameraControl.OBS.FPS": "FPS: {n}",
"CameraControl.OBS.DroppedFrames": "Dropped frames: {n}",
"CameraCOntrol.OBS.Live": "LIVE",
"CameraCOntrol.OBS.Recording": "REC",
"CameraControl.OBS.OpenInstallerReason": "This webpage lets you download the OBS websocket plugin",
"CameraControl.OBS.Streaming.Start": "Start Streaming",
"CameraControl.OBS.Streaming.Starting": "Starting Streaming...",
"CameraControl.OBS.Streaming.Stop": "Stop Streaming",
"CameraControl.OBS.Streaming.Stopping": "Stopping Streaming",
"CameraControl.OBS.Recording.Start": "Start Recording",
"CameraControl.OBS.Recording.Starting": "Starting Recording...",
"CameraControl.OBS.Recording.Stop": "Stop Recording",
"CameraControl.OBS.Recording.Stopping": "Stopping Recording",
"Settings.Height": "My Height:",
"Settings.Metric": "Metric (cm)",
"Settings.Imperial": "Imperial (ft)",
"Settings.OverrideLocale": "Override Locale:",
"Settings.HideAllTutorials": "Hide All Tutorials",
"Settings.ShowInteractionHints": "Show Interaction Hints",
"Settings.PrimaryController": "Primary Controller",
"Settings.AllowStrafing": "Allow Strafing",
"Settings.UseHeadDirectionForMovement": "Use Head Direction for movement",
"Settings.SmoothTurn": "Smooth Turn",
"Settings.SmoothTurnExclusiveMode": "Smooth Turn Exclusive Mode",
"Settings.SmoothTurnSpeed": "Smooth Turn Speed",
"Settings.SnapTurnAngle": "Snap Turn Angle",
"Settings.NoclipSpeed": "No-clip Speed",
"Settings.SpeedExponent": "Speed Exponent",
"Settings.MoveThreshold": "Movement Deadzone",
"Settings.ControllerVibration": "Controller Vibration",
"Settings.Haptics": "Haptics Feedback",
"Settings.DisablePhysicalInteractions": "Disable Physical Interactions",
"Settings.EnableGestures": "Enable Gestures",
"Settings.DoubleClickInterval": "Double Click Interval",
"Settings.ResetAllTutorials": "Reset All Tutorials",
"Settings.PreferSteamNetworking": "Prefer Steam Networking Sockets",
"Settings.DisableLAN": "Disable LAN",
"Settings.LegacyGripEquip": "Enable Legacy Double Grip Equip",
"Settings.LegacyWorldSwitcher": "Enable Legacy World Switcher",
"Settings.FetchIncompatibleSessions": "Show Incompatible Sessions",
"Settings.DoNotSendReadStatus": "Don't send realtime message read status",
"Settings.MaxConcurrentAssetTransfers": "Max Concurrent Asset Transfers",
"Settings.AutosaveScreenshotPath": "Auto-save screenshot path",
"Settings.DebugInputBinding": "Debug Input Bindings",
"Settings.LaserSmoothing.Header": "Laser Smoothing",
"Settings.LaserSmoothing.Speed": "Smooth Speed",
"Settings.LaserSmoothing.ModulateStartAngle": "Modulate Start Angle",
"Settings.LaserSmoothing.ModulateEndAngle": "Modulate End Angle",
"Settings.LaserSmoothing.ModulateExponent": "Modulate Exponent",
"Settings.LaserSmoothing.ModulateSpeedMultiplier": "Modulate Speed Multiplier",
"Settings.LaserSmoothing.StickThreshold": "Stick Threshold",
"Settings.Laser.ShowInDesktop": "Show Laser in Desktop Mode",
"Settings.LaserSmoothing.Reset": "Reset Laser Settings",
"Settings.Audio.Header": "Audio",
"Settings.Audio.Master": "Master Volume: {n,number,percent}",
"Settings.Audio.SoundEffects": "Sound Effects: {n,number,percent}",
"Settings.Audio.Multimedia": "Multimedia: {n,number,percent}",
"Settings.Audio.Voice": "Voice: {n,number,percent}",
"Settings.Audio.UI": "User Interface: {n,number,percent}",
"Settings.Audio.DisableVoiceNormalization": "Disable Voice Normalization",
"Settings.Audio.NoiseGateThreshold": "Noise Gate Threshold: {n}",
"Settings.Audio.NormzliationThreshold": "Normalization Threshold: {n}",
"Settings.Audio.NoiseSupression": "Noise Suppression Filter (RNNoise)",
"Settings.Audio.WhisperVoiceVolume": "Whisper Voice Volume (outside bubble): {n,number,percent}",
"Settings.Audio.InputDevice": "Audio Input Device:",
"Settings.Audio.OutputDevice": "Audio Output Device:",
"Settings.Audio.SelectInputDevice": "Select Audio Input Device",