forked from Neos-Metaverse/NeosLocale
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathen.json
1030 lines (908 loc) · 56.4 KB
/
en.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"localeCode" : "en",
"authors" : ["Frooxius", "Enverex"],
"messages" :
{
"General.OK" : "OK",
"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.Saved" : "Saved!",
"General.Done" : "Done!",
"General.CopiedToClipboard" : "Copied!",
"General.CopiedToClipboardLong" : "Copied to clipboard!",
"General.UI.SearchPrompt" : "Search...",
"General.UI.SearchPromptLong" : "Type to search...",
"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 and 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.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.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",
"Dash.Screens.Home" : "Home",
"Dash.Screens.Worlds" : "Worlds",
"Dash.Screens.Contacts" : "Contacts",
"Dash.Screens.Inventory" : "Inventory",
"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.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.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.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.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 every 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.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.MyWorlds" : "My Worlds",
"World.Category.Custom" : "Custom",
"World.AccessLevel.Anyone" : "Anyone",
"World.AccessLevel.RegisteredUsers" : "Registered Users",
"World.AccessLevel.Friends" : "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.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:",
"Tools.AvatarCreator" : "Avatar Creator",
"Tools.FullBodyCalibrator" : "Full Body Calibrator",
"Tools.CameraStreaming" : "Camera / Streaming",
"Tools.CreateNewWorld" : "Create New World",
"Tools.DepositNCR" : "Deposit NCR",
"Tools.WithdrawNCR" : "Withdraw NCR",
"Tools.Debug" : "Debug",
"Options.FreeformDash.On" : "Freeform Dash: On",
"Options.FreeformDash.Off" : "Freeform Dash: Off",
"Options.SeatedMode.On" : "Seated Mode: On",
"Options.SeatedMode.Off" : "Seated Mode: Off",
"Indicator.OnlineUsers" : "Online Users: ~{num_total} ({num_registered})",
"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:",
"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" : "Success! An email has been sent with a verification link. Once you open this link you'll be able to login.",
"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",
"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.BanFromAllSessions" : "Ban from ALL my sessions",
"Contacts.UnbanFromAllSessions" : "Unban from ALL my sessions",
"Contacts.BanFromCurrentWorld" : "Ban from current world",
"Contacts.UnbanFromCurrentWorld" : "Unban form current world",
"Contacts.InSession" : "In {name}",
"Contacts.InPrivate" : "In Private World",
"Contacts.InFriendsOnly" : "In Contacts Only World",
"Contacts.InHidden" : "In Hidden 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",
"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}",
"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",
"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",
"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.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.CreateNew" : "Create New",
"Tooltip.Mesh.Edit" : "Edit Mesh",
"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.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.AssetOptimizationWizard" : "Asset Optimization Wizard",
"CreateNew.Editor.LogixTransferWizard" : "LogiX Transfer Wizard",
"CreateNew.3DModel" : "3D Model",
"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",
"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.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.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" : "Created a single importer for each type, using same settings for each file",
"Importer.Image.Title" : "Image Importer",
"Importer.Image.Prompt" : "What are you importing?",
"Importer.Image.Regular" : "Image / Texture",
"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.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.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.RandomColors" : "Generate Random Colors",
"Importer.Model.Advanced.SpawnMaterialOrbs" : "Spawn Material Orbs",
"Importer.Model.Advanced.ImagesByName" : "Import Images by Name",
"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: ",
"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.",
"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 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 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.OpenCloseUsers" : "Users",
"CameraControl.CreateCameraAnchor" : "Create Camera Anchor",
"CameraControl.Anchors.Interpolate" : "Interpolate between anchors",
"CameraControl.Anchors.InterpolationSpeed" : "Anchor Interpolation Speed:",
"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.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.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.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.LegacyGripEquip" : "Enable Legacy Double Grip Equip",
"Settings.LegacyWorldSwitcher" : "Enable Legacy World Switcher",
"Settings.FetchIncompatibleSessions" : "Show Incompatible Sessions",
"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.LaserSmoothing.Reset" : "Reset Laser Settings",
"Settings.Audio.Header" : "Audio",
"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.InputDevice" : "Audio Input Device:",
"Settings.Save" : "Save Settings",
"Settings.FullBody.Header" : "Full Body Tracking:",
"Settings.FullBody.FeetPositionSmoothing" : "Feet Position Smoothing",
"Settings.FullBody.FeetRotationSmoothing" : "Feet Rotation Smoothing",
"Settings.FullBody.HipsPositionSmoothing" : "Hips Position Smoothing",
"Settings.FullBody.HipsRotationSmoothing" : "Hips Rotation Smoothing",
"Settings.Dash.Header" : "Dash",
"Settings.Dash.Curvature" : "Curvature",
"Settings.Dash.OpenCloseSpeed" : "Open/Close Speed",
"Settings.LeapMotion.Name" : "Leap Motion",
"Settings.LeapMotion.Enabled" : "Leap Tracking Enabled",
"Settings.LeapMotion.HorizontalOffset" : "Horizontal Offset",
"Settings.LeapMotion.VerticalOffset" : "Vertical Offset",
"Settings.LeapMotion.ForwardOffset" : "Forward Offset",
"Settings.LeapMotion.SnapDistance" : "Controller Hand Snap Distance",
"Settings.LeapMotion.UseFingersWhenSnapped" : "Use Fingers When Snapped",
"Settings.ViveHandTracking.Name" : "Vive Finger Tracking",
"Settings.ViveHandTracking.Enabled" : "Vive Hand Tracking Enabled",
"Settings.ViveHandTracking.SnapDistance" : "Vive Hand Tracking Snap Distance",
"Settings.ViveHandTracking.UseFingersWhenSnapped" : "Use Vive Fingers When Snapped",
"Settings.WindowsIntegration" : "Windows Integration",
"Settings.LinuxIntegration" : "Linux Integration",
"Settings.System.KeepOriginalScreenshotFormat" : "Keep original screenshot format",
"Settings.System.KeepOriginalScreenshotFormat.Description" : "When enabled, screenshots won't be converted to JPG when saved into the Documents folder",
"Security.Hyperlink.Warning" : "<b><size=125%>Warning: Outgoing hyperlink</size></b>\nYou've clicked a link in a world. Do you want to open it? This will open in your desktop web browser.",
"Security.Hyperlink.Open" : "Open",
"Security.Hyperlink.Cancel" : "Cancel",
"Security.HostAccess.Title" : "Host Access",
"Security.HostAccess.Warning" : "<b><size=125%>Warning: World is trying to access 3rd party host</size></b>\nGranting access can allow the third party to gather personal information, such as your IP and geographical location.",
"Security.HostAccess.TargetHost" : "Target Host: <b>{host}</b>",
"Security.HostAccess.Reason" : "Reason: {reason}",
"Security.HostAccess.NoReason" : "<i>No reason provided</i>",
"Security.HostAccess.Allow" : "Allow",
"Security.HostAccess.Deny" : "Deny",
"Inspector.Mesh.StatsHeader" : "Mesh Statistics",
"Inspector.Mesh.VertexCount" : "Vertex Count: {n}",
"Inspector.Mesh.TriangleCount" : "Triangle Count: {n}",
"Inspector.Mesh.PointCount" : "Point Count: {n}",
"Inspector.Mesh.SubmeshCount" : "Submesh Count: {n}",
"Inspector.Mesh.BoneCount" : "Bone Count: {n}",
"Inspector.Mesh.BlendshapeCount" : "Blendshape Count: {n}",
"Inspector.Mesh.ChannelStats" : "Normals: {normals}, Tangents: {tangents}, Colors: {colors}, UV0: {uv0}, UV1: {uv1}, UV2: {uv2}, UV3: {uv3}",
"Inspector.Mesh.BakeMesh" : "Bake Mesh",
"Inspector.Mesh.ResaveMesh" : "Resave Mesh",
"Inspector.Mesh.RecalculateNormals" : "Recalculate Normals",
"Inspector.Mesh.RecalculateNormalsSmooth" : "Recalculate Normals (smooth shading)",
"Inspector.Mesh.RecalculateTangentsMikkt" : "Recalculate Tangents (Mikktspace)",
"Inspector.Mesh.RecalculateTangentsSimple" : "Recalculate Tangents (simple)",
"Inspector.Mesh.FlipNormals" : "Flip Normals",
"Inspector.Mesh.ReverseWinding" : "Reverse Winding",
"Inspector.Mesh.MakeDualSided" : "Make Dual Sided",
"Inspector.Mesh.ConvertToFlatShading" : "Convert To Flat Shading",
"Inspector.Mesh.ConvertToConvexHull" : "Convert To Convex Hull",
"Inspector.Mesh.MergeDoubles" : "Merge Doubles",
"Inspector.Mesh.StripEmptyBlendshapes" : "Strip Empty Blendshapes",
"Inspector.Mesh.StripBlendshapeNormals" : "Strip Blendshape Normals",
"Inspector.Mesh.StripBlendshapeTangents" : "Strip Blendshape Tangents",
"Inspector.Mesh.GetBoneList" : "Get Bone List",
"Inspector.Mesh.GetBoneData" : "Get Bone Data",
"Inspector.Mesh.TrimVertexBoneWeightsTo" : "Trim Vertex Bone Weights To:",
"Inspector.Mesh.BoneTrimCount" : "{n,plural, one {# Bone} other {# Bones}}",
"Inspector.Mesh.UV_Multiplicator" : "Multiplicator:",
"Inspector.Mesh.ScaleUVs" : "Scale UVs",
"Inspector.MeshRenderer.MergeByMaterial" : "Merge submeshes with same material",
"Inspector.MeshRenderer.SplitByMaterial" : "Split into separate meshes by material",
"Inspector.SkinnedMesh.SeparateOutBlendshapes" : "Separate parts of mesh unaffected by blendshapes",
"Inspector.SkinnedMesh.StripEmptyBlendshapes" : "Strip Empty Blendshapes",
"Inspector.SkinnedMesh.StripBlendshapesResult" : "Done! Stripped: {n,plural, one {# blendshape} other {# blendshapes}}",
"Inspector.SkinnedMesh.StripEmptyBones" : "Strip Empty Bones",
"Inspector.SkinnedMesh.StripBonesResult" : "Done! Stripped: {n,plural, one {# bone} other {# bones}}",
"Inspector.SkinnedMesh.VisualizeBoneBounds" : "Visualize bone bounding boxes",
"Inspector.SkinnedMesh.VisualizeApproximateBoneBounds" : "Visualize approximate merged bone sphere bounds",
"Inspector.SkinnedMesh.ClearBoundsVisuals" : "Remove bone bounding box visuals",
"Inspector.BipedRig.GetDiagnosticInfo" : "Get rig diagnostic info",
"Inspector.BipedRig.GenerateDebugVisuals" : "Generate Debug Visuals",
"Inspector.BipedRig.ClearDebugVisuals" : "Clear Debug Visuals",
"Inspector.BipedRig.DetectHands" : "Detect Hand Rigs",
"Inspector.BipedRig.DetectLeftHand" : "Detect Left Hand Rig",
"Inspector.BipedRig.DetectRightHand" : "Detect Right Hand Rig",
"Inspector.BipedRig.HandRigResult" : "Done! Has Left: {left}, Has Right: {right}",
"Inspector.BipedRig.LeftHandRigResult" : "Done! Detected left: {detected}",
"Inspector.BipedRig.RightHandRigResult" : "Done! Detected right: {detected}",
"Inspector.Texture.Size" : "Size: {width} x {height}",
"Inspector.Texture.Format" : "Format: {format}, Memory: <nobr>{memory}</nobr>",
"Inspector.Texture.InvertRGB" : "Invert RGB",
"Inspector.Texture.InvertR" : "Invert R",
"Inspector.Texture.InvertG" : "Invert G",
"Inspector.Texture.InvertB" : "Invert B",
"Inspector.Texture.InvertA" : "Invert Alpha",
"Inspector.Texture.ColorToAlphaWhite" : "Color to Alpha (white)",
"Inspector.Texture.ColorToAlphaBlack" : "Color to Alpha (black)",
"Inspector.Texture.AlphaFromIntensity" : "Alpha from intensity",
"Inspector.Texture.AlphaToMask" : "Alpha to Mask",
"Inspector.Texture.RemoveAlpha" : "Remove Alpha",
"Inspector.Texture.ConvertToGrayscaleAverage" : "Convert to grayscale (average)",
"Inspector.Texture.SwapRG" : "Swap R and G",
"Inspector.Texture.SwapRB" : "Swap R and B",
"Inspector.Texture.SwapGB" : "Swap G and B",
"Inspector.Texture.Hue" : "Hue:",
"Inspector.Texture.ShiftHue" : "Shift Hue",
"Inspector.Texture.Gamma" : "Gamma:",
"Inspector.Texture.AdjustGamma" : "Adjust Gamma",
"Inspector.Texture.LongestSide" : "Longest Side:",
"Inspector.Texture.Resize" : "Resize",
"Inspector.Texture.FlipHorizontal" : "Flip Horizontal",
"Inspector.Texture.FlipVertical" : "Flip Vertical",
"Inspector.Texture.RotateCW" : "Rotate 90° CW",
"Inspector.Texture.RotateCCW" : "Rotate 90° CCW",
"Inspector.Texture.Rotate180" : "Rotate 180°",
"Inspector.Texture.MakeSquare" : "Make Square",
"Inspector.Texture.ToNearestPOT" : "To nearest power of two",
"Inspector.Texture.InvalidFloats" : "Diagnostic: Invalid floats",
"Inspector.Texture.GenerateMetadata" : "Diagnostic: Generate Bitmap Metadata",
"Inspector.DynamicBoneChain.SetupFromChildren" : "Setup From Children",
"Inspector.DynamicBoneChain.SetupFromChildrenAll" : "Setup From Children (force all)",
"Inspector.DynamicBoneChain.SetupFromChildrenRig" : "Setup From Children (rig only)",
"Inspector.DynamicBoneChain.ReplaceSmoothTransforms" : "Replace Smooth Transforms in children",
"Inspector.DynamicBoneChain.ClearSmoothTransforms" : "Clear Smooth Transforms in children",
"Inspector.DynamicBoneChain.CollidersGrabbingHeader" : "------- Colliders & Grabbing -------",
"Inspector.DynamicBoneChain.AddFixedCollidersFromHierarchy" : "Add fixed colliders from hierarchy (using object root)",
"Inspector.DynamicBoneChain.AlwaysGrabLastBone" : "Always grab last bone",
"Tutorial.Grab.MoveRotate" : "Move/Rotate held items",
"Tutorial.Grab.Scale" : "Grab with other controller to scale",
"Tutorial.Grab.PullToEquip" : "Pull towards you to equip",
"Tutorial.Grab.UseHeld" : "Use primary action (doesn't require equip)",
"Tutorial.Grab.ContextEquip" : "Use Context Menu to Equip or Access Options",
"Tutorial.Grab.EquipForFullUse" : "Equip to use all functionality",
"Tutorial.WorldOrb.Click" : "Click World Orb",
"Tutorial.WorldOrb.Info" : "<b>World Orb</b>\n<size=80%>Represents a world or a session\nDouble Click - Enter\nSingle Click - Context Menu",
"Tutorial.Tooltip.GeneralPrimary" : "Use",
"Tutorial.Tooltip.GeneralSecondary" : "Secondary Action",
"Tutorial.Tooltip.ContextMenu" : "Access tool menu and dequip option",
"Tutorial.Tooltip.DevPrimary" : "Interact with gizmos (hold)",
"Tutorial.Tooltip.DevSecondary" : "Select (shows gizmos)",
"Tutorial.Tooltip.Duplicator" : "Duplicate (while holding an item)",
"Tutorial.Tooltip.GluePrimary" : "Apply Glue (hold)",
"Tutorial.Tooltip.GlueSecondary" : "Force glue to dry",
"Tutorial.Tooltip.ColorPrimary" : "Apply Color",
"Tutorial.Tooltip.ColorSecondary" : "Pick Color",
"Tutorial.Tooltip.Brush" : "Draw",
"Tutorial.Tooltip.MaterialPrimary" : "Apply Material\n<size=75%>(Place material orb into the gun)</size>",
"Tutorial.Tooltip.MaterialSecondary" : "Extract Material\n<size=75%>(Ensure there's no material orb first)</size>",
"Tutorial.Tooltip.MeshPrimary" : "Replace Mesh",
"Tutorial.Tooltip.MeshSecondary" : "Extract Mesh",
"Tutorial.Tooltip.CharacterColliderPrimary" : "Add Character Collider",
"Tutorial.Tooltip.CharacterColliderSecondary" : "Remove Character Collider",