mirror of
https://github.com/Mrdabup/LocaleSpanish.git
synced 2025-12-06 14:23:00 -06:00
Initial
This commit is contained in:
commit
ef9db177e7
61 changed files with 41605 additions and 0 deletions
8
.editorconfig
Normal file
8
.editorconfig
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
root = true
|
||||
|
||||
[*.json]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
insert_final_newline = true
|
||||
75
CleanJSON.py
Normal file
75
CleanJSON.py
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import json
|
||||
|
||||
class LocaleCleaner:
|
||||
def __init__(self, en, lang, out):
|
||||
en_file = open(en, 'r', encoding="utf8")
|
||||
lang_file = open(lang, 'r', encoding="utf8")
|
||||
self.out = out
|
||||
self.en = en_file.readlines()
|
||||
self.lang = json.load(lang_file)
|
||||
self.output = []
|
||||
|
||||
def run(self):
|
||||
self.make_header()
|
||||
self.parse()
|
||||
self.make_footer()
|
||||
self.save()
|
||||
|
||||
def make_header(self):
|
||||
self.output.append('{')
|
||||
self.output.append(' "localeCode": "{}",'.format(self.lang["localeCode"]))
|
||||
self.output.append(' "authors": ["{}"],'.format('", "'.join(self.lang["authors"])))
|
||||
self.output.append(' "messages": {')
|
||||
|
||||
def make_footer(self):
|
||||
self.output.append(' "Dummy": "Dummy"')
|
||||
self.output.append(' }')
|
||||
self.output.append('}')
|
||||
self.output.append('')
|
||||
|
||||
def find_start(self):
|
||||
counter = 0
|
||||
for line in self.en:
|
||||
counter += 1
|
||||
if "message" in line:
|
||||
break
|
||||
return counter
|
||||
|
||||
def parse(self):
|
||||
start_pos = self.find_start()
|
||||
blank = False
|
||||
for line in self.en[start_pos:]:
|
||||
if '"Dummy": "Dummy"' in line:
|
||||
break
|
||||
key = line.strip().split(':')[0].strip().replace('"','')
|
||||
if key in self.lang["messages"]:
|
||||
blank = False
|
||||
translation = self.lang["messages"][key].replace('\n','\\n').replace('"','\\"')
|
||||
self.output.append(' "{}": "{}",'.format(key, translation))
|
||||
elif blank == False:
|
||||
self.output.append('')
|
||||
blank = True
|
||||
|
||||
def save(self):
|
||||
out = open(self.out, 'w', encoding="utf8")
|
||||
out.write('\n'.join(self.output))
|
||||
out.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser(description='This script will reformat a Babel style JSON for locales to match the en.json baseline formatting for git changes purposes.')
|
||||
parser.add_argument('--en', metavar='en_path', type=str,
|
||||
help='The path to the en.json locale.')
|
||||
parser.add_argument('--lang', metavar='lang_path', type=str,
|
||||
help='The path to the LANG.json locale to clean.')
|
||||
parser.add_argument('--out', metavar='out_path', type=str,
|
||||
help='The path to save the formatted file.')
|
||||
|
||||
args = parser.parse_args()
|
||||
N = LocaleCleaner(args.en, args.lang, args.out)
|
||||
N.run()
|
||||
print("Cleaned!")
|
||||
|
||||
21
LICENSE
Normal file
21
LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2023 Yellow Dog Man Studios s.r.o.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
4214
MISSING.md
Normal file
4214
MISSING.md
Normal file
File diff suppressed because it is too large
Load diff
438
Missing/cs.md
Normal file
438
Missing/cs.md
Normal file
|
|
@ -0,0 +1,438 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Czech [cs]
|
||||
General.Previous
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.OBS.Idle
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
249
Missing/de.md
Normal file
249
Missing/de.md
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# German [de]
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.WorldCrashDetail
|
||||
World.AccessLevel.Contacts
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Migrated
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Settings.Hotswitching
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
1611
Missing/en-gb.md
Normal file
1611
Missing/en-gb.md
Normal file
File diff suppressed because it is too large
Load diff
3
Missing/en.md
Normal file
3
Missing/en.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
514
Missing/eo.md
Normal file
514
Missing/eo.md
Normal file
|
|
@ -0,0 +1,514 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Esperanto [eo]
|
||||
General.Previous
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Voting UI
|
||||
Temporary.MMC.Vote
|
||||
Temporary.MMC.Categories.Name
|
||||
Temporary.MMC.Categories.Worlds
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Other
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
Temporary.MMC.VoteSuccess
|
||||
Temporary.MMC.VoteFailure
|
||||
Temporary.MMC.VotedAlready
|
||||
Temporary.MMC.VoteInvalid
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
441
Missing/es.md
Normal file
441
Missing/es.md
Normal file
|
|
@ -0,0 +1,441 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Spanish [es]
|
||||
General.Previous
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
728
Missing/et.md
Normal file
728
Missing/et.md
Normal file
|
|
@ -0,0 +1,728 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Estonian [et]
|
||||
General.Start
|
||||
General.Finish
|
||||
General.Previous
|
||||
General.Close
|
||||
General.CopyToClipboard
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.SaveToInventory
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Interaction.ExportScreenshot
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Actions.TurnOffUIEdit
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Connection.LNL.DirectIP
|
||||
World.Connection.LNL.NATPunchthrough
|
||||
World.Connection.LNL.Relay
|
||||
World.Connection.SteamNetworkingSockets
|
||||
World.Error.FailedToConnect
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.Random
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
Tools.Setup2FA
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
2FA.Header
|
||||
2FA.Token
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Undo.ExtractMaterialsFromHierarchy
|
||||
Undo.BatchConvertMaterials
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Material.ConvertAll
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Object.ReflectionProbe
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.Editor.CubemapCreator
|
||||
CreateNew.Editor.ReflectionProbes
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Folder.Minecraft
|
||||
Importer.Folder.Minecraft.Description
|
||||
Importer.Image.Screenshot
|
||||
Importer.Image.PixelArt
|
||||
Importer.Model.Advanced.PreferSpecular
|
||||
Importer.Model.Advanced.Lights
|
||||
Importer.Model.Advanced.SplitSubmeshes
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Model.Advanced.ForceNoMipMaps
|
||||
Importer.Model.Advanced.ForceUncompressed
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.Control.MotionBlur
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.WhisperVoiceVolume
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.AttachComponent
|
||||
Inspector.Slot.Axis.X
|
||||
Inspector.Slot.Axis.Y
|
||||
Inspector.Slot.Axis.Z
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.Reset.Position
|
||||
Inspector.Slot.Reset.Rotation
|
||||
Inspector.Slot.Reset.Scale
|
||||
Inspector.Slot.CreatePivotAtCenter
|
||||
Inspector.Slot.JumpTo
|
||||
Inspector.Slot.BringTo
|
||||
Inspector.Slot.BringTo.Undo
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.ConvertToPointCloud
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.ReflectionProbe.Bake
|
||||
Inspector.ReflectionProbe.Baking
|
||||
Inspector.SkinnedMesh.BakeNonDrivenBlendshapes
|
||||
Inspector.SkinnedMesh.BakeBlendShapeResult
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.Texture.Variant
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.AddWhiteBackground
|
||||
Inspector.Texture.AddBlackBackground
|
||||
Inspector.Texture.Saturation
|
||||
Inspector.Texture.AdjustSaturation
|
||||
Inspector.Texture.Value
|
||||
Inspector.Texture.AdjustValue
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.MakeTileable
|
||||
Inspector.Texture.TileLoop
|
||||
Inspector.Texture.TileMirror
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.Material.VariantInfo
|
||||
Inspector.Material.WaitingForApply
|
||||
Inspector.Audio.BakeAudio
|
||||
Inspector.Audio.FormatInfo
|
||||
Inspector.Audio.Duration
|
||||
Inspector.Audio.EncodingInfo
|
||||
Inspector.Audio.Normalize
|
||||
Inspector.Audio.AmplitudeThreshold
|
||||
Inspector.Audio.TrimSilence
|
||||
Inspector.Audio.TrimStartSilence
|
||||
Inspector.Audio.TrimEndSilence
|
||||
Inspector.Audio.PositionDuration
|
||||
Inspector.Audio.TrimStart
|
||||
Inspector.Audio.TrimEnd
|
||||
Inspector.Audio.FadeIn
|
||||
Inspector.Audio.FadeOut
|
||||
Inspector.Audio.MakeLoopable
|
||||
Inspector.Audio.ToWAV
|
||||
Inspector.Audio.ToVorbis
|
||||
Inspector.Audio.ToFLAC
|
||||
Inspector.Audio.DenoiseRNNoise
|
||||
Inspector.Audio.ExtractSides
|
||||
Inspector.AudioStream.BufferState
|
||||
Inspector.AudioStream.EncodeState
|
||||
Inspector.AudioStream.DecodeState
|
||||
Inspector.AudioStream.BufferStats
|
||||
Inspector.DynamicBoneChain.SetupFromChildren
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenAll
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenRig
|
||||
Inspector.DynamicBoneChain.ReplaceSmoothTransforms
|
||||
Inspector.DynamicBoneChain.ClearSmoothTransforms
|
||||
Inspector.DynamicBoneChain.CollidersGrabbingHeader
|
||||
Inspector.DynamicBoneChain.AddFixedCollidersFromHierarchy
|
||||
Inspector.DynamicBoneChain.AlwaysGrabLastBone
|
||||
Inspector.Rig.CleanupBoneColliders
|
||||
Inspector.Rig.GenerateDebugVisuals
|
||||
Inspector.Rig.ClearDebugVisuals
|
||||
Inspector.AvatarExpression.AutoAssign
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.General.ProcessRoot
|
||||
Wizard.General.Result
|
||||
Wizard.General.ErrorNoRoot
|
||||
Wizard.General.RemovedResult
|
||||
Wizard.AssetOptimization.Title
|
||||
Wizard.AssetOptimization.CleanupUnusedAssets
|
||||
Wizard.AssetOptimization.CleanupEmptySlots
|
||||
Wizard.AssetOptimization.CleanupDisabledMeshRenderers
|
||||
Wizard.AssetOptimization.DeduplicateMaterials
|
||||
Wizard.AssetOptimization.CleanupFileItems
|
||||
Wizard.AssetOptimization.MaxTextureResolution
|
||||
Wizard.AssetOptimization.RecompressTextures
|
||||
Wizard.AssetOptimization.RecalculateAllNormals
|
||||
Wizard.AssetOptimization.RecalculateAllNormalsMerged
|
||||
Wizard.AssetOptimization.RecalculateAllTangents
|
||||
Wizard.AssetOptimization.ResizedResult
|
||||
Wizard.LightSources.Title
|
||||
Wizard.LightSources.Header
|
||||
Wizard.LightSources.ProcessRoot
|
||||
Wizard.LightSources.PointLights
|
||||
Wizard.LightSources.SpotLights
|
||||
Wizard.LightSources.DirectionalLights
|
||||
Wizard.LightSources.DisabledLights
|
||||
Wizard.LightSources.WithTag
|
||||
Wizard.LightSources.SetShadowType
|
||||
Wizard.LightSources.ChangeIntensity
|
||||
Wizard.LightSources.ChangeRange
|
||||
Wizard.LightSources.Enable
|
||||
Wizard.LightSources.Disable
|
||||
Wizard.LightSources.Destroy
|
||||
Wizard.CubemapCreator.Title
|
||||
Wizard.CubemapCreator.Textures
|
||||
Wizard.CubemapCreator.TexturesNote
|
||||
Wizard.CubemapCreator.PosX
|
||||
Wizard.CubemapCreator.NegX
|
||||
Wizard.CubemapCreator.PosY
|
||||
Wizard.CubemapCreator.NegY
|
||||
Wizard.CubemapCreator.PosZ
|
||||
Wizard.CubemapCreator.NegZ
|
||||
Wizard.CubemapCreator.TopBottomRotation
|
||||
Wizard.ReflectionProbes.Title
|
||||
Wizard.ReflectionProbes.ProcessRoot
|
||||
Wizard.ReflectionProbes.ProcessDisabled
|
||||
Wizard.ReflectionProbes.WithTag
|
||||
Wizard.ReflectionProbes.TeleportUserToProbe
|
||||
Wizard.ReflectionProbes.DelayBetweenProbes
|
||||
Wizard.ReflectionProbes.ShowDebugVisuals
|
||||
Wizard.ReflectionProbes.HideDebugVisuals
|
||||
Wizard.ReflectionProbes.BakeProbes
|
||||
Wizard.ReflectionProbes.Baking
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.CommunityYouTube.Title
|
||||
Tutorial.UserResources.UserResourcesTitle
|
||||
Tutorial.UserResources.SupportTitle
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesDisabilityHearing
|
||||
Tutorial.Intro.BadgesDisabilityVision
|
||||
Tutorial.Intro.BadgesDisabilitySpeech
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.BadgesDescription
|
||||
Tutorial.Intro.HelpSite
|
||||
Object.Mirror.Toggle
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
493
Missing/fi.md
Normal file
493
Missing/fi.md
Normal file
|
|
@ -0,0 +1,493 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Finnish [fi]
|
||||
General.Previous
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.DebugInputBinding
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Settings.LeapMotion.UseFingersWhenSnapped
|
||||
Settings.ViveHandTracking.UseFingersWhenSnapped
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.ReverseWinding
|
||||
Inspector.Mesh.TrimVertexBoneWeightsTo
|
||||
Inspector.Mesh.BoneTrimCount
|
||||
Inspector.Mesh.UV_Multiplicator
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.SkinnedMesh.VisualizeApproximateBoneBounds
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.Value
|
||||
Inspector.Texture.AdjustValue
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.MakeTileable
|
||||
Inspector.Texture.TileLoop
|
||||
Inspector.Texture.TileMirror
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.Texture.InvalidFloats
|
||||
Inspector.Texture.GenerateMetadata
|
||||
Inspector.Audio.MakeLoopable
|
||||
Inspector.AudioStream.BufferState
|
||||
Inspector.AudioStream.EncodeState
|
||||
Inspector.AudioStream.DecodeState
|
||||
Inspector.AudioStream.BufferStats
|
||||
Inspector.DynamicBoneChain.SetupFromChildren
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenAll
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenRig
|
||||
Inspector.DynamicBoneChain.ReplaceSmoothTransforms
|
||||
Inspector.DynamicBoneChain.ClearSmoothTransforms
|
||||
Inspector.DynamicBoneChain.AddFixedCollidersFromHierarchy
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
512
Missing/fr.md
Normal file
512
Missing/fr.md
Normal file
|
|
@ -0,0 +1,512 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# French [fr]
|
||||
General.Previous
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Voting UI
|
||||
Temporary.MMC.Vote
|
||||
Temporary.MMC.Categories.Name
|
||||
Temporary.MMC.Categories.Worlds
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Other
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
Temporary.MMC.VoteSuccess
|
||||
Temporary.MMC.VoteFailure
|
||||
Temporary.MMC.VotedAlready
|
||||
Temporary.MMC.VoteInvalid
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
1129
Missing/is.md
Normal file
1129
Missing/is.md
Normal file
File diff suppressed because it is too large
Load diff
15
Missing/ja.md
Normal file
15
Missing/ja.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Japanese [ja]
|
||||
World.Error.WorldCrashDetail
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.Sync.StorageFull
|
||||
Contacts.Migrated
|
||||
CameraControl.OBS.Live
|
||||
CameraControl.OBS.Recording
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
|
||||
438
Missing/ko.md
Normal file
438
Missing/ko.md
Normal file
|
|
@ -0,0 +1,438 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Korean [ko]
|
||||
General.Previous
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.OBS.Idle
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
522
Missing/nl.md
Normal file
522
Missing/nl.md
Normal file
|
|
@ -0,0 +1,522 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Dutch [nl]
|
||||
General.Previous
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.AvatarCreator
|
||||
Tools.Debug
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Object.UIXCanvas
|
||||
CreateNew.Object.Facet
|
||||
CreateNew.Object.FogVolume.Alpha
|
||||
CreateNew.Editor
|
||||
CreateNew.Editor.CubemapCreator
|
||||
CreateNew.3DModel
|
||||
CreateNew.3DModel.Capsule
|
||||
CreateNew.3DModel.Cylinder
|
||||
CreateNew.3DModel.Grid
|
||||
CreateNew.3DModel.Torus
|
||||
CreateNew.Collider
|
||||
CreateNew.Collider.Capsule
|
||||
CreateNew.Collider.Cylinder
|
||||
CreateNew.Collider.Mesh
|
||||
CreateNew.Light.Spot
|
||||
AvatarCreator.Title
|
||||
Importer.Image.PixelArt
|
||||
Importer.Image.LUT
|
||||
Importer.Model.Title
|
||||
Importer.Model.Regular
|
||||
Importer.Model.3DScan
|
||||
Importer.Model.CAD
|
||||
Importer.Model.PointCloud
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Video.Title
|
||||
Importer.Video.Regular
|
||||
Importer.Video.360
|
||||
Importer.Video.Stereo
|
||||
Importer.Video.Stereo360
|
||||
Importer.Video.180
|
||||
Importer.Video.Stereo180
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
NewWorld.AutoPort
|
||||
CameraControl.Mode.ThirdPerson
|
||||
CameraControl.Positioning.FirstPersonPitch
|
||||
CameraControl.Positioning.FirstPersonRoll
|
||||
CameraControl.Positioning.FirstPersonOffset
|
||||
CameraControl.Positioning.Reset
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.IP
|
||||
CameraControl.OBS.Bitrate
|
||||
CameraControl.OBS.FPS
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.Live
|
||||
CameraControl.OBS.Recording
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.LaserSmoothing.Header
|
||||
Settings.Audio.Header
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.Multimedia
|
||||
Settings.Graphics.DesktopFOV
|
||||
Settings.Locale.Title
|
||||
Settings.FullBody.Header
|
||||
Settings.Dash.Header
|
||||
Settings.LeapMotion.Name
|
||||
Security.Hyperlink.Title
|
||||
Security.Hyperlink.Open
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.UV_Multiplicator
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.Texture.Variant
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.Gamma
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.CubemapCreator.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.AccountHeader
|
||||
Tutorial.Welcome.StartTutorialHeader
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.HelpSite
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Categories.Meme
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
854
Missing/no.md
Normal file
854
Missing/no.md
Normal file
|
|
@ -0,0 +1,854 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Norwegian [no]
|
||||
General.Start
|
||||
General.Finish
|
||||
General.Previous
|
||||
General.Save
|
||||
General.Saving
|
||||
General.Done
|
||||
General.Close
|
||||
General.CopyToClipboard
|
||||
General.Create
|
||||
General.Creating
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.SaveToInventory
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Interaction.NamedEquipTool
|
||||
Interaction.NamedEquipTool.Default
|
||||
Interaction.EnterAnchor
|
||||
Interaction.ExitAnchor
|
||||
Interaction.EquipAvatar
|
||||
Interaction.SaveAsScreenshot
|
||||
Interaction.ExportScreenshot
|
||||
Interaction.ImportFile
|
||||
Interaction.ExportFile
|
||||
Interaction.CopyLink
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Screens.Desktop
|
||||
Dash.Actions.TurnOffUIEdit
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Connection.LNL.DirectIP
|
||||
World.Connection.LNL.NATPunchthrough
|
||||
World.Connection.LNL.Relay
|
||||
World.Connection.SteamNetworkingSockets
|
||||
World.Error.OnlyContactsOfContacts
|
||||
World.Error.FailedToConnect
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.Random
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
World.Edit.Title
|
||||
World.Edit.Name
|
||||
World.Edit.Description
|
||||
World.Edit.Tags
|
||||
World.Edit.Path
|
||||
World.Edit.AccessLevelHeader
|
||||
World.Edit.AccessPrivate
|
||||
World.Edit.AccessPatreon
|
||||
World.Edit.AccessPublic
|
||||
Tools.StreamAudio
|
||||
Tools.Setup2FA
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Tools.StreamAudio.Start
|
||||
Tools.StreamAudio.Bitrate
|
||||
Tools.StreamAudio.Title
|
||||
Tools.StreamAudio.Spatialized
|
||||
Tools.StreamAudio.Broadcast
|
||||
Tools.StreamAudio.PlayForOwner.Off
|
||||
Tools.StreamAudio.PlayForOwner.On
|
||||
Options.Nameplates.All
|
||||
Options.Nameplates.NonContacts
|
||||
Options.Nameplates.Hide
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
2FA.Header
|
||||
2FA.Token
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Permissions.NotAllowedToSpawn
|
||||
Permissions.NotAllowedToSave
|
||||
Permissions.NotAllowedToSwapAvatar
|
||||
User.Actions.Silence
|
||||
Contacts.RevokeInvite
|
||||
Contacts.RecordingVoiceMessage
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHidden
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.InLAN
|
||||
Contacts.Bot
|
||||
Contacts.Migrated
|
||||
Notifications.VoiceMessage
|
||||
Undo.ExtractMaterialsFromHierarchy
|
||||
Undo.BatchConvertMaterials
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.ConfirmDestroySelected
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Material.ConvertAll
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.Microphone.Format.WAV
|
||||
Tooltip.Microphone.Format.Vorbis
|
||||
Tooltip.Microphone.Format.FLAC
|
||||
Tooltip.Microphone.ModeHold
|
||||
Tooltip.Microphone.ModePress
|
||||
Tooltip.Microphone.SourceRaw
|
||||
Tooltip.Microphone.SourceFiltered
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Object.ReflectionProbe
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.Editor.CubemapCreator
|
||||
CreateNew.Editor.ReflectionProbes
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
AvatarCreator.SetupFaceTracking
|
||||
Importer.General.AsRawFile
|
||||
Importer.Folder.Minecraft
|
||||
Importer.Folder.Minecraft.Description
|
||||
Importer.Image.Screenshot
|
||||
Importer.Image.PixelArt
|
||||
Importer.Model.Advanced.PreferSpecular
|
||||
Importer.Model.Advanced.Lights
|
||||
Importer.Model.Advanced.SplitSubmeshes
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Model.Advanced.ForceNoMipMaps
|
||||
Importer.Model.Advanced.ForceUncompressed
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Settings.AudioFromCameraViewpoint
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.Control.MotionBlur
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.Haptics
|
||||
Settings.DisableLAN
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.MaxConcurrentAssetTransfers
|
||||
Settings.AutosaveScreenshotPath
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.DebugInputBinding
|
||||
Settings.Laser.ShowInDesktop
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.Master
|
||||
Settings.Audio.NoiseSupression
|
||||
Settings.Audio.WhisperVoiceVolume
|
||||
Settings.Audio.OutputDevice
|
||||
Settings.Audio.SelectInputDevice
|
||||
Settings.Audio.SelectOutputDevice
|
||||
Settings.Audio.TestInput
|
||||
Settings.Audio.TestDescription
|
||||
Settings.Audio.StartTest
|
||||
Settings.Audio.StopTest
|
||||
Settings.Audio.Monitoring
|
||||
Settings.Audio.SystemDefaultOutput
|
||||
Settings.Graphics.DesktopFOV
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.ChangeLanguage
|
||||
Settings.Locale.SelectLanguageHeader
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.AttachComponent
|
||||
Inspector.Slot.Axis.X
|
||||
Inspector.Slot.Axis.Y
|
||||
Inspector.Slot.Axis.Z
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.Reset.Position
|
||||
Inspector.Slot.Reset.Rotation
|
||||
Inspector.Slot.Reset.Scale
|
||||
Inspector.Slot.CreatePivotAtCenter
|
||||
Inspector.Slot.JumpTo
|
||||
Inspector.Slot.BringTo
|
||||
Inspector.Slot.BringTo.Undo
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.ConvertToPointCloud
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshRenderer.MergeByMaterial
|
||||
Inspector.MeshRenderer.SplitByMaterial
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.ReflectionProbe.Bake
|
||||
Inspector.ReflectionProbe.Baking
|
||||
Inspector.SkinnedMesh.SeparateOutBlendshapes
|
||||
Inspector.SkinnedMesh.StripEmptyBlendshapes
|
||||
Inspector.SkinnedMesh.StripBlendshapesResult
|
||||
Inspector.SkinnedMesh.StripEmptyBones
|
||||
Inspector.SkinnedMesh.StripBonesResult
|
||||
Inspector.SkinnedMesh.BakeNonDrivenBlendshapes
|
||||
Inspector.SkinnedMesh.BakeBlendShapeResult
|
||||
Inspector.SkinnedMesh.VisualizeBoneBounds
|
||||
Inspector.SkinnedMesh.VisualizeApproximateBoneBounds
|
||||
Inspector.SkinnedMesh.ClearBoundsVisuals
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.BipedRig.GetDiagnosticInfo
|
||||
Inspector.BipedRig.GenerateDebugVisuals
|
||||
Inspector.BipedRig.ClearDebugVisuals
|
||||
Inspector.BipedRig.DetectHands
|
||||
Inspector.BipedRig.DetectLeftHand
|
||||
Inspector.BipedRig.DetectRightHand
|
||||
Inspector.BipedRig.HandRigResult
|
||||
Inspector.BipedRig.LeftHandRigResult
|
||||
Inspector.BipedRig.RightHandRigResult
|
||||
Inspector.Texture.Variant
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.AddWhiteBackground
|
||||
Inspector.Texture.AddBlackBackground
|
||||
Inspector.Texture.Saturation
|
||||
Inspector.Texture.AdjustSaturation
|
||||
Inspector.Texture.Value
|
||||
Inspector.Texture.AdjustValue
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.MakeTileable
|
||||
Inspector.Texture.TileLoop
|
||||
Inspector.Texture.TileMirror
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.Material.VariantInfo
|
||||
Inspector.Material.WaitingForApply
|
||||
Inspector.Audio.BakeAudio
|
||||
Inspector.Audio.FormatInfo
|
||||
Inspector.Audio.Duration
|
||||
Inspector.Audio.EncodingInfo
|
||||
Inspector.Audio.Normalize
|
||||
Inspector.Audio.AmplitudeThreshold
|
||||
Inspector.Audio.TrimSilence
|
||||
Inspector.Audio.TrimStartSilence
|
||||
Inspector.Audio.TrimEndSilence
|
||||
Inspector.Audio.PositionDuration
|
||||
Inspector.Audio.TrimStart
|
||||
Inspector.Audio.TrimEnd
|
||||
Inspector.Audio.FadeIn
|
||||
Inspector.Audio.FadeOut
|
||||
Inspector.Audio.MakeLoopable
|
||||
Inspector.Audio.ToWAV
|
||||
Inspector.Audio.ToVorbis
|
||||
Inspector.Audio.ToFLAC
|
||||
Inspector.Audio.DenoiseRNNoise
|
||||
Inspector.Audio.ExtractSides
|
||||
Inspector.AudioStream.BufferState
|
||||
Inspector.AudioStream.EncodeState
|
||||
Inspector.AudioStream.DecodeState
|
||||
Inspector.AudioStream.BufferStats
|
||||
Inspector.DynamicBoneChain.SetupFromChildren
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenAll
|
||||
Inspector.DynamicBoneChain.SetupFromChildrenRig
|
||||
Inspector.DynamicBoneChain.ReplaceSmoothTransforms
|
||||
Inspector.DynamicBoneChain.ClearSmoothTransforms
|
||||
Inspector.DynamicBoneChain.CollidersGrabbingHeader
|
||||
Inspector.DynamicBoneChain.AddFixedCollidersFromHierarchy
|
||||
Inspector.DynamicBoneChain.AlwaysGrabLastBone
|
||||
Inspector.Rig.CleanupBoneColliders
|
||||
Inspector.Rig.GenerateDebugVisuals
|
||||
Inspector.Rig.ClearDebugVisuals
|
||||
Inspector.AvatarExpression.AutoAssign
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.General.ProcessRoot
|
||||
Wizard.General.Result
|
||||
Wizard.General.ErrorNoRoot
|
||||
Wizard.General.RemovedResult
|
||||
Wizard.AssetOptimization.Title
|
||||
Wizard.AssetOptimization.CleanupUnusedAssets
|
||||
Wizard.AssetOptimization.CleanupEmptySlots
|
||||
Wizard.AssetOptimization.CleanupDisabledMeshRenderers
|
||||
Wizard.AssetOptimization.DeduplicateMaterials
|
||||
Wizard.AssetOptimization.CleanupFileItems
|
||||
Wizard.AssetOptimization.MaxTextureResolution
|
||||
Wizard.AssetOptimization.RecompressTextures
|
||||
Wizard.AssetOptimization.RecalculateAllNormals
|
||||
Wizard.AssetOptimization.RecalculateAllNormalsMerged
|
||||
Wizard.AssetOptimization.RecalculateAllTangents
|
||||
Wizard.AssetOptimization.ResizedResult
|
||||
Wizard.LightSources.Title
|
||||
Wizard.LightSources.Header
|
||||
Wizard.LightSources.ProcessRoot
|
||||
Wizard.LightSources.PointLights
|
||||
Wizard.LightSources.SpotLights
|
||||
Wizard.LightSources.DirectionalLights
|
||||
Wizard.LightSources.DisabledLights
|
||||
Wizard.LightSources.WithTag
|
||||
Wizard.LightSources.SetShadowType
|
||||
Wizard.LightSources.ChangeIntensity
|
||||
Wizard.LightSources.ChangeRange
|
||||
Wizard.LightSources.Enable
|
||||
Wizard.LightSources.Disable
|
||||
Wizard.LightSources.Destroy
|
||||
Wizard.CubemapCreator.Title
|
||||
Wizard.CubemapCreator.Textures
|
||||
Wizard.CubemapCreator.TexturesNote
|
||||
Wizard.CubemapCreator.PosX
|
||||
Wizard.CubemapCreator.NegX
|
||||
Wizard.CubemapCreator.PosY
|
||||
Wizard.CubemapCreator.NegY
|
||||
Wizard.CubemapCreator.PosZ
|
||||
Wizard.CubemapCreator.NegZ
|
||||
Wizard.CubemapCreator.TopBottomRotation
|
||||
Wizard.ReflectionProbes.Title
|
||||
Wizard.ReflectionProbes.ProcessRoot
|
||||
Wizard.ReflectionProbes.ProcessDisabled
|
||||
Wizard.ReflectionProbes.WithTag
|
||||
Wizard.ReflectionProbes.TeleportUserToProbe
|
||||
Wizard.ReflectionProbes.DelayBetweenProbes
|
||||
Wizard.ReflectionProbes.ShowDebugVisuals
|
||||
Wizard.ReflectionProbes.HideDebugVisuals
|
||||
Wizard.ReflectionProbes.BakeProbes
|
||||
Wizard.ReflectionProbes.Baking
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
Desktop.OpenKeyboard
|
||||
Desktop.FollowCursor.On
|
||||
Desktop.FollowCursor.Off
|
||||
Desktop.LegacyInputMode.On
|
||||
Desktop.LegacyInputMode.Off
|
||||
Desktop.Brightness
|
||||
Desktop.Opacity
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.AccountHeader
|
||||
Tutorial.Welcome.AccountDescription
|
||||
Tutorial.Welcome.AccountCreate
|
||||
Tutorial.Welcome.AccountLogin
|
||||
Tutorial.Welcome.AccountSkip
|
||||
Tutorial.Welcome.AccountSkipHeader
|
||||
Tutorial.Welcome.AccountSkipDescription
|
||||
Tutorial.Welcome.AccountSkipConfirm
|
||||
Tutorial.Welcome.SettingsHeader
|
||||
Tutorial.Welcome.SettingsDescription
|
||||
Tutorial.Welcome.SettingsTurning
|
||||
Tutorial.Welcome.SettingsSnapTurn
|
||||
Tutorial.Welcome.SettingsSnapTurnDescription
|
||||
Tutorial.Welcome.SettingsSmoothTurn
|
||||
Tutorial.Welcome.SettingsSmoothTurnDescription
|
||||
Tutorial.Welcome.SettingsPrimaryController
|
||||
Tutorial.Welcome.SettingsPrimaryLeft
|
||||
Tutorial.Welcome.SettingsPrimaryLeftDescription
|
||||
Tutorial.Welcome.SettingsPrimaryRight
|
||||
Tutorial.Welcome.SettingsPrimaryRightDescription
|
||||
Tutorial.Welcome.SettingsHeight
|
||||
Tutorial.Welcome.SettingsHeightExamples
|
||||
Tutorial.Welcome.StartTutorialHeader
|
||||
Tutorial.Welcome.StartTutorialDescription
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.CommunityYouTube.Title
|
||||
Tutorial.UserResources.UserResourcesTitle
|
||||
Tutorial.UserResources.SupportTitle
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesDisabilityHearing
|
||||
Tutorial.Intro.BadgesDisabilityVision
|
||||
Tutorial.Intro.BadgesDisabilitySpeech
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.BadgesDescription
|
||||
Tutorial.Intro.HelpSite
|
||||
Object.Mirror.Toggle
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
597
Missing/pl.md
Normal file
597
Missing/pl.md
Normal file
|
|
@ -0,0 +1,597 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Polish [pl]
|
||||
General.Previous
|
||||
General.Close
|
||||
General.CopyToClipboard
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Interaction.ExportScreenshot
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Actions.TurnOffUIEdit
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.Random
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
Tools.Setup2FA
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
2FA.Header
|
||||
2FA.Token
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Image.Screenshot
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.AttachComponent
|
||||
Inspector.Slot.Axis.X
|
||||
Inspector.Slot.Axis.Y
|
||||
Inspector.Slot.Axis.Z
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.Reset.Position
|
||||
Inspector.Slot.Reset.Rotation
|
||||
Inspector.Slot.Reset.Scale
|
||||
Inspector.Slot.CreatePivotAtCenter
|
||||
Inspector.Slot.JumpTo
|
||||
Inspector.Slot.BringTo
|
||||
Inspector.Slot.BringTo.Undo
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Voting UI
|
||||
Temporary.MMC.Vote
|
||||
Temporary.MMC.Categories.Name
|
||||
Temporary.MMC.Categories.Worlds
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Other
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
Temporary.MMC.VoteSuccess
|
||||
Temporary.MMC.VoteFailure
|
||||
Temporary.MMC.VotedAlready
|
||||
Temporary.MMC.VoteInvalid
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
438
Missing/ru.md
Normal file
438
Missing/ru.md
Normal file
|
|
@ -0,0 +1,438 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Russian [ru]
|
||||
General.Previous
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
Importer.Image.PixelArt
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.OBS.Idle
|
||||
Settings.Hotswitching
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Locale.Title
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
1401
Missing/sv.md
Normal file
1401
Missing/sv.md
Normal file
File diff suppressed because it is too large
Load diff
754
Missing/tr.md
Normal file
754
Missing/tr.md
Normal file
|
|
@ -0,0 +1,754 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Turkish [tr]
|
||||
General.Start
|
||||
General.Finish
|
||||
General.Previous
|
||||
General.Save
|
||||
General.Saving
|
||||
General.Close
|
||||
General.CopyToClipboard
|
||||
General.Create
|
||||
General.Creating
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.SaveToInventory
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Interaction.ExportScreenshot
|
||||
Interaction.CopyLink
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Screens.Desktop
|
||||
Dash.Actions.TurnOffUIEdit
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Connection.LNL.DirectIP
|
||||
World.Connection.LNL.NATPunchthrough
|
||||
World.Connection.LNL.Relay
|
||||
World.Connection.SteamNetworkingSockets
|
||||
World.Error.OnlyContactsOfContacts
|
||||
World.Error.FailedToConnect
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.Random
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
World.Edit.Title
|
||||
World.Edit.Name
|
||||
World.Edit.Description
|
||||
World.Edit.Tags
|
||||
World.Edit.Path
|
||||
World.Edit.AccessLevelHeader
|
||||
World.Edit.AccessPrivate
|
||||
World.Edit.AccessPatreon
|
||||
World.Edit.AccessPublic
|
||||
Tools.StreamAudio
|
||||
Tools.Setup2FA
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Tools.StreamAudio.Start
|
||||
Tools.StreamAudio.Bitrate
|
||||
Tools.StreamAudio.Title
|
||||
Tools.StreamAudio.Spatialized
|
||||
Tools.StreamAudio.Broadcast
|
||||
Tools.StreamAudio.PlayForOwner.Off
|
||||
Tools.StreamAudio.PlayForOwner.On
|
||||
Options.Nameplates.All
|
||||
Options.Nameplates.NonContacts
|
||||
Options.Nameplates.Hide
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
2FA.Header
|
||||
2FA.Token
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Permissions.NotAllowedToSpawn
|
||||
Permissions.NotAllowedToSave
|
||||
Permissions.NotAllowedToSwapAvatar
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Bot
|
||||
Contacts.Migrated
|
||||
Undo.ExtractMaterialsFromHierarchy
|
||||
Undo.BatchConvertMaterials
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.ConfirmDestroySelected
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Material.ConvertAll
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Object.ReflectionProbe
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.Editor.CubemapCreator
|
||||
CreateNew.Editor.ReflectionProbes
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
AvatarCreator.SetupFaceTracking
|
||||
Importer.Folder.Minecraft
|
||||
Importer.Folder.Minecraft.Description
|
||||
Importer.Image.Screenshot
|
||||
Importer.Image.PixelArt
|
||||
Importer.Model.Advanced.PreferSpecular
|
||||
Importer.Model.Advanced.Lights
|
||||
Importer.Model.Advanced.SplitSubmeshes
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Model.Advanced.ForceNoMipMaps
|
||||
Importer.Model.Advanced.ForceUncompressed
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Settings.AudioFromCameraViewpoint
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.Control.MotionBlur
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.Haptics
|
||||
Settings.DisableLAN
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.MaxConcurrentAssetTransfers
|
||||
Settings.AutosaveScreenshotPath
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.DebugInputBinding
|
||||
Settings.Laser.ShowInDesktop
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.Master
|
||||
Settings.Audio.NoiseSupression
|
||||
Settings.Audio.WhisperVoiceVolume
|
||||
Settings.Audio.OutputDevice
|
||||
Settings.Audio.SelectOutputDevice
|
||||
Settings.Audio.SystemDefaultOutput
|
||||
Settings.Graphics.DesktopFOV
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.AttachComponent
|
||||
Inspector.Slot.Axis.X
|
||||
Inspector.Slot.Axis.Y
|
||||
Inspector.Slot.Axis.Z
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.Reset.Position
|
||||
Inspector.Slot.Reset.Rotation
|
||||
Inspector.Slot.Reset.Scale
|
||||
Inspector.Slot.CreatePivotAtCenter
|
||||
Inspector.Slot.JumpTo
|
||||
Inspector.Slot.BringTo
|
||||
Inspector.Slot.BringTo.Undo
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.ConvertToPointCloud
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.ReflectionProbe.Bake
|
||||
Inspector.ReflectionProbe.Baking
|
||||
Inspector.SkinnedMesh.BakeNonDrivenBlendshapes
|
||||
Inspector.SkinnedMesh.BakeBlendShapeResult
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.Texture.Variant
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.AddWhiteBackground
|
||||
Inspector.Texture.AddBlackBackground
|
||||
Inspector.Texture.Saturation
|
||||
Inspector.Texture.AdjustSaturation
|
||||
Inspector.Texture.Value
|
||||
Inspector.Texture.AdjustValue
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.MakeTileable
|
||||
Inspector.Texture.TileLoop
|
||||
Inspector.Texture.TileMirror
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.Material.VariantInfo
|
||||
Inspector.Material.WaitingForApply
|
||||
Inspector.Audio.DenoiseRNNoise
|
||||
Inspector.Audio.ExtractSides
|
||||
Inspector.AudioStream.BufferState
|
||||
Inspector.AudioStream.EncodeState
|
||||
Inspector.AudioStream.DecodeState
|
||||
Inspector.AudioStream.BufferStats
|
||||
Inspector.Rig.CleanupBoneColliders
|
||||
Inspector.Rig.GenerateDebugVisuals
|
||||
Inspector.Rig.ClearDebugVisuals
|
||||
Inspector.AvatarExpression.AutoAssign
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.AssetOptimization.CleanupUnusedAssets
|
||||
Wizard.LightSources.Title
|
||||
Wizard.LightSources.Header
|
||||
Wizard.LightSources.ProcessRoot
|
||||
Wizard.LightSources.PointLights
|
||||
Wizard.LightSources.SpotLights
|
||||
Wizard.LightSources.DirectionalLights
|
||||
Wizard.LightSources.DisabledLights
|
||||
Wizard.LightSources.WithTag
|
||||
Wizard.LightSources.SetShadowType
|
||||
Wizard.LightSources.ChangeIntensity
|
||||
Wizard.LightSources.ChangeRange
|
||||
Wizard.LightSources.Enable
|
||||
Wizard.LightSources.Disable
|
||||
Wizard.LightSources.Destroy
|
||||
Wizard.CubemapCreator.Title
|
||||
Wizard.CubemapCreator.Textures
|
||||
Wizard.CubemapCreator.TexturesNote
|
||||
Wizard.CubemapCreator.PosX
|
||||
Wizard.CubemapCreator.NegX
|
||||
Wizard.CubemapCreator.PosY
|
||||
Wizard.CubemapCreator.NegY
|
||||
Wizard.CubemapCreator.PosZ
|
||||
Wizard.CubemapCreator.NegZ
|
||||
Wizard.CubemapCreator.TopBottomRotation
|
||||
Wizard.ReflectionProbes.Title
|
||||
Wizard.ReflectionProbes.ProcessRoot
|
||||
Wizard.ReflectionProbes.ProcessDisabled
|
||||
Wizard.ReflectionProbes.WithTag
|
||||
Wizard.ReflectionProbes.TeleportUserToProbe
|
||||
Wizard.ReflectionProbes.DelayBetweenProbes
|
||||
Wizard.ReflectionProbes.ShowDebugVisuals
|
||||
Wizard.ReflectionProbes.HideDebugVisuals
|
||||
Wizard.ReflectionProbes.BakeProbes
|
||||
Wizard.ReflectionProbes.Baking
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
Desktop.OpenKeyboard
|
||||
Desktop.FollowCursor.On
|
||||
Desktop.FollowCursor.Off
|
||||
Desktop.LegacyInputMode.On
|
||||
Desktop.LegacyInputMode.Off
|
||||
Desktop.Brightness
|
||||
Desktop.Opacity
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.SettingsHeader
|
||||
Tutorial.Welcome.SettingsDescription
|
||||
Tutorial.Welcome.SettingsTurning
|
||||
Tutorial.Welcome.SettingsSnapTurn
|
||||
Tutorial.Welcome.SettingsSnapTurnDescription
|
||||
Tutorial.Welcome.SettingsSmoothTurn
|
||||
Tutorial.Welcome.SettingsSmoothTurnDescription
|
||||
Tutorial.Welcome.SettingsPrimaryController
|
||||
Tutorial.Welcome.SettingsPrimaryLeft
|
||||
Tutorial.Welcome.SettingsPrimaryLeftDescription
|
||||
Tutorial.Welcome.SettingsPrimaryRight
|
||||
Tutorial.Welcome.SettingsPrimaryRightDescription
|
||||
Tutorial.Welcome.SettingsHeight
|
||||
Tutorial.Welcome.SettingsHeightExamples
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.CommunityYouTube.Title
|
||||
Tutorial.UserResources.UserResourcesTitle
|
||||
Tutorial.UserResources.SupportTitle
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesDisabilityHearing
|
||||
Tutorial.Intro.BadgesDisabilityVision
|
||||
Tutorial.Intro.BadgesDisabilitySpeech
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.BadgesDescription
|
||||
Tutorial.Intro.HelpSite
|
||||
Object.Mirror.Toggle
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
596
Missing/zh-cn.md
Normal file
596
Missing/zh-cn.md
Normal file
|
|
@ -0,0 +1,596 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Chinese (China) [zh-cn]
|
||||
General.Previous
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Undo.BatchConvertMaterials
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Image.PixelArt
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Model.Advanced.ForceNoMipMaps
|
||||
Importer.Model.Advanced.ForceUncompressed
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.Control.MotionBlur
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.WhisperVoiceVolume
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.SkinnedMesh.BakeNonDrivenBlendshapes
|
||||
Inspector.SkinnedMesh.BakeBlendShapeResult
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.CommunityYouTube.Title
|
||||
Tutorial.UserResources.UserResourcesTitle
|
||||
Tutorial.UserResources.SupportTitle
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesDisabilityHearing
|
||||
Tutorial.Intro.BadgesDisabilityVision
|
||||
Tutorial.Intro.BadgesDisabilitySpeech
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.BadgesDescription
|
||||
Tutorial.Intro.HelpSite
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Voting UI
|
||||
Temporary.MMC.Vote
|
||||
Temporary.MMC.Categories.Name
|
||||
Temporary.MMC.Categories.Worlds
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Other
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
Temporary.MMC.VoteSuccess
|
||||
Temporary.MMC.VoteFailure
|
||||
Temporary.MMC.VotedAlready
|
||||
Temporary.MMC.VoteInvalid
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
631
Missing/zh-tw.md
Normal file
631
Missing/zh-tw.md
Normal file
|
|
@ -0,0 +1,631 @@
|
|||
# Missing Keys
|
||||
Note that this file updates only during build processes and doesn't necessarily reflect the current state.
|
||||
|
||||
# Chinese (Taiwan) [zh-tw]
|
||||
General.Start
|
||||
General.Finish
|
||||
General.Previous
|
||||
General.Close
|
||||
General.CopyToClipboard
|
||||
General.Buy
|
||||
General.Yes
|
||||
General.No
|
||||
General.ClearSelection
|
||||
General.Off
|
||||
General.On
|
||||
General.Understand
|
||||
General.Notice
|
||||
General.UnderstandEnable
|
||||
General.Dismiss
|
||||
General.Edit
|
||||
General.UI.ToggleEditMode
|
||||
General.UI.ToggleSubtitles
|
||||
General.UI.Subtitles.On
|
||||
General.UI.Subtitles.Off
|
||||
General.UI.MusicVolumeLocal
|
||||
General.UI.VoiceVolumeLocal
|
||||
General.UI.SoundVolumeLocal
|
||||
General.UI.PressToBegin
|
||||
Worlds.Home
|
||||
Worlds.Tutorial
|
||||
Interaction.SaveToInventory
|
||||
Interaction.Grab.Palm
|
||||
Interaction.Grab.Precision
|
||||
Interaction.Grab.Auto
|
||||
Interaction.Grab.Off
|
||||
Interaction.ExportScreenshot
|
||||
Inventory.OpenWorld
|
||||
Inventory.Equip
|
||||
Inventory.Delete
|
||||
Inventory.SaveHeld
|
||||
Inventory.Inventories
|
||||
Inventory.Share
|
||||
Inventory.Unshare
|
||||
Inventory.SaveAvatar
|
||||
Inventory.Favorite.Home
|
||||
Inventory.Favorite.ProgressBar
|
||||
Inventory.Favorite.AudioStreamController
|
||||
Inventory.Favorite.TextDisplay
|
||||
Inventory.Favorite.VideoPlayer
|
||||
Inventory.Favorite.AudioPlayer
|
||||
Inventory.Favorite.InteractiveCamera
|
||||
Inventory.Favorite.Keyboard
|
||||
Inventory.Favorite.Avatar
|
||||
Inventory.Favorite.WorldLoadingIndicator
|
||||
Inventory.Favorite.ColorDialog
|
||||
Inventory.Favorite.Hyperlink
|
||||
Inventory.SpawnFacet
|
||||
Dash.Actions.TurnOffUIEdit
|
||||
Dash.Exit.Sponsor
|
||||
Dash.Exit.Sponsor.You
|
||||
Dash.Exit.Shoutouts
|
||||
Dash.Exit.Shoutouts.AndMore
|
||||
Dash.Exit.Shoutouts.You
|
||||
Facets.FPS
|
||||
World.Connection.LNL.DirectIP
|
||||
World.Connection.LNL.NATPunchthrough
|
||||
World.Connection.LNL.Relay
|
||||
World.Connection.SteamNetworkingSockets
|
||||
World.Error.FailedToConnect
|
||||
World.Error.InvalidAddress
|
||||
World.Error.HostBlocked
|
||||
World.Error.HostBlockedDetail
|
||||
World.Error.WorldCrash
|
||||
World.Error.WorldCrashDetail
|
||||
World.Indicator.Visited
|
||||
World.Category.ContactsSessions
|
||||
World.Category.Random
|
||||
World.Category.GroupWorlds
|
||||
World.AccessLevel.Contacts
|
||||
World.AccessLevel.ContactsPlus
|
||||
World.SortParameter.LastVisit
|
||||
World.SortParameter.Random
|
||||
World.Filter.MinimumContacts
|
||||
Tools.Setup2FA
|
||||
Tools.StreamAudio.Dialog.Title
|
||||
Options.Nameplates.DefaultStyle
|
||||
Options.Nameplates.CustomStyle
|
||||
Indicator.OnlineUsersVR
|
||||
Indicator.OnlineUsersDesktop
|
||||
Indicator.ServerStatus.Status
|
||||
Indicator.ServerStatus.Good
|
||||
Indicator.ServerStatus.Slow
|
||||
Indicator.ServerStatus.Down
|
||||
Indicator.ServerStatus.NoInternet
|
||||
Indicator.Sync.StorageFull
|
||||
Indicator.Storage.StorageFull
|
||||
Indicator.Storage.Usage
|
||||
Account.Saml2
|
||||
Account.BirthMonth
|
||||
Account.BirthDay
|
||||
Account.BirthYear
|
||||
Account.PoliciesAgreement
|
||||
Account.AlternateMethods
|
||||
Account.Saml2.Title
|
||||
Account.Saml2.Select
|
||||
Account.Saml2.LoggingIn
|
||||
Account.TOTP.Title
|
||||
Account.TOTP.Initializing
|
||||
Account.TOTP.Code.Header
|
||||
Account.TOTP.Code.Description
|
||||
Account.TOTP.Code.QRCode
|
||||
Account.TOTP.Code.Key
|
||||
Account.TOTP.RecoveryCodes.Header
|
||||
Account.TOTP.RecoveryCodes.Description
|
||||
Account.TOTP.RecoveryCodes.Codes
|
||||
Account.TOTP.Activate.Header
|
||||
Account.TOTP.Activate.Description
|
||||
Account.TOTP.Activate.Token
|
||||
Account.TOTP.Activate.TokenField
|
||||
Account.TOTP.Activate.Activate
|
||||
Account.TOTP.Activate.Activating
|
||||
Account.TOTP.Activate.InvalidToken
|
||||
Account.TOTP.Message.AlreadySetup
|
||||
Account.TOTP.Message.Error
|
||||
Account.TOTP.Message.SetupComplete
|
||||
Account.TOTP.Deactivate.Header
|
||||
Account.TOTP.Deactivate.Description
|
||||
Account.TOTP.Deactivate.Deactivate
|
||||
Account.TOTP.Deactivate.Deactivating
|
||||
Account.TOTP.Message.DeactivationComplete
|
||||
Account.Type.Standard
|
||||
Account.Type.Business
|
||||
Account.Type.Patreon
|
||||
Account.Type.Mentor
|
||||
Account.Type.Moderator
|
||||
Account.Type.Team
|
||||
Avatar.Badge.Live
|
||||
2FA.Header
|
||||
2FA.Token
|
||||
Profile.Status.Headless
|
||||
Session.JoinVerifier.EnableHeader
|
||||
Session.JoinVerifier.EnableText
|
||||
Session.JoinVerifier.Label
|
||||
Session.JoinVerifier.ComponentWarning
|
||||
Session.JoinVerifier.SetCustomVerifier
|
||||
Contacts.RevokeInvite
|
||||
Contacts.Unblocked
|
||||
Contacts.AvatarBlock
|
||||
Contacts.MutualBlock
|
||||
Contacts.SelfAccount
|
||||
Contacts.SearchPrompt
|
||||
Contacts.WriteMessage
|
||||
Contacts.InContactsOnly
|
||||
Contacts.InHiddenContactsOnly
|
||||
Contacts.InHiddenContactsPlus
|
||||
Contacts.Migrated
|
||||
Undo.ExtractMaterialsFromHierarchy
|
||||
Undo.BatchConvertMaterials
|
||||
Tooltips.Brush.ChangeColor
|
||||
Tooltips.Brush.IncrementSize
|
||||
Tooltips.Brush.DecrementSize
|
||||
Tooltips.Dev.GizmoOptions
|
||||
Tooltips.Dev.SelectParent
|
||||
Tooltips.Dev.LocalSpace
|
||||
Tooltips.Dev.GlobalSpace
|
||||
Tooltips.Dev.Translation
|
||||
Tooltips.Dev.Rotation
|
||||
Tooltips.Dev.Scale
|
||||
Tooltip.GrabbableSetter.ApplyToRoot
|
||||
Tooltip.GrabbableSetter.AppyToHit
|
||||
Tooltip.Material.ConvertAll
|
||||
Tooltip.Cartridge.Eject
|
||||
Tooltip.ProtoFlux.Drive
|
||||
Tooltip.ProtoFlux.Source
|
||||
Tooltip.ProtoFlux.Reference
|
||||
Tooltip.ProtoFlux.Write
|
||||
Tooltip.ProtoFlux.Proxy
|
||||
Tooltip.ProtoFlux.CreateLocal
|
||||
Tooltip.ProtoFlux.CreateStore
|
||||
Tooltip.ProtoFlux.CreateDataModelStore
|
||||
Tooltip.ProtoFlux.Overview
|
||||
Tooltip.ProtoFlux.NodeBrowser
|
||||
Tooltip.ProtoFlux.PackInPlace
|
||||
Tooltip.ProtoFlux.PackInto
|
||||
Tooltip.ProtoFlux.Unpack
|
||||
Tooltip.ProtoFlux.ExplicitCast
|
||||
ProtoFlux.UI.Call
|
||||
ProtoFlux.UI.AsyncCall
|
||||
ProtoFlux.UI.NodeBrowser.Title
|
||||
CreateNew.Editor.TextRendererWizard
|
||||
CreateNew.3DModel.Triangle
|
||||
CreateNew.Directory.Title
|
||||
CreateNew.Directory.Error.EmptyName
|
||||
CreateNew.Directory.Error.LongName
|
||||
CreateNew.Directory.Error.InvalidName
|
||||
Importer.Folder.Minecraft
|
||||
Importer.Folder.Minecraft.Description
|
||||
Importer.Image.Screenshot
|
||||
Importer.Image.PixelArt
|
||||
Importer.Model.Advanced.ForcePointFiltering
|
||||
Importer.Model.Advanced.ForceNoMipMaps
|
||||
Importer.Model.Advanced.ForceUncompressed
|
||||
Exporter.Title
|
||||
Exporter.FileName
|
||||
Exporter.ExportAs
|
||||
Exporter.Export
|
||||
Exporter.Exporting
|
||||
NewWorld.SessionTitle
|
||||
CameraControl.Anchors.LinearInterpolation
|
||||
CameraControl.Control.MotionBlur
|
||||
CameraControl.Control.ScreenSpaceReflections
|
||||
CameraControl.OBS.Idle
|
||||
CameraControl.OBS.OpenInstallerReason
|
||||
Settings.Hotswitching
|
||||
Settings.DoNotSendReadStatus
|
||||
Settings.AutosaveAllScreenshots
|
||||
Settings.Audio.Input.Title
|
||||
Settings.Audio.WhisperVoiceVolume
|
||||
Settings.Locale.Title
|
||||
Settings.Locale.DefaultLanguage
|
||||
Security.Hyperlink.Title
|
||||
ComponentSelector.Back
|
||||
ComponentSelector.Title
|
||||
ComponentSelector.CreateCustomType
|
||||
ComponentSelector.CommonGenericTypes
|
||||
ComponentSelector.CustomGenericArguments
|
||||
ComponentSelector.InvalidType
|
||||
Inspector.Title
|
||||
Inspector.Slot.AttachComponent
|
||||
Inspector.Slot.Axis.X
|
||||
Inspector.Slot.Axis.Y
|
||||
Inspector.Slot.Axis.Z
|
||||
Inspector.Slot.Reset.Label
|
||||
Inspector.Slot.Reset.Position
|
||||
Inspector.Slot.Reset.Rotation
|
||||
Inspector.Slot.Reset.Scale
|
||||
Inspector.Slot.CreatePivotAtCenter
|
||||
Inspector.Slot.JumpTo
|
||||
Inspector.Slot.BringTo
|
||||
Inspector.Slot.BringTo.Undo
|
||||
Inspector.Slot.ParentUnder.Label
|
||||
Inspector.Slot.ParentUnder.WorldRoot
|
||||
Inspector.Slot.ParentUnder.WorldRoot.Undo
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace
|
||||
Inspector.Slot.ParentUnder.LocalUserSpace.Undo
|
||||
Inspector.Mesh.SetupRenderer
|
||||
Inspector.Mesh.RecalculateBlendshapeNormals
|
||||
Inspector.Mesh.RecalculateBlendshapeNormalsSmooth
|
||||
Inspector.Mesh.RecalculateBlendshapeTangentsMikkt
|
||||
Inspector.Mesh.MergeBlendshapes
|
||||
Inspector.MeshCollider.VHACD
|
||||
Inspector.MeshCollider.ReplaceBox
|
||||
Inspector.CommonAvatarBuilder.UpdateLocomotionModules
|
||||
Inspector.VHACD.Parameter.MergeDoubles
|
||||
Inspector.VHACD.Parameter.Resolution
|
||||
Inspector.VHACD.Parameter.Depth
|
||||
Inspector.VHACD.Parameter.Concavity
|
||||
Inspector.VHACD.Parameter.PlaneDownsampling
|
||||
Inspector.VHACD.Parameter.ConvexHullDownsampling
|
||||
Inspector.VHACD.Parameter.Alpha
|
||||
Inspector.VHACD.Parameter.Beta
|
||||
Inspector.VHACD.Parameter.Gamma
|
||||
Inspector.VHACD.Parameter.Delta
|
||||
Inspector.VHACD.Parameter.PCA
|
||||
Inspector.VHACD.Parameter.MaxVerticesPerHull
|
||||
Inspector.VHACD.Parameter.MinVolumePerHull
|
||||
Inspector.VHACD.Parameter.ConvexHullApproximation
|
||||
Inspector.VHACD.DecompositionMode.Header
|
||||
Inspector.VHACD.DecompositionMode.Voxel
|
||||
Inspector.VHACD.DecompositionMode.Tetrahedron
|
||||
Inspector.VHACD.RunDecomposition
|
||||
Inspector.VHACD.RemoveVisuals
|
||||
Inspector.VHACD.RemoveHulls
|
||||
Inspector.SkinnedMesh.BakeNonDrivenBlendshapes
|
||||
Inspector.SkinnedMesh.BakeBlendShapeResult
|
||||
Inspector.SkinnedMesh.ComputeExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.ExtendExplicitBoundsFromPose
|
||||
Inspector.SkinnedMesh.BakeToStaticMesh
|
||||
Inspector.SimpleAvatarProtection.RemoveAll
|
||||
Inspector.SimpleAvatarProtection.RemoveSingle
|
||||
Inspector.SimpleAvatarProtection.Warning
|
||||
Inspector.SimpleAvatarProtection.ConfirmRemoveAll
|
||||
Inspector.Texture.BakeTexture
|
||||
Inspector.Texture.ConvertToGrayscaleLuminance
|
||||
Inspector.Texture.SwapRA
|
||||
Inspector.Texture.SwapGA
|
||||
Inspector.Texture.SwapBA
|
||||
Inspector.Texture.TrimTransparent
|
||||
Inspector.Texture.TrimByCornerColor
|
||||
Inspector.Texture.NormalizeMaxOnly
|
||||
Inspector.Texture.NormalizeMinMax
|
||||
Inspector.Texture.NormalizeIndependent
|
||||
Inspector.Texture.BleedColorToAlpha
|
||||
Inspector.CharacterController.Warning
|
||||
Inspector.PrimitiveMemberEditor.Warning
|
||||
Inspector.ParticleStyle.CommonTransitions
|
||||
Inspector.ParticleStyle.AlphaFadeInOut
|
||||
Inspector.ParticleStyle.AlphaFadeIn
|
||||
Inspector.ParticleStyle.AlphaFadeOut
|
||||
Inspector.ParticleStyle.IntensityFadeInOut
|
||||
Inspector.ParticleStyle.IntensityFadeIn
|
||||
Inspector.ParticleStyle.IntensityFadeOut
|
||||
Inspector.ParticleStyle.ClearFades
|
||||
Inspector.Collider.SetFromLocalBounds
|
||||
Inspector.Collider.SetFromGlobalBounds
|
||||
Inspector.Collider.SetFromLocalBoundsPrecise
|
||||
Inspector.Collider.SetFromGlobalBoundsPrecise
|
||||
Inspector.Collider.SetFromPreciseBounds
|
||||
Inspector.Collider.SetFromPreciseCylinderBounds
|
||||
Inspector.Collider.Visualize
|
||||
Inspector.SimpleAwayIndicator.TestAway
|
||||
Inspector.SimpleAwayIndicator.TestRestore
|
||||
Inspector.Fields.Drive
|
||||
Inspector.Fields.DriveWriteBack
|
||||
Inspector.Actions.CopyComponent
|
||||
Inspector.Actions.MoveComponent
|
||||
UserInspector.Title
|
||||
WorkerInspector.Title
|
||||
CreateNew.Title
|
||||
Wizard.TextRenderer.Header
|
||||
Wizard.TextRenderer.ProcessRoot
|
||||
Wizard.TextRenderer.ProcessStandalone
|
||||
Wizard.TextRenderer.ProcessUIX
|
||||
Wizard.TextRenderer.Disabled
|
||||
Wizard.TextRenderer.WithTag
|
||||
Wizard.TextRenderer.ReplaceMaterial
|
||||
Wizard.TextRenderer.ReplaceFont
|
||||
Wizard.TextRenderer.SetColor
|
||||
Desktop.Controls.Title
|
||||
VolumePlaneSlicer.Highlight
|
||||
VolumePlaneSlicer.Slicer
|
||||
Tutorial.Welcome.Welcome
|
||||
Tutorial.Welcome.Description
|
||||
Tutorial.Welcome.Begin
|
||||
Tutorial.Welcome.StartTutorial
|
||||
Tutorial.CommunityYouTube.Title
|
||||
Tutorial.UserResources.UserResourcesTitle
|
||||
Tutorial.UserResources.SupportTitle
|
||||
Tutorial.UserResources.MerchandiseTitle
|
||||
Tutorial.Intro.BadgesAppTeam
|
||||
Tutorial.Intro.BadgesModerator
|
||||
Tutorial.Intro.BadgesMentor
|
||||
Tutorial.Intro.BadgesDisabilityHearing
|
||||
Tutorial.Intro.BadgesDisabilityVision
|
||||
Tutorial.Intro.BadgesDisabilitySpeech
|
||||
Tutorial.Intro.BadgesTitle
|
||||
Tutorial.Intro.BadgesDescription
|
||||
Tutorial.Intro.HelpSite
|
||||
Object.Mirror.Toggle
|
||||
Twitch.Panel.Button.Commands.Enabled
|
||||
Twitch.Panel.Button.Commands.Disabled
|
||||
Twitch.Panel.Button.SafeMode.Enabled
|
||||
Twitch.Panel.Button.SafeMode.Disabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Enabled
|
||||
Twitch.Panel.Button.SubscriberCommands.Disabled
|
||||
Twitch.Panel.Title.Text
|
||||
Migration.Title
|
||||
Migration.NewTask
|
||||
Migration.LoginModal.Title
|
||||
Migration.LoginModal.Description
|
||||
Migration.LoginModal.OpenMigration
|
||||
Migration.LoginModal.Later
|
||||
Migration.LoginResetID.Title
|
||||
Migration.LoginResetID.Description
|
||||
Migration.LoginResetID.ResetButton
|
||||
Migration.ReservedUsername.Title
|
||||
Migration.ReservedUsername.Description
|
||||
Migration.SourcePassword
|
||||
Migration.SourceUsername
|
||||
Migration.Dialog.Title
|
||||
Migration.Dialog.Source
|
||||
Migration.Dialog.AccountDescription
|
||||
Migration.ResetID.Title
|
||||
Migration.ResetID.Description
|
||||
Migration.DataSelection.Title
|
||||
Migration.DataSelection.Everything
|
||||
Migration.DataSelection.Choose
|
||||
Migration.DataSelection.Favorites
|
||||
Migration.DataSelection.Favorites.Description
|
||||
Migration.DataSelection.Favorites.OverwriteTitle
|
||||
Migration.DataSelection.Home.Title
|
||||
Migration.DataSelection.Home.Description
|
||||
Migration.DataSelection.Contacts
|
||||
Migration.DataSelection.Message History
|
||||
Migration.DataSelection.InventoryWorld
|
||||
Migration.DataSelection.CloudVariable.Definitions
|
||||
Migration.DataSelection.CloudVariable.Values
|
||||
Migration.DataSelection.AlwaysOverwrite
|
||||
Migration.Start
|
||||
Migration.Groups.Title
|
||||
Migration.Groups.Introduction
|
||||
Migration.Groups.Description
|
||||
Migration.Groups.LoadGroups
|
||||
Migration.Groups.RefreshGroups
|
||||
Migration.Groups.Fetching
|
||||
Migration.Groups.Fetching.LoginFailed
|
||||
Migration.Groups.Fetching.Error
|
||||
Migration.Groups.NoGroups
|
||||
Migration.Groups.NotGroupAdmin
|
||||
Migration.Summary
|
||||
Migration.List.EmptyTitle
|
||||
Migration.List.EmptySubtitle
|
||||
Migration.List.ButtonLabel
|
||||
Migration.Report.Title
|
||||
Migration.Report.Description
|
||||
Migration.Report.Status
|
||||
Migration.Report.CreatedOn
|
||||
Migration.Report.StartedOn
|
||||
Migration.Report.CompletedOn
|
||||
Migration.Report.CurrentlyMigrating
|
||||
Migration.Report.CurrentItem
|
||||
Migration.Report.CurrentRate
|
||||
Migration.Report.EstimatedQueuePosition
|
||||
Migration.Report.ContactStatus
|
||||
Migration.Report.MessageStatus
|
||||
Migration.Report.CloudVariableDefinitionStatus
|
||||
Migration.Report.CloudVariableValueStatus
|
||||
Migration.Report.RecordStatus
|
||||
Migration.Report.GroupStatus
|
||||
Migration.Report.GroupMemberStatus
|
||||
Migration.Error
|
||||
Migration.NothingSelected
|
||||
Migration.ColorManagement
|
||||
Temporary.MMC.Voting UI
|
||||
Temporary.MMC.Vote
|
||||
Temporary.MMC.Categories.Name
|
||||
Temporary.MMC.Categories.Worlds
|
||||
Temporary.MMC.Categories.Worlds.Social
|
||||
Temporary.MMC.Categories.Worlds.Game
|
||||
Temporary.MMC.Categories.Other
|
||||
Temporary.MMC.Categories.Misc
|
||||
Temporary.MMC.Categories.Meme
|
||||
Temporary.MMC.Categories.Avatars
|
||||
Temporary.MMC.Categories.Avatars.Accessories
|
||||
Temporary.MMC.VoteSuccess
|
||||
Temporary.MMC.VoteFailure
|
||||
Temporary.MMC.VotedAlready
|
||||
Temporary.MMC.VoteInvalid
|
||||
CloudHome.WelcomeHome
|
||||
CloudHome.TargetRangeOptions
|
||||
Tutorial.Saving.Title
|
||||
Tutorial.Saving.Content
|
||||
CloudHome.Info.OnlineUsers
|
||||
CloudHome.Info.Moderation
|
||||
CloudHome.Info.Inventory
|
||||
CloudHome.Info.Tools
|
||||
CloudHome.Info.MoreInfo
|
||||
CloudHome.Info.SessionUptime
|
||||
CloudHome.Info.AccessLevel
|
||||
CloudHome.Info.StorageUsed
|
||||
CloudHome.Info.DashInfoTab.Title
|
||||
CloudHome.Info.DashInfoDesktop
|
||||
CloudHome.Info.DashInfoVR
|
||||
CloudHome.Info.DashInfoVRNoButtons
|
||||
CloudHome.Info.GoToWiki
|
||||
CloudHome.Info.GoToDiscord
|
||||
CloudHome.Info.ModerationTab.Title
|
||||
CloudHome.Info.ModerationTab.Content
|
||||
CloudHome.Info.InventoryTab.Title
|
||||
CloudHome.Info.InventoryTab.Content
|
||||
CloudHome.Info.ToolsTab.Title
|
||||
CloudHome.Info.ToolsTab.Content
|
||||
CloudHome.Info.HelpTab.Title
|
||||
CloudHome.Info.HelpTab.InfoLineOne
|
||||
CloudHome.Info.HelpTab.InfoLineTwo
|
||||
CloudHome.Info.UsersTab.Title
|
||||
CloudHome.Info.UsersTab.Content
|
||||
Mirror.Header.RenderingOptions
|
||||
Mirror.Header.Type
|
||||
Mirror.Header.Resolution
|
||||
Mirror.Header.AspectRatio
|
||||
Mirror.EnableLights
|
||||
Mirror.DisableLights
|
||||
Mirror.EnableShadows
|
||||
Mirror.DisableShadows
|
||||
Mirror.Camera
|
||||
Mirror.AspectRatio.Tall
|
||||
Mirror.AspectRatio.Square
|
||||
Mirror.AspectRatio.Wide
|
||||
Mirror.Menu
|
||||
Mirror.CloseMenu
|
||||
StickyNote.SpinMe
|
||||
StickyNote.FruitPlate
|
||||
StickyNote.EmptyForYou
|
||||
StickyNote.RelevantLinks
|
||||
StickyNote.SunTool
|
||||
StickyNote.Bow
|
||||
StickyNote.Crossbow
|
||||
StickyNote.Shade
|
||||
StickyNote.TheaterTablet
|
||||
StickyNote.ControlTablet
|
||||
StickyNote.RotateMeDesktop
|
||||
StickyNote.RotateMeVR
|
||||
StickyNote.EquipMeDesktop
|
||||
StickyNote.EquipMeVR
|
||||
StickyNote.DipBrushes
|
||||
StickyNote.BrushColor
|
||||
StickyNote.Drawing
|
||||
StickyNote.WorldCanvas
|
||||
CloudHome.Panel.HomeControl
|
||||
CloudHome.Panel.General
|
||||
CloudHome.Panel.Lighting
|
||||
CloudHome.Panel.Furniture
|
||||
CloudHome.Panel.Quality
|
||||
CloudHome.Panel.Doors
|
||||
CloudHome.Panel.Audio
|
||||
CloudHome.Panel.OverheadLighting
|
||||
CloudHome.Panel.Sconces
|
||||
CloudHome.Panel.FurnitureVisibility
|
||||
CloudHome.Panel.LowQualityMode
|
||||
CloudHome.Panel.DoorSounds
|
||||
CloudHome.Panel.DoorsAlwaysOpen
|
||||
CloudHome.Panel.InteriorAmbience
|
||||
CloudHome.Panel.InteriorAmbienceVolume
|
||||
CloudHome.Panel.LightsOn
|
||||
CloudHome.Panel.LightIntensity
|
||||
CloudHome.Panel.LightColor
|
||||
CloudHome.Panel.LightColorTemperature
|
||||
CloudHome.Panel.Spawn
|
||||
CloudHome.Panel.Foyer
|
||||
CloudHome.Panel.Workspace
|
||||
CloudHome.Panel.ReadingLounge
|
||||
CloudHome.Panel.Lounge
|
||||
CloudHome.Panel.Center
|
||||
CloudHome.Panel.Balcony
|
||||
CloudHome.Panel.Theater
|
||||
CloudHome.Panel.TheaterControl
|
||||
CloudHome.Panel.FanControl
|
||||
CloudHome.Panel.WindowControl
|
||||
CloudHome.Panel.FanSpeed
|
||||
CloudHome.Panel.WindowTint
|
||||
CloudHome.FeaturedPanel.OpenWorld
|
||||
CloudHome.FeaturedPanel.LinkText
|
||||
CloudHome.FeaturedPanel.Featured
|
||||
CloudHome.AvatarPanel.Title
|
||||
CloudHome.SupporterPanel.Title
|
||||
Tutorial.InfoPanel.Title
|
||||
Tutorial.InfoPanel.Content
|
||||
Tutorial.GrabItems.Grab
|
||||
Tutorial.GrabItems.Snap
|
||||
Tutorial.GrabItems.Slide
|
||||
Tutorial.Panel.Jumping.Title
|
||||
Tutorial.Panel.Jumping.ContentDesktop
|
||||
Tutorial.Panel.Jumping.ContentVR
|
||||
Tutorial.Panel.Jumping.ContentVRNoButtons
|
||||
Tutorial.Panel.WalkLocomotion.Title
|
||||
Tutorial.Panel.WalkLocomotion.Content
|
||||
Tutorial.Panel.TeleportLocomotion.Title
|
||||
Tutorial.Panel.TeleportLocomotion.Content
|
||||
Hints.Spawn.InitialMovementDesktop
|
||||
Hints.Spawn.InitialMovementVR
|
||||
Hints.Spawn.InitialMovementVRNoButtons
|
||||
Hints.Spawn.ContextMenuDesktop
|
||||
Hints.Spawn.ContextMenuVR
|
||||
Hints.Spawn.ContextMenuVRNoButtons
|
||||
Hints.Spawn.TeleportLocomotionDesktop
|
||||
Hints.Spawn.TeleportLocomotionVR
|
||||
Hints.Bridge.RaiseTheWorld
|
||||
Hints.Grabbing.GrabbingDesktop
|
||||
Hints.Grabbing.GrabbingVR
|
||||
Hints.Grabbing.Rotating
|
||||
Hints.Grabbing.RotatingExtra
|
||||
Hints.Grabbing.ScalingDesktop
|
||||
Hints.Grabbing.ScalingVR
|
||||
Hints.Grabbing.OtherGrabbables
|
||||
Hints.Grabbing.OtherGrabbablesExtraDesktop
|
||||
Hints.Grabbing.OtherGrabbablesExtraVR
|
||||
Hints.Telescope.Alignment
|
||||
Hints.Telescope.TheMoonDesktop
|
||||
Hints.Telescope.TheMoonVR
|
||||
Hints.Sundial.SoftEquip
|
||||
Hints.Sundial.SoftEquipExtra
|
||||
Hints.Sundial.HardEquip
|
||||
Hints.Sundial.HardEquipExtra
|
||||
Hints.Sundial.TheSun
|
||||
Hints.Sundial.TheSunExtra
|
||||
Hints.Sundial.Dequip
|
||||
Hints.Sundial.DequipExtra
|
||||
Hints.Sundial.Teleporter
|
||||
Hints.Sundial.TeleporterExtra
|
||||
UI.TextDisplay.Landscape
|
||||
UI.TextDisplay.Portrait
|
||||
UI.TextDisplay.NormalText
|
||||
UI.TextDisplay.MonospaceText
|
||||
UI.VideoPlayer.GlobalSettings
|
||||
UI.VideoPlayer.LocalSettings
|
||||
UI.VideoPlayer.SpatialAudio
|
||||
UI.VideoPlayer.AreaBroadcast
|
||||
UI.VideoPlayer.BroascastAudio
|
||||
UI.VideoPlayer.EnterURL
|
||||
UI.VideoPlayer.AudioZoneTheater
|
||||
UI.VideoPlayer.AudioZoneGlobal
|
||||
UI.VideoPlayer.UsersLoaded
|
||||
UI.ColorPicker.ColorPicker
|
||||
UI.ColorPicker.Linear
|
||||
UI.ColorPicker.Hexadecimal
|
||||
UI.ColorPicker.ColorSwatches
|
||||
UI.ColorPicker.Red
|
||||
UI.ColorPicker.Green
|
||||
UI.ColorPicker.Blue
|
||||
UI.ColorPicker.Hue
|
||||
UI.ColorPicker.Saturation
|
||||
UI.ColorPicker.Value
|
||||
UI.ColorPicker.Alpha
|
||||
UI.ColorPicker.Gain
|
||||
UI.ProgressBar.ImportingItem
|
||||
Tools.Names.MultiTool
|
||||
Tools.Names.CommonTools
|
||||
Tools.Names.ManipulationTools
|
||||
Tools.Names.InformationTools
|
||||
Tools.Names.GeometryLineBrush
|
||||
Tools.Names.Developer
|
||||
Tools.Names.ComponentClone
|
||||
Tools.Names.ProtoFlux
|
||||
Tools.Names.Material
|
||||
Tools.Names.Glue
|
||||
Tools.Names.Light
|
||||
Tools.Names.Shape
|
||||
Tools.Names.Microphone
|
||||
Tools.Names.GrabbableSetter
|
||||
Tools.Names.PhysicalColliderSetter
|
||||
Tools.Names.MeshVisibility
|
||||
Tools.Names.CameraObjectVisibility
|
||||
Tools.Names.Color
|
||||
Tools.Names.Mesh
|
||||
Tools.Names.RiggedMeshTransfer
|
||||
Tools.Names.Slicer
|
||||
Tools.Names.ControllerDiagnostic
|
||||
Tools.Names.Measure
|
||||
Tools.Names.Label
|
||||
|
||||
143
README.md
Normal file
143
README.md
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
# APP Locale
|
||||
This repository contains the locale assets for the core UI of [Resonite](https://resonite.com) and allow anyone to contribute translations. The contents of this repository will be periodically merged with the public build released on Steam (STEAM) and other platforms.
|
||||
|
||||
# Localization Status
|
||||
Czech [cs] - 73.5% - Missing keys: 433
|
||||
German [de] - 85.1% - Missing keys: 244
|
||||
English (United Kingdom) [en-gb] - 1.8% - Missing keys: 1606
|
||||
English [en] - 100.0% - Missing keys: 0
|
||||
Esperanto [eo] - 68.9% - Missing keys: 509
|
||||
Spanish [es] - 73.3% - Missing keys: 436
|
||||
Estonian [et] - 55.8% - Missing keys: 723
|
||||
Finnish [fi] - 70.2% - Missing keys: 488
|
||||
French [fr] - 69.0% - Missing keys: 507
|
||||
Icelandic [is] - 31.3% - Missing keys: 1124
|
||||
Japanese [ja] - 99.4% - Missing keys: 10
|
||||
Korean [ko] - 73.5% - Missing keys: 433
|
||||
Dutch [nl] - 68.4% - Missing keys: 517
|
||||
Norwegian [no] - 48.1% - Missing keys: 849
|
||||
Polish [pl] - 63.8% - Missing keys: 592
|
||||
qps (Ploc) [qps-ploc] - 77.8% - Missing keys: 363
|
||||
Russian [ru] - 73.5% - Missing keys: 433
|
||||
Swedish [sv] - 14.6% - Missing keys: 1396
|
||||
Turkish [tr] - 54.2% - Missing keys: 749
|
||||
Chinese (China) [zh-cn] - 63.9% - Missing keys: 591
|
||||
Chinese (Taiwan) [zh-tw] - 61.7% - Missing keys: 626
|
||||
|
||||
Total keys: 1635
|
||||
|
||||
# How To Contribute
|
||||
If you'd like to contribute translations, create a branch of fork of the repository, make the changes and once they are ready to be merged create a Pull Request, so the contributions can be checked and merged. You don't need to translate everything at once, if you cover part of the UI, the changes can be merged, with more translations coming later.
|
||||
|
||||
# Do's and don'ts
|
||||
- Make sure the .json locale file is UTF8 encoded
|
||||
- Always keep the "Dummy" : "Dummy" entry at the bottom of the file. This way you don't have to remember to remove the comma at the end of the last entry every time
|
||||
- Copy & Paste the whole content of the file into this online validator to ensure you don't have any syntax errors: https://jsonformatter.curiousconcept.com/
|
||||
- DO use spaces instead of tabs to keep the formatting of all documents consistent
|
||||
- DO check if other users are making modifications to the same locale as you are in Issues and coordinate. If you send changes that conflict with other users, it's hard to resolve them on our end since we don't understand the language.
|
||||
- DO keep the same style of formatting and coloring where it's present in the text to ensure it stays consistent across locales. Coloring in particular can be contextual and used in other parts of the UI and changing or removing it would cause user confusion.
|
||||
|
||||
- DON'T update the Localization Status section of this document, it is automatically generated when changes are merged
|
||||
- DON'T update the MISSING.md file manually, it's automatically generated as part of the build process based on the changes you submit
|
||||
- DON'T convert the formatting of the entire document. This creates major merge conflicts and makes it hard to track what was actually changed, plus it introduces inconsistencies
|
||||
- DON'T correct mistakes in the string keys, only report them. They will be fixed by a script, which will apply the correction to all locales at once.
|
||||
- DON'T submit purely machine translated locales. Those often result in odd and confusing results for user interfaces. Using machine translation as basis for manual translation is ok.
|
||||
|
||||
# Translating the Store descriptions
|
||||
If you're like, you can help translate the store descriptions as well (this is used on Steam for example), but we consider those highly optional since it's quite a lot of text. If you don't want to translate those, don't worry about them! The store descriptions do not count towards the translation completeness percentage and are provided in separate files.
|
||||
|
||||
If you do translate them and you haven't added a credit yet, put your name in the regular .json file for translations of in-game strings, even if you haven't translated any in-game strings.
|
||||
|
||||
# If you're contributing a new language
|
||||
1. [Create a new Issue](https://github.com/Yellow-Dog-Man/Locale) for given language in format "Language [lang-code]", for example "English [en]", which will help coordinate efforts of different translators.
|
||||
1. Verify that our' ork of ICU MessageFormat.NET has pluralizer for your language, by checking the "AddStandardPluralizers()" function in this file: https://github.com/YellowDogMan/messageformat.net/blob/master/src/Jeffijoe.MessageFormat/Formatting/Formatters/PluralFormatter.cs
|
||||
|
||||
If you can't find your language code in this file, please make a Issue either on in this repository.
|
||||
|
||||
Alternatively you can implement the pluralizer yourself based on the reference from the Unicode CLDR repository: https://github.com/unicode-org/cldr/blob/master/common/supplemental/plurals.xml and make a pull request for it to be merged with our fork or MessageFormat.NET
|
||||
|
||||
3) Add a new [lang-code].json file to your fork. We highly recommend creating a skeleton file first without any translation strings, just containing the Locale and Authors and creating a pull request, so it's clearer to other contributors that translations are being worked on by someone.
|
||||
|
||||
# Contributing translations to a language
|
||||
If you'd like to contribute translations for existing language file (or one you have just created), we recommend the following:
|
||||
|
||||
1) Make a fork of the repository or your own branch.
|
||||
2) Update the language file, either by modifying the translation strings or adding new ones for missing translations.
|
||||
3) Ensure you do not have any left-over English strings in the file. Your file should only contain actually translated strings. Any missing strings will automatically fallback (see below for details)
|
||||
4) Ensure your modified translation file works correctly inside APP (see below how to test)
|
||||
5) Create a Pull Request for your translations to be merged into the main repository. After merging they will be available publicly in the next public build of APP.
|
||||
|
||||
As we develop our platform, we'll be constantly adding new strings in English or modifying the existing ones. We recommend watching the repository for activity through GitHub, so you can get notified when there are changes and new strings to be translated.
|
||||
|
||||
# Testing your translation
|
||||
As you work on the translation we recommend that you periodically check it inside of APP. This will not only help ensure that you don't have any syntax errors, but also make sure that the strings are correct in the context.
|
||||
|
||||
To test the translation, find folder where APP.exe is installed (on Steam, you can do so by right clicking APP, going to Properties -> LOCAL FILES -> BROWSE LOCAL FILES...) and then locate the "Locale" folder. Simply place your modified file into this folder and APP will load it up.
|
||||
|
||||
By default, APP uses your system locale to determine which file to load. You can override this by going to Settings and changing the "Override Locale" to a different language code.
|
||||
|
||||
- You can edit the translation file on the fly without shutting down APP. To force it to reload, change the locale to "en" and then back to your own.
|
||||
- Note that while most UI will change language immediately, not all of it would. Simply close and reopen the UI dialog to load the translated strings
|
||||
- If the string is showing in English, you probably have a typo in the string key. It needs to match exactly
|
||||
- If the translation isn't loading in APP, it is likely JSON syntax error preventing it from being loaded
|
||||
- If you see "ERROR!!!" instead of your translated string, you have a syntax error in the particular string. Check APP's log file, which will contain details.
|
||||
|
||||
# The ICU MessageFormat Syntax for translation strings
|
||||
APP uses the ICU MessageFormat Syntax defined by the Unicode organization for its localized strings. This offers high amount of flexibility on how you translate strings and ensures that you can correctly follow the grammar rules of your language, particularly with regards to pluralization (e.g. displaying "1 item" vs "1 items"). This is why it's important to ensure that your language has a pluralizer implemented in our fork of MessageFormat.NET
|
||||
|
||||
To learn more about the ICU MessageFormat Syntax check the following links:
|
||||
https://unicode-org.github.io/icu/userguide/format_parse/messages/
|
||||
|
||||
Formatting guide with examples (the C# version of the library currently doesn't implement all the formatters, but they will be added as needed):
|
||||
https://messageformat.github.io/messageformat/page-guide
|
||||
|
||||
Language pluralization rules:
|
||||
https://github.com/unicode-org/cldr/blob/master/common/supplemental/plurals.xml
|
||||
|
||||
Typically most strings are straight up replacements, with no complex syntax. Some use just a simple variable replacement (e.g. {name}), which will replace part of the message with given variable.
|
||||
|
||||
For cases when the structure of sentence changes based on the value of a number, you'll see pattern {variable, plural, ...}. Each language has a set of plural categories, like zero, one, two, few, many and other. Some languages have only "other", some (like English) have "one" and "other", while other languages have multiple. Make sure that you familiarize yourself with the plural categories in your language (using the links above) so you can correctly translate strings using this syntax.
|
||||
|
||||
Another common syntax is using the {variable, select, ...} form. This lets you match the variable against specific values and provide translated versions of each. You can either replace a single word (e.g. "Server status is {status, select, good {Good} bad {Not Good} }") or the whole sentence (e.g. "{status, select, good {Server is good!} bad {Oh no, servers are down!}}") depending on what works better in your language.
|
||||
|
||||
Please let us know if you have any questions or are unsure about certain things.
|
||||
|
||||
# Language codes and fallbacks
|
||||
We uses the IETF language tags (https://en.wikipedia.org/wiki/IETF_language_tag) to load locales. These consist of a single primary language tag (typically two-letter language code from ISO 639-1 or a three-letter code from ISO 639-2 (1998), ISO 639-3 (2007) or ISO 639-5 (2008)) and and optional region sub-tag with country code.
|
||||
|
||||
When loading locale file, we will first check for the most specific locale file. Then it will load any missing strings from the general locale file and last it will load any missing strings from the English locale.
|
||||
|
||||
For example if your system locale is British English (en-gb), it will first look for "en-gb.json" file and then for the more general one "en.json".
|
||||
|
||||
We recommend putting most translations into the general language file (single two letter or three letter code) and if necessary only put specific overrides into the more specific language file. That way, most translations can be shared across variants of the language if possible.
|
||||
|
||||
Any strings you don't translate at all will also fall back into their English variants, so you don't have to worry about missing some of them, they can be translated later (or by another contributor). This also ensures that newly added strings in the English will show up and can be gradually translated as they come.
|
||||
|
||||
# What if I find string that cannot be translated?
|
||||
While majority of APP's UI has been converted to the localization system, there are likely a few stragglers and some parts that aren't translatable right now. If you encounter such place, create an Issue on this repository, ideally with screenshot of the non-translatable part, so we can convert it as well.
|
||||
|
||||
Currently there are a few known parts that cannot be translated, but are planned to:
|
||||
- Enumerations (e.g. certain tool options that cycle through several options)
|
||||
- Component names and categories (component names will still show original for technical reasons, but will show optional translation for non-English languages)
|
||||
- ProtoFlux node names and categories (same as above)
|
||||
- Component fields (those will only show optional translated names on hover once tooltip system is implemented)
|
||||
|
||||
# If you use an external tool to do the translation and the JSON structure is mangled
|
||||
You can use the python script in this repository: CleanJSON.py
|
||||
|
||||
For example to clean the french json, `./CleanJSON.py --en en.json --lang fr.json --out fr.json.cleaned`
|
||||
|
||||
```usage: CleanJSON.py [-h] [--en en_path] [--lang lang_path] [--out out_path]
|
||||
|
||||
This script will reformat a Babel style JSON for locales to match the en.json
|
||||
baseline formatting for git changes purposes.
|
||||
|
||||
optional arguments:
|
||||
-h, --help show this help message and exit
|
||||
--en en_path The path to the en.json locale file.
|
||||
--lang lang_path The path to the LANG.json locale file to clean.
|
||||
--out out_path The path to save the formatted file.
|
||||
```
|
||||
|
||||
# Any questions?
|
||||
If you have questions or are unsure about something, you can create an Issue on this repository or reach out to our team on the official Discord: https://discord.gg/resonite
|
||||
3
Store/en/current_state_early_access.txt
Normal file
3
Store/en/current_state_early_access.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
The project is fully playable, usable and stable for daily use, with all the features listed on the store page "About This Game" section already fully implemented.
|
||||
|
||||
However, it's more rough around some edges than we'd like and there are major features that we plan to add. Some interactions are not very intuitive yet, resulting in a more difficult learning curve, some building tools that would make life easier are missing and more optimizations are needed overall for a smoother experience.
|
||||
67
Store/en/description.txt
Normal file
67
Store/en/description.txt
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
Dive into a brand new digital universe with infinite possibilities. Whether you come here to socialize and hang out with people around the world or to build, create and develop anything from beautiful art, interactive avatars and gadgets, to complex interactive worlds and games, Resonite is an endlessly customizable place where you'll be welcome and where you'll find a group to resonate with.
|
||||
|
||||
Thanks to our advanced engine, we ensure that multiplayer experiences stay perfectly synchronized between players with zero effort for our community content creators. Whether you're just hanging out with people or building complex worlds and contraptions with other creators, Resonite will make sure every details stays in perfect sync and keeps you in control of your experience.
|
||||
|
||||
[h2]Socialize with anyone[/h2]
|
||||
Online socialization and real-time communication whether you're in desktop or VR is the foundational layer of everything in Resonite. Being able to communicate and be yourself is an important part of the platform. To make this possible, we offer a number of key features:
|
||||
|
||||
|
||||
[list]
|
||||
[*] [b]Low latency voice[/b] - communicate in real time with other users in session with latency rivaling that of other messaging applications
|
||||
[*] [b]Fully custom avatars[/b] - import, build and customize any avatars in-game and in real-time to look like the best version of you
|
||||
[*] [b]Full body tracking, eye & face tracking[/b] - to maximize your avatar's expressivity we support 8 trackers (feet, knees, hips, chest and elbows) as well as eye and face tracking
|
||||
[*] [b]Haptics support[/b] - with support for haptic vests such as bHaptics, you can increase your immersion and become part of the virtual world
|
||||
[*] [b]Instant messaging[/b] - chat over text, send invites, voice messages or even arbitrary items to your contacts
|
||||
[*] [b]Flexible session visibility & security[/b] - you are in control of the visibility and accessibility of your sessions, anywhere from public to fully private, with an access list you control. All validation and verification of joining users is done on your client - if you set your session to Private, you can be sure that it is private
|
||||
[*] [b]Customizable UI[/b] - the user interface is your gateway to using the platform and just like everything else in Resonite, it can be customized and extended to better suit your needs and make your daily experience more comfortable
|
||||
[*] [b]Self-moderation tools[/b] - we understand that not every interaction on the platform will be good and that's why we want to empower you with a number of self-moderation tools - moderate your own worlds with silence, kick and ban functions or easily mute and block individual users avatars or their entire presence. Our goal is to give you as much control over your virtual experience as we can.
|
||||
[*] [b]Multi-world presence[/b] - just like tabs in a web browser, you can be present in multiple worlds and switch between them in a fraction of second
|
||||
[/list]
|
||||
|
||||
[h2]Play, explore and share[/h2]
|
||||
Socializing does not have to end at chatting with your fellow users. Resonite is a universe full of fun gadgets, avatars and games to explore, with features to make any session fun and exciting.
|
||||
|
||||
|
||||
[list]
|
||||
[*] [b]Easy media sharing[/b] - drag & drop pictures, audio/music or videos into any world to share with other users with synchronized playback - it's that easy!
|
||||
[*] [b]Inventory system[/b] - did you find or made something cool? Save it to your inventory! You can spawn any items, gadgets and tools in any world (as long as you have permissions to do so) - everything is fully synchronized too!
|
||||
[*] [b]Dynamic avatar scaling[/b] - exploring the world or interacting with users at different scales can give you quite a different experience - you can change your avatar's scale anywhere, at any time (unless it's limited by the host of the session)!
|
||||
[*] [b]High quality audio streaming[/b] - want to host a party and be the DJ? Streaming your system audio in full stereo in high quality is a few clicks away
|
||||
[*] [b]World search & session discovery system[/b] - looking for a cool world to visit or what your friends are up to? Searching worlds by their names and tags as well as seeing which worlds your contacts are in will help you there
|
||||
[*] [b]Stream to your audience[/b] - our in-game recording and streaming tools make it easy to produce captivating and dynamic camera shots, whether you're streaming or filming videos for social media
|
||||
[*] [b]Custom locomotion[/b] - we don't limit you to just walking around - you can fly, noclip switch to zero-g or build your own customized locomotion system - ever tried to walk on a surface of a Möbius strip?
|
||||
[/list]
|
||||
|
||||
[h2]Build and create[/h2]
|
||||
If you have a creative itch, you may enjoy the powerful toolset that Resonite offers to you. Not only you can build and edit absolutely anything - from your avatar, items, to the entire worlds or even making your own tools, you can collaborate with others in real time and achieve true creative resonance!
|
||||
|
||||
|
||||
[list]
|
||||
[*] [b]Realtime collaboration[/b] - the collaboration on our platform is so seamless, that you will often forget it's there - our powerful engine ensures that the world and everything in it starts in perfect sync, no matter what you do - you'd be hard pressed to find any feature or functionality that'd be visible only to you (unless it's your private UI of course!)
|
||||
[*] [b]Edit anything[/b] - everything you see in the world can be edited and customized with the game tools - in fact, we built a lot of the official functionality in-game with the same tools that are accessible to you - from the home world, default avatars, to video players, color picker UI or progress bar - you can take them apart or build your own from scratch and favorite them
|
||||
[*] [b]Save anything[/b] - you can save literally anything on the platform! Whether you built a new item, an avatar or a world, or made modifications to an existing one, everything can be persisted with a single click of a button. You can efficiently store multiple copies as well - our deduplication system will ensure that any shared assets only get counted once
|
||||
[*] [b]Development tools[/b] - our development tools range from simple brushes and procedural meshes to more advanced and powerful ones, similar to ones you find in classical game development tools - except that you can use them in VR with real time collaboration!
|
||||
[*] [b]Cross-world synchronization and persistence[/b] - with our integrated cloud tools, you can easily preserve user data between sessions or synchronize state across multiple different worlds
|
||||
[*] [b]Import 3D models[/b] - thanks to open source libraries, it's extremely easy to bring in large variety of 3D model formats - simply drag and drop your FBX, OBJ, GLB or other files and bring them in
|
||||
[*] [b]Texture/Audio/Model processing[/b] - need to make a quick edit to a texture, audio file or 3D mesh? Basic editing functions are fully accessible in-game - from hue-shifting textures, normalizing and clipping audio to recalculating normals and tangents on meshes or baking them
|
||||
[*] [b]Export content for external tools[/b] - as easy as it is to bring content in, it's just as easy to take it out! With this, you can make edits using external tools or make Resonite part of your workflow
|
||||
[/list]
|
||||
|
||||
[h2]Code and develop[/h2]
|
||||
[img]{STEAM_APP_IMAGE}/extras/ProtoFlux.png[/img]
|
||||
|
||||
[list]
|
||||
[*] [b]ProtoFlux[/b] - ProtoFlux is the crown jewel of our creative tools - the most powerful visual programming language that our experienced team has designed to date, which lets you quickly prototype and build anything from simple interactions to complex games and systems - with full real-time collaboration support and immediate feedback
|
||||
[*] [b]Script anything[/b] - ProtoFlux can interact with anything - the world, the items, your avatar and any combinations of these!
|
||||
[*] [b]Websockets[/b] - thanks to built-in websocket support, you can easily communicate with external applications and scripts and build extensive functionality, such as your own game servers, fetching external data to integrating new and custom hardware, without having to depend on official integration
|
||||
[*] [b]Async Flows[/b] - creating code that needs to yield or wait across different frames is a native feature of ProtoFlux, with full execution scope preservation - you can even have multiple async flows running off the same code, each with their own unique context, which is a highly powerful and flexible tool for simplifying your logic
|
||||
[*] [b]Flexible storage system[/b] - locals, stores and data model - pick where you store your computational data depending on the desired scope and context, to build highly efficient systems
|
||||
[/list]
|
||||
|
||||
[h2]Resonate with anything, anyone, anywhere...[/h2]
|
||||
We are a team of passionate developers, who are developing more than just a piece of software, but something that we call a second home. We are committed continuous development, with frequent updates and community driven focus. This project is a combination of our dreams and visions of what digital spaces like this should offer and the collective needs, desires and aspirations of our community.
|
||||
|
||||
|
||||
Much of our focus and vision is on giving you, the users and inhabitants of this virtual universe, as much power and agency as we can, whether it's over controlling your experience on the platform or being able to (re)build anything we do.
|
||||
|
||||
It would be our honor if you decide to join our universe and help us build it together. Whatever your background or interests are, we want to build a place where everyone can resonate together.
|
||||
7
Store/en/early_access_community.txt
Normal file
7
Store/en/early_access_community.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Community is a huge part of our plans. We plan to collect feedback and bug reports from our players and make it part of our daily development cycle. Whether it's making quick fixes, tweaks and additions to a more long term planning and architecting of big features.
|
||||
|
||||
Our primary method of providing feedback directly is through our public GitHub issue tracker. We will routinely watch and collect generalized feedback from Steam, Discord, Twitter, Reddit and other social media.
|
||||
|
||||
Our goal is to also integrate a feedback form directly in-game in the future, which will make it easier for users to provide feature requests and report issues without having to leave the game.
|
||||
|
||||
We want our community to feel like they're heard and part of the development process as much as our development resources allow.
|
||||
1
Store/en/early_access_pricing.txt
Normal file
1
Store/en/early_access_pricing.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
No, the project will remain free to play. The price of additional benefits on the platform might change over time if needed (e.g. some things become cheaper or too costly on our end), but overall we want to keep the pricing of the same perks as stable as we can.
|
||||
9
Store/en/early_acess_full_version_differences.txt
Normal file
9
Store/en/early_acess_full_version_differences.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
There are number of key features we want to make happen for the full release. One of them being the addition of a marketplace - a place for the creators on the platform to share their creations with the rest of the community.
|
||||
|
||||
We definitely want to expand and polish the user experience, from UI and UX to building tools and ensuring smooth experiences to both casual and pro users.
|
||||
|
||||
Our plan is to also switch to a fully custom graphics engine and modern runtime, which will not only allow for significant performance optimizations, but also features such as live shader editing.
|
||||
|
||||
We are also considering the integration of WebAssembly, to expand the possibilities of content creation.
|
||||
|
||||
These are just some of the major features we would like to introduce before the platform is considered "ready" - the list is by no means exhaustive or final and we always adapt on the go.
|
||||
3
Store/en/how_long_early_access.txt
Normal file
3
Store/en/how_long_early_access.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
We expect roughly 2-3 years of active development to implement features, optimizations and tweaks before we consider the project to be in a polished enough state to take it out of early access.
|
||||
|
||||
We do not have plans to significantly alter our development cycle after full release and will continue adding new major features and optimizations thanks to the open ended nature of this project.
|
||||
1
Store/en/short.txt
Normal file
1
Store/en/short.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
Enter a novel digital universe with infinite possibilities. Whether you resonate with people around the world in a casual conversation, playing games and socializing or you riff off each other when creating anything from art to programming complex games, you'll find your place here.
|
||||
3
Store/en/why_early_access.txt
Normal file
3
Store/en/why_early_access.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Resonite is a project with a wide scope and despite already having extensive functionality, there are several core features that still have not yet been implemented, to reach what we would consider 'critical mass'.
|
||||
|
||||
Our goal is to actively continue developing this project even after full release. We only consider it to be early, because we don't feel it's 'fully ready'.
|
||||
5
Store/ja/current_state_early_access.txt
Normal file
5
Store/ja/current_state_early_access.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Resoniteには、ストアページの「このゲームについて」セクションに記載されている全ての機能が完全に実装されているため、日常的に遊ぶ、または使用する上での安定性が確保されています。
|
||||
|
||||
しかし、現段階では私たちが望んでいるよりも粗が多い上、追加予定の主要な機能もあります。
|
||||
一部のインタラクションはまだ直感的ではないため、少々難易度が高いかもしれません。
|
||||
また、作業を楽にするための一部の開発ツールが欠けており、全体的によりスムーズな体験のための最適化がさらに必要です。
|
||||
91
Store/ja/description.txt
Normal file
91
Store/ja/description.txt
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
無限の可能性を持つ新しいデジタルユニバースに飛び込みましょう!
|
||||
世界中の人々と交流して友達を作るのもよし、美しいアートやインタラクティブなアバターやガジェット、あるいは複雑でインタラクティブな世界やゲームまで何でも作成・構築するのも良し。
|
||||
Resoniteは無限にカスタマイズ可能な場所であり、あなたが共鳴(Resonate)できるグループを見つける場所です。
|
||||
|
||||
Resoniteの先進的なエンジンのおかげで、マルチプレイ体験がプレイヤー間で完璧に同期され、コミュニティコンテンツクリエイターの手間は一切かかりません。
|
||||
Resoniteは、他のクリエイターと一緒に複雑な世界や仕掛けを作ったり、ただ一緒に遊んだりする場合でも、細部まで同期を完璧に行い、あなたの体験をコントロールできます。
|
||||
|
||||
[h2]みんなと交流しよう[/h2]
|
||||
オンラインでの交流やリアルタイムのコミュニケーションは、デスクトップでもVRにおいても、Resoniteのすべての基盤です。
|
||||
コミュニケーションをとり、「自分自身」でいることは、プラットフォームの重要な部分です。
|
||||
そのために、私たちはいくつかの主要な機能を提供しています:
|
||||
|
||||
[list]
|
||||
[*] [b]低遅延ボイス[/b] - 他のユーザーとのセッション中にリアルタイムでコミュニケーションをとることができ、その遅延の低さは他のメッセージングアプリケーションに引けを取りません。
|
||||
[*] [b]フルカスタム可能なアバター[/b] - リアルタイムでゲーム内アバター・任意のアバターをインポート・カスタマイズして、最高の「自分」を手に入れることが可能です。
|
||||
[*] [b]フルボディトラッキング・目と表情のトラッキング[/b] - 8つのトラッカー(足、膝、腰、胸、肘)ならびに目と顔のトラッキングをサポートすることで、アバターの表現力を最大限に引き出します。
|
||||
[*] [b]触覚サポート[/b] - bHapticsなどの触覚ベストをサポートしているため、没入感を高めて仮想世界の一部となることができます。
|
||||
[*] [b]インスタントメッセージ機能[/b] - テキストでチャットをしたり、招待や音声メッセージ、あるいは任意のアイテムを相手に送信することができます。
|
||||
[*] [b]柔軟なセッションの公開範囲とセキュリティ[/b] - あなたはセッションの公開範囲とアクセシビリティを制御することができ、パブリックから完全なプライベートまで、アクセス範囲を制御できます。
|
||||
参加ユーザーの検証と確認はすべてあなたのクライアントで行われ、またセッションをプライベートに設定した場合、それがプライベートであることを確認できます。
|
||||
[*] [b]カスタマイズ可能なUI[/b] - ユーザーインターフェースは、プラットフォームを使用するための入り口であり、Resoniteの他のすべてと同様に、あなたのニーズに合わせてカスタマイズおよび拡張することができます。
|
||||
これにより、日常的な体験がより快適になります。
|
||||
[*] [b]セルフモデレーションツール[/b] - 私たちはプラットフォーム上でのすべてのインタラクションが良いものとは限らないことを理解しているため、いくつかのセルフモデレーション機能であなたを守ります。
|
||||
独自のワールドでのミュート、キック、禁止機能を使ってモデレーションを行うか、個別のユーザーのアバターやその全体的な存在を簡単にミュートやブロックすることができます。
|
||||
私たちの目標は、仮想体験においてできるだけ多くのコントロールをあなたに提供することです。
|
||||
[*] [b]マルチワールド・プレゼンス[/b] - ウェブブラウザのタブのように、ユーザーは複数の世界に同時に存在し、それらの間を瞬時に切り替えることができます。
|
||||
[/list]
|
||||
|
||||
[h2]遊んで、冒険して、シェアしよう。[/h2]
|
||||
交流は、他のユーザーとのチャットだけで終わる必要はありません。
|
||||
Resoniteは、楽しいガジェット、アバター、ゲームで満たされた宇宙であり、どんなセッションも楽しく、エキサイティングにする機能があります。
|
||||
|
||||
[list]
|
||||
[*] [b]簡単なメディア共有[/b] - 同期再生されるビデオやオーディオ/音楽、画像などをドラッグ&ドロップして、他のユーザーと簡単にシェアしよう!
|
||||
[*] [b]インベントリシステム[/b] - 何かクールなものを見つけたり作ったりしたら、それらをインベントリに保存できます!
|
||||
どのワールドでも、アイテムやガジェット、ツールをスポーンできます!(もちろん、その権限がある場合ですが!)- これらはすべて完璧に同期されます!
|
||||
[*] [b]ダイナミックなアバタースケーリング[/b] - ワールドを探索したり、異なるスケールのユーザーと対話したりすることで、まったく異なる体験ができます - いつでも、どこでもアバターのスケールを変更できます(セッションのホストによって制限されていない場合)。
|
||||
[*] [b]高品質なオーディオストリーミング[/b] - パーティーを主催してDJになりたいですか?高品質なステレオでのシステムオーディオストリーミングは、数回のクリックで開始できます!
|
||||
[*] [b]ワールド検索 & セッション探索システム[/b] - クールなワールドを探したり、フレンドが何をしているか知りたいですか?
|
||||
Resoniteではワールド名やタグでのワールド検索ができたり、ユーザーの居場所を確認することができます。
|
||||
[*] [b]視聴者へのストリーミング[/b] - ゲーム内の録画やストリーミングツールは、ソーシャルメディア向けのビデオをストリーミングや撮影する際に、魅力的でダイナミックなショットを気軽に制作するのに役立ちます。
|
||||
[*] [b]カスタム可能な移動方法[/b] - ただ歩くだけに留まる必要はありません。 - 移動方法を「フライ」や「ノークリップ」に切り替えて無重力状態にしたり、独自の移動システムを構築することができます。 - メビウスの帯の表面を歩くことだってできるんです。
|
||||
[/list]
|
||||
|
||||
[h2]構築と創造[/h2]
|
||||
もしあなたにモノづくり精神があるのなら、Resoniteが提供する強力なツールセットを楽しむことができるでしょう。
|
||||
アバター、アイテム、ワールド全体、あるいは自分のツールを作成・編集するだけでなく、リアルタイムで他者とのコラボレーションも可能です。
|
||||
これらによって、真の創造的な共鳴(Creative Resonance)を実現できます!
|
||||
|
||||
[list]
|
||||
[*] [b]リアルタイムコラボレーション[/b] - このプラットフォーム上でのコラボレーションは非常にシームレスなため、存在を忘れてしまうことがよくあります。 - Resoniteの強力なエンジンは、どんな操作をしても、ワールドやその中のすべてが完璧に同期することを保証しています。
|
||||
特定の機能やシステムがあなたしか見えない、ということはほぼありません。(もちろん、あなたのプライベートUIは除きます。)
|
||||
[*] [b]何でも編集[/b] - ワールドにあるものは何でもゲームツールで編集やカスタマイズができます。
|
||||
実際、公式の機能の多くは、ユーザーに提供されている同じツールを使用してゲーム内で構築されました。
|
||||
ホームワールド、デフォルトのアバター、ビデオプレイヤー、カラーピッカーUIやプログレスバーなど、それらを分解することも、ゼロから独自のモノを構築してお気に入りとして登録することもできます。
|
||||
[*] [b]何でも保存[/b] - 文字通り、プラットフォーム上で何でも保存できます!
|
||||
新しいアイテム、アバター、ワールドを作成したり、既存のものに変更を加えたりした場合、ボタンを一回クリックするだけで全てを永続化できます。
|
||||
効率的に複数のコピーも保存できます。独自の重複排除システムにより、共有アセットは一度だけカウントされます。
|
||||
[*] [b]開発ツール[/b] - 開発ツールは、シンプルなブラシやプロシージャルメッシュから、クラシックなゲーム開発ツールで見られるものに似た、より高度で強力なものまでさまざまです。
|
||||
リアルタイムでの共同作業が可能なVRで、それらの開発ツールを使用できます。
|
||||
[*] [b]ワールド間の同期と永続性[/b] - 統合されたクラウドツールを使用すると、セッション間でユーザーデータを簡単に保持したり、複数の異なるワールド間で状態を同期したりすることができます。
|
||||
[*] [b]3Dモデルのインポート[/b] - オープンソースのライブラリのおかげで、さまざまな3Dモデル形式を非常に簡単に取り込むことが可能です。
|
||||
FBX、OBJ、GLBなどのファイルはドラッグ&ドロップするだけですぐに取り込むことができます。
|
||||
[*] [b]テクスチャ/オーディオ/モデル処理[/b] - テクスチャ、オーディオファイル、3Dメッシュを迅速に編集したいなら、基本的な編集機能はゲーム内で完全に利用可能です。
|
||||
テクスチャの色相シフト、オーディオの正規化やクリッピングから、メッシュの法線や接線の再計算、またはメッシュベイクまで可能です。
|
||||
[*] [b]外部ツール向けのコンテンツエクスポート[/b] - コンテンツを持ち込むのと同じくらい簡単にコンテンツをエクスポートすることができます!
|
||||
これにより、外部のツールを使用して編集を行ったり、Resoniteをワークフローの一部として使用することができます。
|
||||
[/list]
|
||||
|
||||
[h2]コーディングと開発[/h2]
|
||||
[img]{STEAM_APP_IMAGE}/extras/ProtoFlux.png[/img]
|
||||
|
||||
[list]
|
||||
[*] [b]ProtoFlux[/b] - ProtoFluxは、私たちのクリエイティブツールの中でも最もパワフルなものであり、経験豊富なチームがこれまでに設計した最もパワフルなビジュアルプログラミング言語です。
|
||||
これにより、簡単なインタラクションから複雑なゲームやシステムまで、リアルタイムでの共同作業サポートと即時のフィードバックを持って迅速にプロトタイプを作成し、構築することができます。
|
||||
[*] [b]何でもスクリプト化[/b] - ProtoFluxは、世界、アイテム、あなたのアバター、そしてこれらの組み合わせなど、あらゆるものと相互作用することができます!
|
||||
[*] [b]Websockets[/b] - 組み込みのウェブソケットサポートにより、外部アプリケーションやスクリプトと簡単に通信でき、公式の統合に依存することなく、独自のゲームサーバー、外部データの取得、新しいカスタムハードウェアの統合など、広範な機能を構築できます。
|
||||
[*] [b]非同期処理[/b] - ProtoFluxのネイティブ機能として、異なるフレームをまたいで譲渡または待機する必要があるコードを作成することができます。これは完全な実行スコープの保存を伴います。
|
||||
同じコードから複数の非同期フローを実行することもでき、それぞれに独自のユニークなコンテキストがあり、ロジックを簡略化するための非常に強力で柔軟なツールです。
|
||||
[*] [b]柔軟なストレージシステム[/b] - ローカル、ストア、データモデル - 計算データを保存する場所を、任意の範囲とコンテキストに応じて選択し、効率の良いシステムを構築します。
|
||||
[/list]
|
||||
|
||||
[h2]共鳴(Resonate)する。何とでも、誰とでも、どこででも。[/h2]
|
||||
私たちは情熱的な開発者のチームであり、単なるソフトウェア以上のもの、私たちが「第二の家」と呼ぶものを開発しています。
|
||||
私たちは、頻繁なアップデートとコミュニティ主導の焦点を持った継続的な開発にコミットしています。
|
||||
このプロジェクトは、このようなデジタル空間が提供すべきものとしての私たちの夢やビジョン、およびコミュニティのニーズ、欲望、志向の組み合わせです。
|
||||
|
||||
私たちの焦点とビジョンの多くは、プラットフォームでの体験をコントロールしたり、私たちが行うあらゆることを構築・再構築できるようにするなどのできる限りのパワーと権限を、このバーチャルな宇宙の住人でありユーザーである皆さんに与えることです。
|
||||
|
||||
もしあなたが私たちのユニバースに参加し、そして一緒に作り上げてくれるなら、それは私たちにとって光栄なことです。
|
||||
あなたの経歴や興味が何であれ、私たちは誰もが共に共鳴できる場所を作りたいのです。
|
||||
10
Store/ja/early_access_community.txt
Normal file
10
Store/ja/early_access_community.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
コミュニティは我々の計画の大きな部分を占めています。
|
||||
私たちは、プレイヤーからのフィードバックやバグ報告を集め、それを日々の開発サイクルの一部とすることを計画しています。
|
||||
それは、迅速な修正や微調整、機能追加から、長期的な計画や大きな機能の設計までさまざまです。
|
||||
|
||||
私たちが直接フィードバックを提供する主な方法は、GitHubの公開issueトラッカーです。
|
||||
私たちは日常的にSteam、Discord、Twitter、Reddit、その他のソーシャルメディアからの一般的なフィードバックを監視し、収集します。
|
||||
|
||||
私たちの目標は、将来的にはゲーム内に直接フィードバックフォームを統合することで、ユーザーがゲームを離れることなく機能要望を提供したり問題を報告したりしやすくすることです。
|
||||
|
||||
私たちは、開発リソースが許す限り、コミュニティの声を聞き、みなさんが開発プロセスの一部であると感じてもらいたいと考えています。
|
||||
2
Store/ja/early_access_pricing.txt
Normal file
2
Store/ja/early_access_pricing.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
いいえ、Resoniteの価格は引き続き無料です。
|
||||
プラットフォーム上の追加特典の価格は、必要に応じて(例えば、いくつかのものが安くなったり、私たちの側でコストがかかりすぎたり)時間の経過とともに変更されるかもしれませんが、全体的には同じ特典の価格設定をできるだけ安定させたいと考えています。
|
||||
11
Store/ja/early_acess_full_version_differences.txt
Normal file
11
Store/ja/early_acess_full_version_differences.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
フルリリースに向けて実現したい重要な機能がいくつかあります。
|
||||
そのひとつがマーケットプレイスの追加で、プラットフォーム上のクリエイターが自分の作品を他のコミュニティと共有できる場所です。
|
||||
|
||||
UIやUXからツールの構築、そしてカジュアルユーザーからプロユーザーまでスムーズな体験ができるよう、ユーザーエクスペリエンスを拡大し、磨き上げたいと考えています。
|
||||
|
||||
私たちの計画では、完全にカスタム化されたグラフィック・エンジンと最新のランタイムに切り替える予定で、これによりパフォーマンスが大幅に最適化されるだけでなく、ライブ・シェーダー編集などの機能も利用できるようになります。
|
||||
|
||||
また、コンテンツ制作の可能性を広げるため、WebAssemblyの統合も検討しています。
|
||||
|
||||
これらは、プラットフォームが「準備完了」とみなされるまでに導入したい主な機能のほんの一部です。
|
||||
このリストは決して網羅的なものでも最終的なものでもなく、私たちは常に前進しながら適応していきます。
|
||||
3
Store/ja/how_long_early_access.txt
Normal file
3
Store/ja/how_long_early_access.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
私たちは、プロジェクトがアーリーアクセスから外せるほど洗練された状態にするため、機能の実装、最適化、調整に2~3年のアクティブな開発を見込んでいます。
|
||||
|
||||
フルリリース後も開発サイクルを大幅に変更する予定はなく、このプロジェクトのオープンエンドな性質のおかげで、新しい主要機能と最適化を追加し続ける予定です。
|
||||
1
Store/ja/short.txt
Normal file
1
Store/ja/short.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
無限の可能性を秘めた、革新のデジタル世界へ。何気ない会話やゲーム、交流の場で世界中の人々と共鳴(Resonate)し、アートから複雑なゲームのプログラミングまで、創作で互いの意見をぶつけ合おう。
|
||||
4
Store/ja/why_early_access.txt
Normal file
4
Store/ja/why_early_access.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Resoniteは広い範囲をカバーするプロジェクトであり、すでに広範な機能を備えていますが、私たちが「クリティカル・マス」と考えるレベルに達するには、まだ実装されていないコア機能がいくつかあります。
|
||||
|
||||
私たちの目標は、フルリリース後も積極的にこのプロジェクトの開発を続けることです。
|
||||
私たちは、このプロジェクトが「完全な準備」が整っていないと感じているため、初期段階としてみなしています。
|
||||
60
en-gb.json
Normal file
60
en-gb.json
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"localeCode": "en-gb",
|
||||
"authors": ["Nammi", "Enverex", "atomicwave", "CyberZott"],
|
||||
"messages": {
|
||||
|
||||
"Undo.ChangeColor": "Change Colour",
|
||||
|
||||
"Tooltip.Color.Picker": "Colour Picker",
|
||||
|
||||
"Tooltip.Microphone.SourceFiltered": "Filtered & Normalised",
|
||||
|
||||
"CreateNew.Editor.AssetOptimizationWizard": "Asset Optimisation Wizard",
|
||||
|
||||
"AvatarCreator.AlignHeadForward": "Align Head Forwards",
|
||||
|
||||
"AvatarCreator.CenterHead": "Centre Head Position",
|
||||
|
||||
"Importer.Folder.Individual.Description": "Creates a separate import dialogue for each supported file in the folder",
|
||||
|
||||
"Importer.Model.VertexColorModel": "Vertex Coloured Model",
|
||||
|
||||
"Importer.Model.Meters": "Metres (m)",
|
||||
"Importer.Model.Millimeters": "Millimetres (mm)",
|
||||
"Importer.Model.Centimeters": "Centimetres (cm)",
|
||||
|
||||
"Importer.Model.Advanced.VertexColors": "Import Vertex Colours",
|
||||
|
||||
"Importer.Model.Advanced.AlbedoColor": "Import Albedo Colour",
|
||||
|
||||
"Importer.Model.Advanced.VisualizeRig": "Visualise Rig",
|
||||
|
||||
"Importer.Model.Advanced.Optimize": "Optimise Model/Scene",
|
||||
|
||||
"Importer.Model.Advanced.RandomColors": "Generate Random Colours",
|
||||
|
||||
"Settings.Audio.DisableVoiceNormalization": "Disable Voice Normalisation",
|
||||
|
||||
"Settings.Audio.NormzliationThreshold": "Normalisation Threshold: {n}",
|
||||
|
||||
"Inspector.Mesh.ChannelStats": "Normals: {normals}, Tangents: {tangents}, Colours: {colors}, UV0: {uv0}, UV1: {uv1}, UV2: {uv2}, UV3: {uv3}",
|
||||
|
||||
"Inspector.SkinnedMesh.VisualizeBoneBounds": "Visualise bone bounding boxes",
|
||||
"Inspector.SkinnedMesh.VisualizeApproximateBoneBounds": "Visualise approximate merged bone sphere bounds",
|
||||
|
||||
"Inspector.Texture.ColorToAlphaWhite": "Colour to Alpha (white)",
|
||||
"Inspector.Texture.ColorToAlphaBlack": "Colour to Alpha (black)",
|
||||
|
||||
"Inspector.Texture.ConvertToGrayscaleAverage": "Convert to greyscale (average)",
|
||||
|
||||
"Inspector.Audio.Normalize": "Normalise Volume",
|
||||
|
||||
"Inspector.Audio.DenoiseRNNoise": "Denoise (RNNoise, optimised for voice at 48 kHz)",
|
||||
|
||||
"Wizard.AssetOptimization.Title": "Asset Optimisation Wizard",
|
||||
|
||||
"Tutorial.Intro.BadgesMentor": "Mentor",
|
||||
|
||||
"Dummy": "Dummy"
|
||||
}
|
||||
}
|
||||
620
is.json
Normal file
620
is.json
Normal file
|
|
@ -0,0 +1,620 @@
|
|||
{
|
||||
"localeCode": "is",
|
||||
"authors": ["Nammi", "Hroi"],
|
||||
"messages": {
|
||||
|
||||
"General.OK": "Ókei",
|
||||
"General.Start": "Byrja",
|
||||
"General.Finish": "Klára",
|
||||
"General.Cancel": "Hætta",
|
||||
"General.Continue": "Halda áfram",
|
||||
"General.Next": "Næst",
|
||||
|
||||
"General.Back": "Til baka",
|
||||
"General.Confirm": "Ertu viss?",
|
||||
"General.Loading": "Hlaða...",
|
||||
"General.Processing": "Í vinnslu...",
|
||||
"General.FAILED": "MISTÓKST",
|
||||
"General.Reset": "Endurstilla",
|
||||
"General.WorldOpenConfirm": "Ertu viss um að opna?",
|
||||
"General.Save": "Vista",
|
||||
"General.Saving": "Að vista...",
|
||||
"General.Saved": "Vistað!",
|
||||
"General.Done": "Búið!",
|
||||
|
||||
"General.CopiedToClipboard": "Afritað!",
|
||||
"General.CopiedToClipboardLong": "Afritað í klippborð!",
|
||||
"General.Create": "Búa til",
|
||||
"General.Creating": "Að búa til...",
|
||||
|
||||
"General.UI.SearchPrompt": "Leita...",
|
||||
"General.UI.SearchPromptLong": "Sláðu inn til að leita...",
|
||||
|
||||
"General.Sort.Ascending": "Hækkandi",
|
||||
"General.Sort.Descending": "Lækkandi",
|
||||
|
||||
"Locomotion.Noclip.Name": "Neiklip",
|
||||
"Locomotion.Noclip.Description": "Einfallt flug hreyfingargerfi án gerfihöggskynjun. Gott að nota fyrir að vinna.",
|
||||
"Locomotion.Teleport.Name": "Kúluvarp",
|
||||
"Locomotion.Teleport.Description": "Þægileg kúluvarp „Teleport“ hreyfingarkerfi.",
|
||||
"Locomotion.Fly.Name": "Fljúga",
|
||||
"Locomotion.Fly.Description": "Líkamleg flug hreyfingarkerfi.",
|
||||
"Locomotion.WalkRun.Name": "Ganga/Hlaupa",
|
||||
"Locomotion.WalkRun.Description": "Labba, hlaupa, hoppa í líkamlegu formi.",
|
||||
"Locomotion.WalkRunGripping.Name": "Ganga/Hlaupa (með klifri)",
|
||||
"Locomotion.WalkRunGripping.Description": "Labba, hlaupa, hoppa í líkamlegu formi(með klifri).",
|
||||
"Locomotion.ZeroG.Name": "Þyngdarleysi",
|
||||
"Locomotion.ZeroG.Description": "Líkamlegt þyngdarleysi.",
|
||||
"Locomotion.GrabWorld.Name": "Grípa heim",
|
||||
"Locomotion.GrabWorld.Description": "Býr til heimsakkeri með tilvísun og færir notandinn miðað við því.",
|
||||
"Locomotion.Slide.Name": "Renna",
|
||||
"Locomotion.Slide.Description": "Hreyfingarkerfi sem rennir notandanum nálægt yfirborðinu, annars er notandinn að fljúga.",
|
||||
|
||||
"Interaction.Destroy": "Eyða",
|
||||
"Interaction.Duplicate": "Tvöfalda",
|
||||
"Interaction.SaveToInventory": "Vista í birgðahald",
|
||||
"Interaction.Undo": "Afgera",
|
||||
"Interaction.Redo": "Endurgera",
|
||||
"Interaction.EquipTool": "Tengja",
|
||||
"Interaction.DequipTool": "Ótengja",
|
||||
"Interaction.ScalingEnabled": "Breytileg stigstærð: Á",
|
||||
"Interaction.ScalingDisabled": "Breytileg stigstærð: Af",
|
||||
"Interaction.ResetScale": "Endurstilla stigstærð",
|
||||
"Interaction.LaserEnabled": "Bendill: Á",
|
||||
"Interaction.LaserDisabled": "Bendill: Af",
|
||||
|
||||
"Interaction.Locomotion": "Hreyfingarkerfi",
|
||||
"Interaction.Locomotion.None": "Enginn",
|
||||
|
||||
"Interaction.NamedEquipTool": "Tengja {name}",
|
||||
"Interaction.NamedEquipTool.Default": "Verkfæri",
|
||||
|
||||
"Interaction.EnterAnchor": "Hoppa í akkeri",
|
||||
"Interaction.ExitAnchor": "Hoppa úr akkeri",
|
||||
|
||||
"Interaction.EquipAvatar": "Hoppa í avatar",
|
||||
|
||||
"Interaction.SaveAsScreenshot": "Vista sem screenshot",
|
||||
|
||||
"Interaction.ImportFile": "Innflytla skjal",
|
||||
"Interaction.ExportFile": "Útflytja skjal",
|
||||
"Interaction.CopyLink": "Afrita linkur",
|
||||
|
||||
"Dash.Screens.Home": "Heim",
|
||||
"Dash.Screens.Worlds": "Veraldir",
|
||||
"Dash.Screens.Contacts": "Tengiliðir",
|
||||
"Dash.Screens.Inventory": "Birgðahald",
|
||||
"Dash.Screens.Desktop": "Skrifborð",
|
||||
"Dash.Screens.Session": "Þing",
|
||||
"Dash.Screens.FileBrowser": "Skráavafri",
|
||||
"Dash.Screens.Settings": "Stillingar",
|
||||
"Dash.Screens.Exit": "Loka",
|
||||
|
||||
"Dash.Actions.PasteFromClipboard": "Líma innihald klippiborðs",
|
||||
|
||||
"Dash.Actions.CloudHome": "Heimilið mitt á netinu",
|
||||
|
||||
"Dash.Exit.Header": "Loka {appName}",
|
||||
"Dash.Exit.ExitAndSave": "Loka og vista heimil",
|
||||
"Dash.Exit.ExitAndDiscard": "Loka og ekki vista hemili",
|
||||
"Dash.Exit.ThankYou": "Takk fyrir að spila {appName}!",
|
||||
"Dash.Exit.SubmittedBy": "Sent inn af: {name}",
|
||||
|
||||
"World.Waiting": "Er í biðslu...",
|
||||
"World.HostIsStarting": "Gestgjafi er að hefja þing",
|
||||
"World.Loading": "Hleður...",
|
||||
"World.LoadingFailed": "Mistókst",
|
||||
"World.LoadedAssets": "Hlaðaði {assets} af {total_assets}",
|
||||
"World.Downloading": "Niðurhalaði {bytes} af {total_bytes}",
|
||||
|
||||
"World.Connection.EstablishingConnection": "Er að tengjast",
|
||||
"World.Connection.RequestingJoin": "Ósk um tengingu",
|
||||
"World.Connection.Authenticating": "Að staðfesta",
|
||||
"World.Connection.Connected": "Tengd/ur",
|
||||
"World.Connection.SyncingInitialState": "Er að samstilla uprunaleg veraldar staða",
|
||||
|
||||
"World.Error.AccessDenied": "Aðgengi hafnað",
|
||||
"World.Error.SecurityViolation": "Öryggisbrot",
|
||||
"World.Error.OnlyRegisteredUsers": "Einungis skráðar notendur fá að tengjast",
|
||||
"World.Error.OnlyContacts": "Einungis tengiliðir gestgjafans fá að tengjast",
|
||||
"World.Error.OnlyContactsOfContacts": "Einungis tengiliðir af notendur í þinginnu fá að tengjast",
|
||||
"World.Error.Private": "Þingið er Einkaþing",
|
||||
"World.Error.SessionEnded": "Þingið hefur lokað",
|
||||
"World.Error.UserLimitReached": "Þing hefur náð hámarksnotendafjölda",
|
||||
"World.Error.FailedAuthentication": "Mistókst að auðkenna",
|
||||
"World.Error.FailedUserID": "Mistókst að auðkenna userID",
|
||||
"World.Error.FailedFetchingAuthentication": "Mistókst að sækja auðkenningarupplýsingar",
|
||||
"World.Error.JoinAlreadyRequested": "Þátttaka hefur þegar verið óskað",
|
||||
"World.Error.FailedConnectToRelay": "Ekki tókst að tengjast gengi",
|
||||
|
||||
"World.Error.NoPort": "Ekkert Port tilgreind",
|
||||
"World.Error.IncompatibleVersion": "Ósamrýmanleg {appName} útgáfa",
|
||||
|
||||
"World.Error.Unknown": "Óþekkt villa",
|
||||
|
||||
"World.Config.Name": "Nafn veraldar:",
|
||||
"World.Config.Description": "Lýsing:",
|
||||
"World.Config.MaxUsers": "Hámarsksnotentafjölda:",
|
||||
"World.Config.MobileFriendly": "Farsímavænt:",
|
||||
"World.Config.SaveOptionsHeader": "Veraldarvistunarstillingar:",
|
||||
"World.Config.EditMode": "Klippistilling:",
|
||||
"World.Config.AccessLevelHeader": "Hver getur tengst þessari veröld?",
|
||||
"World.Config.AutoKickAFK": "Sparka AFK notendum sjálfkrafa:",
|
||||
"World.Config.AutoKickAFKMinutes": "Hámarks AFK tími:",
|
||||
"World.Config.HideFromListing": "Ekki sýna í þinglýsingu",
|
||||
"World.Config.Autosave": "Vista sjálfkrafa (skrifar yfir síðasta vistun):",
|
||||
"World.Config.AutosaveInterval": "Vista sjálfkrafa (mínútur):",
|
||||
"World.Config.CleanupAssets": "Hreinsa ónotaða assets:",
|
||||
"World.Config.CleanupInterval": "Hreinsunartímabil (sekúndur):",
|
||||
|
||||
"World.Actions.StartSession": "Byrja þing",
|
||||
"World.Actions.Join": "Taka þátt",
|
||||
"World.Actions.Focus": "Einbeita",
|
||||
"World.Actions.Close": "Loka veröld",
|
||||
"World.Actions.Leave": "Fara úr veröld",
|
||||
"World.Actions.Save": "Vista breytingar",
|
||||
"World.Actions.SaveAs": "Vista sem...",
|
||||
"World.Actions.SaveCopy": "Vista afrit...",
|
||||
"World.Actions.SaveHere": "Vista hér",
|
||||
"World.Actions.SaveToInventory": "Vista í birgðahald",
|
||||
"World.Actions.Saving": "Er að vista...",
|
||||
"World.Actions.Discard": "Farga breytingum",
|
||||
"World.Actions.Clone": "Afrita veröld",
|
||||
"World.Actions.Delete": "Farga veröld",
|
||||
"World.Actions.ConfirmDelete": "Staðfesta förgun",
|
||||
"World.Actions.ReallyConfirmDelete": "Farga 100%? (Ekki hægt að afturkalla!)",
|
||||
"World.Actions.Overwrite": "Yfirskrifa sem: {name}",
|
||||
"World.Actions.ConfirmOverwrite": "Staðfesta YFIRSKRIFUN",
|
||||
"World.Actions.Overwriting": "Er að yfirskrifa...",
|
||||
|
||||
"World.Actions.ClosePrompt": "Loka veröld?",
|
||||
"World.Actions.LeavePrompt": "Fara úr veröld?",
|
||||
"World.Actions.CloseConfirm": "Loka",
|
||||
"World.Actions.LeaveConfirm": "Fara",
|
||||
"World.Actions.CannotClose": "(Ekki hægt að loka þessari veröld)",
|
||||
"World.Actions.GuestWarning": "",
|
||||
"World.Actions.HostingWarning": "Þú ert að hýsa þessa veröld. Allir notendur verða aftengdir.",
|
||||
|
||||
"World.Actions.GetWorldOrb": "Ná veraldarkúlu",
|
||||
"World.Actions.CopyWorldURL": "Afrita hlekk veraldar",
|
||||
"World.Actions.CopyRecordURL": "Afrita hlekk skráar",
|
||||
"World.Actions.StartCustomSession": "Byrja sérsniðaðan þing",
|
||||
"World.Actions.ModifyMetadata": "Breyta Metagögn",
|
||||
"World.Actions.GetSessionOrb": "Ná þingkúlu",
|
||||
"World.Actions.CopySessionURL": "Afrita hlekk þings",
|
||||
|
||||
"World.Indicator.NoData": "Engin gögn",
|
||||
"World.Indicator.LocalWorld": "Heimagistað veröld",
|
||||
"World.Indicator.Author": "Af: {name}",
|
||||
"World.Indicator.Host": "Hýsandi: {name}",
|
||||
"World.Indicator.Hosting": "Hýst",
|
||||
"World.Indicator.Sessions": "{n,plural, one {# þing} other {# þing}}",
|
||||
"World.Indicator.Users": "Notendur",
|
||||
"World.Indicator.Users.None": "(Enginn virk þing fundust)",
|
||||
"World.Indicator.Description": "Lýsing",
|
||||
"World.Indicator.Description.None": "(Ekkert lýsing uppgefið)",
|
||||
|
||||
"World.Detail.ActiveSessions": "Virk þing:",
|
||||
"World.Detail.ActiveUsers": "Virkir notendur:",
|
||||
"World.Detail.NewSession": "<nýtt þing>",
|
||||
"World.Detail.DescriptionHeader": "Lýsing: ",
|
||||
"World.Detail.SessionInformationHeader": "Þing upplýsingar",
|
||||
"World.Detail.Uptime": "Upptími",
|
||||
"World.Detail.AccessLevel": "Skyggni",
|
||||
"World.Detail.Users": "Notendur",
|
||||
"World.Detail.Users.Count": "{active}{away, select, 0 {} other { (+{away} í burtu)}} af {max}",
|
||||
|
||||
"World.Detail.WorldInformationHeader": "Veraldar upplýsingar",
|
||||
"World.Detail.PublishDate": "Útgefið",
|
||||
"World.Detail.ModifyDate": "Síðast breytt",
|
||||
"World.Detail.Visits": "Heimsóknir",
|
||||
|
||||
"World.Detail.Tags": "Merkimiðar",
|
||||
"World.Detail.ActionsHeader": "Aðgerðir:",
|
||||
|
||||
"World.Category.Everything": "Allt",
|
||||
"World.Category.Featured": "Valin sérstaklega",
|
||||
"World.Category.PublishedWorlds": "Útgefnir veraldar",
|
||||
"World.Category.ActiveSessions": "Virk þing",
|
||||
|
||||
"World.Category.HeadlessSessions": "Netþjónn hýst þing",
|
||||
"World.Category.Social": "Félagsleg",
|
||||
"World.Category.Games": "Leikir",
|
||||
"World.Category.Art": "List",
|
||||
"World.Category.Tutorials": "Kennsla",
|
||||
"World.Category.Educational": "Lærdómsríkt",
|
||||
|
||||
"World.Category.MyWorlds": "Veraldirnar mínar",
|
||||
"World.Category.Custom": "Sérsnið",
|
||||
|
||||
"World.AccessLevel.Anyone": "Hver sem er",
|
||||
"World.AccessLevel.RegisteredUsers": "Skráðar notendur",
|
||||
|
||||
"World.AccessLevel.LAN": "LAN",
|
||||
"World.AccessLevel.Private": "Einkaþing (einungis boð)",
|
||||
|
||||
"World.SortParameter.SearchScore": "Leitarstig",
|
||||
"World.SortParameter.Name": "Nafn",
|
||||
"World.SortParameter.OpenedWorldCount": "Opnaðar veraldir",
|
||||
"World.SortParameter.TotalSessionCount": "Öll þing",
|
||||
"World.SortParameter.TotalUserCount": "Heildarnotendur",
|
||||
"World.SortParameter.CreationDate": "Stofndagur",
|
||||
"World.SortParameter.LastUpdateDate": "Síðast breytt",
|
||||
"World.SortParameter.FirstPublishTime": "Útgefnardagur",
|
||||
"World.SortParameter.TotalVisits": "Heildarheimsóknir",
|
||||
|
||||
"World.Filter.DataSources": "Gagnaheimildir:",
|
||||
"World.Filter.OpenedWorlds": "Opnaðar veraldir",
|
||||
"World.Filter.ActiveSessions": "Virk þing",
|
||||
"World.Filter.PublishedWorlds": "Útgefnar veraldir",
|
||||
"World.Filter.LocalWorlds": "Staðværar veraldir",
|
||||
"World.Filter.BaseSearch": "Grunnleit:",
|
||||
"World.Filter.ByOwner": "Af eiganda:",
|
||||
"World.Filter.UserOwner": "Eigandi er notandi",
|
||||
"World.Filter.GroupOwner": "Eigandi er hópur",
|
||||
"World.Filter.SubmittedToGroup": "Lögð í hóp:",
|
||||
"World.Filter.Featured": "Einungis það valin sérstaklega",
|
||||
"World.Filter.MyWorlds": "Heimarnar mínar",
|
||||
"World.Filter.SessionFiltering": "þingsía:",
|
||||
"World.Filter.MinimumUsers": "Lámarksnotendur: <b>{n}</b>",
|
||||
|
||||
"World.Filter.OnlyHeadless": "Einungis höfuðlausar hýsendur",
|
||||
"World.Filter.MaxAccessLevel": "Hámarks aðgangstig:",
|
||||
"World.Filter.MinimumUptime": "Lámarks upptími:",
|
||||
"World.Filter.Sorting": "Flokkun:",
|
||||
|
||||
"World.Edit.Title": "Breyta veraldar Metadata",
|
||||
"World.Edit.Name": "Nafn veraldar:",
|
||||
"World.Edit.Description": "Lysing:",
|
||||
"World.Edit.Tags": "Tags (komma á milli):",
|
||||
"World.Edit.Path": "Heimsleið:",
|
||||
"World.Edit.AccessLevelHeader": "Hver getur opnað þennan heim?",
|
||||
"World.Edit.AccessPrivate": "Bara ég",
|
||||
"World.Edit.AccessPatreon": "Patreon stuðningsmeðlimar",
|
||||
"World.Edit.AccessPublic": "Hver sem er (Almenning)",
|
||||
|
||||
"Tools.AvatarCreator": "Avatar smíðara",
|
||||
"Tools.FullBodyCalibrator": "Full Body stillingagræja",
|
||||
"Tools.CameraStreaming": "Myndavél / Streymara",
|
||||
"Tools.CreateNewWorld": "Búa til nýja veröld",
|
||||
"Tools.Debug": "Debug",
|
||||
"Tools.StreamAudio": "Streyma hljóði",
|
||||
|
||||
"Tools.StreamAudio.Start": "Byrja að streyma",
|
||||
"Tools.StreamAudio.Bitrate": "Bitahraði: {bitrate} kbps",
|
||||
"Tools.StreamAudio.Title": "{username} Hljóðstraum",
|
||||
|
||||
"Tools.StreamAudio.PlayForOwner.Off": "Spila fyrir eiganda: Af",
|
||||
"Tools.StreamAudio.PlayForOwner.On": "Spila fyrir eiganda: Á",
|
||||
|
||||
"Options.FreeformDash.On": "Fljótandi mælaborð: Á",
|
||||
"Options.FreeformDash.Off": "Fljótandi mælaborð: Af",
|
||||
"Options.SeatedMode.On": "Sitjandi: Á",
|
||||
"Options.SeatedMode.Off": "Sitjandi: Af",
|
||||
"Options.Nameplates.All": "Nafnspjöld: Sýna",
|
||||
"Options.Nameplates.NonContacts": "Nafnspjöld: Sýna ekki tengiliði",
|
||||
"Options.Nameplates.Hide": "Nafnspjöld: Fela",
|
||||
|
||||
"Indicator.OnlineUsers": "Virkir notendur: ~{num_registered} ({num_total})",
|
||||
"Indicator.ServerStatus": "<color=#fff>Netþjónusta:</color> {status, select, Good {Góð} Slow {Hæg} Down {Niðri} NoInternet {Ekkert netsamband}} ({response_ms} ms)",
|
||||
|
||||
"Indicator.Sync.AllSynced": "Allt samstillt",
|
||||
"Indicator.Sync.SyncingItems": "Samstilla {item_count,plural, one {# hlut} other {# hlutir}} <nobr>({item_percent} %)",
|
||||
"Indicator.Sync.UploadingVariants": "Upphlaða {variant_count,plural, one {# eignarafbrigði} other {# eignarafbrögð}}",
|
||||
"Indicator.Sync.SyncError": "Samstillingarvilla! <size=50%>Kíktu á log skrá fyrir gríðalega góðar upplysýngar</size>",
|
||||
"Indicator.Sync.OutOfSpace": "Ekkert pláss til! <size=50%>Ekki hægt að framkvæma samstillingu</size>",
|
||||
|
||||
"Indicator.LiveHiddenMessage": "(Upplysingar faldar á meðan þú ert í beinni)",
|
||||
|
||||
"Account.Login": "Innskráning",
|
||||
"Account.Logout": "Útskráning",
|
||||
"Account.Register": "Skrá nýr notandi",
|
||||
|
||||
"Account.LoginOrRegister": "Innskráning / Skrá sig",
|
||||
"Account.LogoutConfirm": "Ertu viss um að þú viljir skrá þig út?",
|
||||
"Account.LoggingIn": "Innskráning í vinnslu...",
|
||||
"Account.LoggingOut": "Útskráning í vinnslu...",
|
||||
"Account.Registering": "Skráning í vinnslu...",
|
||||
"Account.Anonymous": "Nafnlaus",
|
||||
"Account.Username": "Notendanafn:",
|
||||
"Account.Email": "Tölvupóstfang:",
|
||||
"Account.RememberMe": "Muna eftir mér: (7 daga)",
|
||||
"Account.RepeatEmail": "Endurtaka Tölvupóstfang:",
|
||||
"Account.UsernameOrEmail": "Notendanafn eða tölvupóstfang:",
|
||||
"Account.Password": "Lykilorð:",
|
||||
"Account.RepeatPassword": "Endurtaka lykilorð:",
|
||||
"Account.RecoverPassword": "Týnt lykilorð?",
|
||||
"Account.LiveEmailWarning": "<color=#f00>VARÚÐ:</color> live.com, hotmail.com, outlook.com og aðrar Microsoft-hýsað þjónustur geta tekið up að 1-2 dagar til að samþykkja tölvupóstinn.",
|
||||
"Account.PasswordRules": "(að minnsta kosti 8 stafi, 1 tölu, 1 lítin staf og 1 stóran staf)",
|
||||
"Account.AgeConfirm": "Ég er þrettán ára eða eldri",
|
||||
"Account.LostPassword": "Týnt lykilorð",
|
||||
"Account.SendRecoveryCode": "Senda auðkenniskóða",
|
||||
"Account.ResetPasswordHeader": "Endursetja lykilorð",
|
||||
"Account.ResetPasswordInstructions": "Auðkenniskóða hefur verið sent á tölvupóstfangið þitt. Afritaðu það í reitinn fyrir neðan:",
|
||||
"Account.RecoveryCode": "Auðkenniskóða:",
|
||||
"Account.NewPassword": "Nýtt lykilorð:",
|
||||
"Account.ResetPassword": "Setja nýtt lykilorð",
|
||||
"Account.Requesting": "Beiðni...",
|
||||
"Account.ErrorPasswordMismatch": "Lykilorð passa ekki!",
|
||||
"Account.ErrorEmailMismatch": "Tölvupóstfang passa ekki!",
|
||||
"Account.ErrorLoginError": "Villa við innskráningu:",
|
||||
"Account.RegistrationSuccess": "Vá glæsilegt! Erum búin að senda þér tölvupóst með staðfestingarhlekk. Eftir þú ert búin að smella á þennan hlekk getur þú skráð þig inn.",
|
||||
|
||||
"Profile.Status.Online": "Virkur",
|
||||
"Profile.Status.Away": "Í burtu",
|
||||
"Profile.Status.Busy": "Upptekinn",
|
||||
"Profile.Status.Invisible": "Ósýnilegur",
|
||||
"Profile.Status.Offline": "Ótengdur",
|
||||
|
||||
"Session.Tab.Settings": "Stillingar",
|
||||
"Session.Tab.Users": "Notendur",
|
||||
"Session.Tab.Permissions": "Leyfi",
|
||||
|
||||
"Session.Permission.Anonymous": "Sjálfgefið nafnlaus:",
|
||||
"Session.Permission.Vistor": "Sjálfgefinn gestur:",
|
||||
"Session.Permission.Contact": "Sjálfgefinn tengiliður:",
|
||||
"Session.Permission.Host": "Sjálfgefinn hýsandi:",
|
||||
"Session.Permission.PermissionOverrideCount": "Yfirskrifin leyfi: {n,select, -1 {---} other {{n}}}",
|
||||
"Session.Permission.ClearOverrides": "Endursetja yfirskrifin leyfi",
|
||||
|
||||
"Permissions.NotAllowedToSpawn": "Þú mátt ekki spawna hluti hérna.",
|
||||
"Permissions.NotAllowedToSave": "Þú mátt ekki vista hluti frá þessum heim.",
|
||||
"Permissions.NotAllowedToSwapAvatar": "Þú mátt ekki skipta í kustom avararinn þinn hér.",
|
||||
|
||||
"User.Actions.Mute": "Mállaus",
|
||||
"User.Actions.Jump": "Hoppa",
|
||||
"User.Actions.Respawn": "Endurræsa mann",
|
||||
"User.Actions.Kick": "Sparka",
|
||||
"User.Actions.Ban": "Banna",
|
||||
|
||||
"Contacts.Add": "Bæta við sem tengilið",
|
||||
"Contacts.Remove": "Eyða tengilið",
|
||||
"Contacts.ConfirmRemove": "Eyða, ertu viss?",
|
||||
"Contacts.AcceptRequest": "Samþykkja beiðni",
|
||||
"Contacts.IgnoreRequest": "Hunsa beiðni",
|
||||
"Contacts.Invite": "Bjóða hingað",
|
||||
"Contacts.BanFromAllSessions": "Banna frá ÖLL þing sem ég hýs",
|
||||
"Contacts.UnbanFromAllSessions": "Afbanna frá ÖLL þing sem ég hýs",
|
||||
"Contacts.BanFromCurrentWorld": "Banna frá núverandi veröld",
|
||||
"Contacts.UnbanFromCurrentWorld": "Afbanna frá núverandi veröld",
|
||||
|
||||
"Contacts.InSession": "Í {name}",
|
||||
"Contacts.InPrivate": "Í einkaheim",
|
||||
|
||||
"Contacts.InHidden": "Í fallinn heim",
|
||||
|
||||
"Contacts.InLAN": "Í LAN heim",
|
||||
"Contacts.UsingDifferentVersion": "Á útgáfu {version}",
|
||||
"Contacts.RequestSent": "Beiðni sent",
|
||||
"Contacts.RequestReceived": "Tengiliðabeiðni til þín",
|
||||
"Contacts.RequestIgnored": "Hunsað",
|
||||
"Contacts.Blocked": "Blokkað",
|
||||
"Contacts.SearchResult": "Leitarniðurstaða",
|
||||
"Contacts.Bot": "Vélmennanotandi",
|
||||
|
||||
"Notifications.IsOnline": "Er nú virkur",
|
||||
"Notifications.IsOnlineOnDifferentVersion": "Er nú virkur <size=75%>(á útgáfu: {version})</size>",
|
||||
"Notifications.ReceivedContactRequest": "Senti tengiliðabeiðni",
|
||||
"Notifications.ReceivedInvite": "Er að bjóða þig að taka þátt í:",
|
||||
"Notifications.ReceivedItem": "Senti þér hlut:",
|
||||
"Notifications.ReceivedTip": "Fékkst klink {amount} {token}",
|
||||
"Notifications.SentTip": "Senti klink {amount} {token}",
|
||||
"Notifications.VoiceMessage": "Senti talskilaboð",
|
||||
|
||||
"Undo.SetField": "Filla Field {field_name} sem {value}",
|
||||
"Undo.SetReference": "Setja reference {ref_name} sem {ref_target}",
|
||||
"Undo.Spawn": "Skapa {name}",
|
||||
"Undo.Destroy": "Eyða {name}",
|
||||
"Undo.SpawnComponent": "Tengja {component_type} á {slot_name}",
|
||||
"Undo.DuplicateComponent": "Tvöfalda Component",
|
||||
"Undo.DestroyComponent": "Eyða {component_type} af {slot_name}",
|
||||
"Undo.Transform": "Færði {name}",
|
||||
"Undo.Translate": "Þýða",
|
||||
"Undo.TranslateAlongAxis": "Þýða yfir öxull",
|
||||
"Undo.RotateAroundAxis": "Snúa á öxull",
|
||||
"Undo.ResetPosition": "Endurstilla staðsetning",
|
||||
"Undo.ResetRotation": "Endurstilla snúning",
|
||||
"Undo.ResetScale": "Endurstilla stærð",
|
||||
|
||||
"Undo.GrabObjects": "Grípa hluti",
|
||||
"Undo.DestroyGrabbed": "Eyða gripnum hlutum",
|
||||
"Undo.DuplicateGrabbed": "Afrita gripna hluti",
|
||||
|
||||
"Undo.ChangeBoxSize": "Breyta stærð kassa",
|
||||
"Undo.BrushStroke": "Pensilstrokur",
|
||||
"Undo.ChangeColor": "Breyta lit",
|
||||
"Undo.CloneComponent": "Klóna Component",
|
||||
"Undo.MoveIKBone": "Færa IK Bein",
|
||||
"Undo.MoveSun": "Færa sólina",
|
||||
"Undo.ApplyMaterial": "Setja efni",
|
||||
"Undo.BakeMeshes": "Baka {name}",
|
||||
"Undo.ChangeMesh": "Breyta Mesh",
|
||||
"Undo.InsertParent": "Setja inn foreldri fyrir {name}",
|
||||
"Undo.Wiggler": "Vont dót",
|
||||
|
||||
"Undo.ExtractMaterialsFromHierarchy": "Gríppa efni frá stigveldi",
|
||||
"Undo.BatchConvertMaterials": "Hópumbreyta efnum",
|
||||
|
||||
"Tooltips.Dev.CreateNew": "Búa til nýtt...",
|
||||
"Tooltips.Dev.Selection": "Val: {mode}",
|
||||
"Tooltips.Dev.DevMode.Off": "Forritarastilling: Af",
|
||||
"Tooltips.Dev.DevMode.On": "Forritarastilling: Á",
|
||||
"Tooltips.Dev.OpenInspector": "Opna Eftirlitsglugga",
|
||||
"Tooltips.Dev.DeselectAll": "Afvelja allt",
|
||||
"Tooltips.Dev.DestroySelected": "Eyða vali",
|
||||
"Tooltips.Dev.ConfirmDestroySelected": "VIRKILEGA eyða vali",
|
||||
|
||||
"Tooltip.Color.Picker": "Lit veljari",
|
||||
|
||||
"Tooltip.GrabbableSetter.Scalable": "Setja stillanlega stærð",
|
||||
"Tooltip.GrabbableSetter.NonScalable": "Setja sem ekki stillanlega stærð",
|
||||
|
||||
"Tooltip.CharacterCollider.MarkGrippable": "Merkja sem grípanlegt",
|
||||
"Tooltip.CharacterCollider.DontMarkGrippable": "Ekki merkja sem grípanlegt",
|
||||
"Tooltip.CharacterCollider.EnsureWalkRun": "Tryggja Labba/Hlaupa hreyfingarkerfi",
|
||||
"Tooltip.CharacterCollider.EnsureZeroG": "Tryggja Þýngdarleysis hreyfingarkerfi",
|
||||
"Tooltip.CharacterCollider.EnsurePhysicalFly": "Tryggja Flug hreyfingarkerfi",
|
||||
|
||||
"Tooltip.Light.Point": "Púnkt",
|
||||
"Tooltip.Light.Spot": "Benndablett",
|
||||
"Tooltip.Light.Sun": "Sól",
|
||||
|
||||
"Tooltip.MeshVisibility.KeepShadow": "Halda skugga",
|
||||
"Tooltip.MeshVisibility.ShadowOff": "Farga skugga",
|
||||
"Tooltip.MeshVisibility.ShadowOn": "Skugga á",
|
||||
"Tooltip.MeshVisibility.OnlyShadow": "Setja sem einungis skugga",
|
||||
"Tooltip.MeshVisibility.DoubleSidedShadow": "Setja sem beggjahliða skugga",
|
||||
|
||||
"Tooltip.Material.CreateCopy": "Búa til afrit",
|
||||
"Tooltip.Material.Edit": "Breyta efni",
|
||||
"Tooltip.Material.Convert": "Breyta í...",
|
||||
|
||||
"Tooltip.Material.CreateNew": "Búa til nýtt",
|
||||
|
||||
"Tooltip.Mesh.Edit": "Breyta Mesh",
|
||||
|
||||
"Tooltip.Microphone.Format.WAV": "WAV",
|
||||
"Tooltip.Microphone.Format.Vorbis": "OGG Vorbis",
|
||||
"Tooltip.Microphone.Format.FLAC": "FLAC",
|
||||
"Tooltip.Microphone.ModeHold": "Halda til að taka upp",
|
||||
"Tooltip.Microphone.ModePress": "Íta til að byrja/stansa upptöku",
|
||||
"Tooltip.Microphone.SourceRaw": "Hrátt",
|
||||
"Tooltip.Microphone.SourceFiltered": "Sigtað og venjað",
|
||||
|
||||
"Importer.Image.Title": "Mynd importara",
|
||||
"Importer.Image.Prompt": "Hvað ertu að importa?",
|
||||
"Importer.Image.Regular": "Ljósmynd / Texture",
|
||||
|
||||
"Importer.Image.360": "360 mynd / skybox",
|
||||
"Importer.Image.StereoPhoto": "Stereo mynd",
|
||||
"Importer.Image.Stereo360": "Stereo 360 mynd",
|
||||
"Importer.Image.180": "180 mynd",
|
||||
"Importer.Image.Stereo180": "Stereo 180 mynd",
|
||||
|
||||
"Importer.Model.Meters": "Metrar (m)",
|
||||
"Importer.Model.Millimeters": "Millimetrar (mm)",
|
||||
"Importer.Model.Centimeters": "Sentimetrar (cm)",
|
||||
"Importer.Model.Inches": "Tommur",
|
||||
"Importer.Model.FinalizePrompt": "Allt tilbúið?",
|
||||
|
||||
"Settings.Height": "Hæðin mín:",
|
||||
"Settings.Metric": "Metrakerfi (cm)",
|
||||
"Settings.Imperial": "Tómmumál (ft)",
|
||||
|
||||
"Settings.OverrideLocale": "Yfirskrifa Locale:",
|
||||
"Settings.HideAllTutorials": "Fela öll Tutorial",
|
||||
"Settings.ShowInteractionHints": "Sýna Interaction Hints",
|
||||
"Settings.PrimaryController": "Aðalfjarstýring",
|
||||
"Settings.AllowStrafing": "Leyfa streifing",
|
||||
"Settings.UseHeadDirectionForMovement": "Nota stýring miðað við haus",
|
||||
"Settings.SmoothTurn": "Slétt snúning",
|
||||
"Settings.SmoothTurnExclusiveMode": "Einungis slétt snúnings stilling",
|
||||
"Settings.SmoothTurnSpeed": "Slétt snúnings hraði",
|
||||
"Settings.SnapTurnAngle": "Smell snúning í gráðum",
|
||||
"Settings.NoclipSpeed": "Hraði á flugi gegnum veggi",
|
||||
|
||||
"Settings.ControllerVibration": "Titring í fjarstýringu",
|
||||
|
||||
"Settings.DisablePhysicalInteractions": "Slökkva á Physical Interactions",
|
||||
"Settings.EnableGestures": "Kveikja á Gestures",
|
||||
"Settings.DoubleClickInterval": "Double Click tímabil",
|
||||
"Settings.ResetAllTutorials": "Endurstilla öll Tutorial",
|
||||
"Settings.PreferSteamNetworking": "Velja frekar Steam Networking Sockets",
|
||||
|
||||
"Settings.LegacyGripEquip": "Kveikja á Legacy Double Grip Equip",
|
||||
"Settings.LegacyWorldSwitcher": "Kveikja á Legacy World Switcher",
|
||||
"Settings.FetchIncompatibleSessions": "Sýna Incompatible Sessions",
|
||||
|
||||
"Settings.Locale.ChangeLanguage": "Breyta tungumáli",
|
||||
"Settings.Locale.SelectLanguageHeader": "Veldu tungumálið þitt:",
|
||||
|
||||
"Settings.Save": "Vista breytingar",
|
||||
|
||||
"Settings.FullBody.Header": "Full Body græja dæmi:",
|
||||
"Settings.FullBody.FeetPositionSmoothing": "Fót Position Smoothing",
|
||||
"Settings.FullBody.FeetRotationSmoothing": "Fót Rotation Smoothing",
|
||||
"Settings.FullBody.HipsPositionSmoothing": "Mjaðma Position Smoothing",
|
||||
"Settings.FullBody.HipsRotationSmoothing": "Hjaðma Rotation Smoothing",
|
||||
|
||||
"Settings.Dash.Header": "Mælaborð",
|
||||
"Settings.Dash.Curvature": "Sveigja",
|
||||
"Settings.Dash.OpenCloseSpeed": "Opna/loka hraða",
|
||||
|
||||
"Settings.ViveHandTracking.Name": "Vive puttaskynjunagaldur",
|
||||
"Settings.ViveHandTracking.Enabled": "Vive handskynjun virk",
|
||||
"Settings.ViveHandTracking.SnapDistance": "Vive handskynjunar Snap Distance",
|
||||
"Settings.ViveHandTracking.UseFingersWhenSnapped": "Nota Vive putta þegar það er Snapped",
|
||||
|
||||
"Settings.WindowsIntegration": "Windows samþætting",
|
||||
"Settings.LinuxIntegration": "GNU/Linux samþætting",
|
||||
|
||||
"Settings.System.KeepOriginalScreenshotFormat": "Halda upprunaleg screenshot snið",
|
||||
"Settings.System.KeepOriginalScreenshotFormat.Description": "Með kveikt, screenshottar verða ekki breyttar í JPG þegar flutt út í skjalasaft á tölvunni",
|
||||
|
||||
"Security.Hyperlink.Warning": "<b><size=125%>Warning: Outgoing hyperlink</size></b>\nÞú hefur smellt á hlekk. Viltu opna það? Þessi hlekkur opnar í vafra á tölvuna þína.",
|
||||
"Security.Hyperlink.Open": "Opna",
|
||||
"Security.Hyperlink.Cancel": "Hætta við",
|
||||
|
||||
"Security.HostAccess.Title": "Hýsing aðgangur",
|
||||
"Security.HostAccess.Warning": "<b><size=125%>Varúð: Verölð er að reyna fá aðgang að þriðjum aðila hýsingu</size></b>\nMeð því að leyfa aðgang getur þriðjum aðila safnað persónulegum upplýsingum, svo sem IP töluna þína og landfræðileg staðsetning.",
|
||||
"Security.HostAccess.TargetHost": "Hýsing sem spurt er um: <b>{host}</b>",
|
||||
"Security.HostAccess.Reason": "Ástæða: {reason}",
|
||||
"Security.HostAccess.NoReason": "<i>Engin ástæða gefin upp</i>",
|
||||
"Security.HostAccess.Allow": "Leyfa",
|
||||
"Security.HostAccess.Deny": "Neita",
|
||||
|
||||
"Inspector.Mesh.StatsHeader": "Mesh tölfræði",
|
||||
"Inspector.Mesh.VertexCount": "Vertex fjölda: {n}",
|
||||
"Inspector.Mesh.TriangleCount": "Þríhyrningafjölda: {n}",
|
||||
"Inspector.Mesh.PointCount": "Púnktafjölda: {n}",
|
||||
"Inspector.Mesh.SubmeshCount": "Submesh fjölda: {n}",
|
||||
"Inspector.Mesh.BoneCount": "Bein fjölda: {n}",
|
||||
"Inspector.Mesh.BlendshapeCount": "Blendshape fjölda: {n}",
|
||||
|
||||
"Tutorial.Welcome.WelcomeTo": "Velkomin/nn í",
|
||||
"Tutorial.Welcome.LetsStart": "Byrjum!",
|
||||
|
||||
"Tutorial.Welcome.AccountHeader": "{appName} reikningur",
|
||||
"Tutorial.Welcome.AccountDescription": "Að nota {appName} reikning gefur þér aðgang að 1GB ókeypis geymsluplássi. Þú getur vistað hluti og avatars, bætt fólki við sem tengilið og send skilaboð.",
|
||||
"Tutorial.Welcome.AccountCreate": "Búa til reikning",
|
||||
"Tutorial.Welcome.AccountLogin": "Ég er nú þegar með reikning",
|
||||
"Tutorial.Welcome.AccountSkip": "Halda áfram án reiknings",
|
||||
"Tutorial.Welcome.AccountSkipHeader": "Sleppa að búa til reikning?",
|
||||
"Tutorial.Welcome.AccountSkipDescription": "Sumt verður ekki aðgengilegt eins og að vista hluti í birgðarhald, vista avatars og bæta fólki við sem tengilið.",
|
||||
"Tutorial.Welcome.AccountSkipConfirm": "Ég er viss um að sleppa",
|
||||
|
||||
"Tutorial.Welcome.SettingsHeader": "Grunnstillingar",
|
||||
"Tutorial.Welcome.SettingsDescription": "Stillum smá nauðsýnlegt dótt. Þú getur líka breytt þessu seinna.",
|
||||
"Tutorial.Welcome.SettingsTurning": "Snúnings stíll",
|
||||
"Tutorial.Welcome.SettingsSnapTurn": "Smellsúning",
|
||||
"Tutorial.Welcome.SettingsSnapTurnDescription": "Smelli snúningur, snýr 45 gráður samstundis. Gott fyrir nýja notendur í gerfiraunveruleika.",
|
||||
"Tutorial.Welcome.SettingsSmoothTurn": "Sléttsnúning",
|
||||
"Tutorial.Welcome.SettingsSmoothTurnDescription": "Snúning með smám saman sveigjanleg inntak. Getur valdið ferðaveiki.",
|
||||
"Tutorial.Welcome.SettingsPrimaryController": "Aðal fjarstýring",
|
||||
"Tutorial.Welcome.SettingsPrimaryLeft": "Vinstri",
|
||||
"Tutorial.Welcome.SettingsPrimaryLeftDescription": "<b>Vinstri fjarstýring:</b> Snúa, <b>Hægri fjarstýring:</b> Hreyfing",
|
||||
"Tutorial.Welcome.SettingsPrimaryRight": "Hægri",
|
||||
"Tutorial.Welcome.SettingsPrimaryRightDescription": "<b>Vinstri fjarstýring:</b> Hreyfing, <b>Hægri fjarstýring:</b> Snúa",
|
||||
"Tutorial.Welcome.SettingsHeight": "Hæðin þín",
|
||||
"Tutorial.Welcome.SettingsHeightExamples": "Dæmi: 1.85 m, 185 cm, 6' 1\", 6 fett 1 tomma",
|
||||
|
||||
"Tutorial.Welcome.StartTutorialHeader": "Byrja Tutorial",
|
||||
"Tutorial.Welcome.StartTutorialDescription": "Við munum færa þig í tutorial heiminn til að aðlagast {appName}. Þú getur valið að hafa heiminn aðgengilegann fyrir aðra notendur, þá getur {appName} samfélagið hoppað inn og hjálpað þér. Eða læra á eigin spýtur.",
|
||||
|
||||
"Tutorial.Intro.BadgesModerator": "{appName} hófstjóri",
|
||||
"Tutorial.Intro.BadgesMentor": "Kennari",
|
||||
"Tutorial.Intro.BadgesDisabilityHearing": "Heirnarskertur",
|
||||
"Tutorial.Intro.BadgesDisabilityVision": "Sjónskertur",
|
||||
"Tutorial.Intro.BadgesDisabilitySpeech": "Talskertur",
|
||||
"Tutorial.Intro.BadgesTitle": "Merki",
|
||||
"Tutorial.Intro.BadgesDescription": "Merki eða „Badges“ eru lítil merki sem sýna áhveðna hætti um notendur. Hérna eru nokkur mikilvæg merki til að vita um. Fötlunarmerkin er hægt að stilla sjálfur í gegnum {appName} vélmennið. Meiri upplýsingar eru á {appName} Wiki.",
|
||||
"Tutorial.Intro.HelpSite": "Hjálp",
|
||||
|
||||
"Exiting.SavingItems": "Að vista {n, plural, one {# hlut} other {# hlutir}}...",
|
||||
"Exiting.SavingChanges": "Að vista Breytingar...",
|
||||
"Exiting.Exiting": "Að loka...",
|
||||
"Exiting.LoggingOut": "Útskráning...",
|
||||
|
||||
"Dummy": "Dummy"
|
||||
}
|
||||
}
|
||||
953
no.json
Normal file
953
no.json
Normal file
|
|
@ -0,0 +1,953 @@
|
|||
{
|
||||
"localeCode": "no",
|
||||
"authors": ["Reborn"],
|
||||
"messages": {
|
||||
|
||||
"General.OK": "OK",
|
||||
|
||||
"General.Cancel": "Avbryt",
|
||||
"General.Continue": "Fortsette",
|
||||
"General.Next": "Neste",
|
||||
|
||||
"General.Back": "Tilbake",
|
||||
"General.Confirm": "Bekrefte",
|
||||
"General.Loading": "Laster inn...",
|
||||
"General.Processing": "Behandler...",
|
||||
"General.FAILED": "FEILET",
|
||||
"General.Reset": "Nullstille",
|
||||
"General.WorldOpenConfirm": "åpne?",
|
||||
|
||||
"General.Saved": "Lagret!",
|
||||
|
||||
"General.CopiedToClipboard": "Kopiert!",
|
||||
"General.CopiedToClipboardLong": "Kopiert til utklippstavlen!",
|
||||
|
||||
"General.UI.SearchPrompt": "Søke...",
|
||||
"General.UI.SearchPromptLong": "Skriv for å søke...",
|
||||
|
||||
"General.Sort.Ascending": "Stigende",
|
||||
"General.Sort.Descending": "synkende",
|
||||
|
||||
"Locomotion.Noclip.Name": "ikke-klipp",
|
||||
"Locomotion.Noclip.Description": "Enkel ikke-klipp flyemodus, ideell for redigering.",
|
||||
"Locomotion.Teleport.Name": "Teleport",
|
||||
"Locomotion.Teleport.Description": "Bruker ballistisk baneteleportering for komfortabel bevegelse.",
|
||||
"Locomotion.Fly.Name": "Fly",
|
||||
"Locomotion.Fly.Description": "Fysisk flymodus",
|
||||
"Locomotion.WalkRun.Name": "Gå/løp",
|
||||
"Locomotion.WalkRun.Description": "Fysisk gang, løping og hopping.",
|
||||
"Locomotion.WalkRunGripping.Name": "Gå / løp (med klatring)",
|
||||
"Locomotion.WalkRunGripping.Description": "Fysisk gang, løping og hopping og klatring.",
|
||||
"Locomotion.ZeroG.Name": "Null-G",
|
||||
"Locomotion.ZeroG.Description": "Vektløs fysisk bevegelse",
|
||||
"Locomotion.GrabWorld.Name": "Gripe Verden",
|
||||
"Locomotion.GrabWorld.Description": "Oppretter et verdensanker med referanse og beveger brukeren i forhold til den.",
|
||||
"Locomotion.Slide.Name": "gli",
|
||||
"Locomotion.Slide.Description": "Enkel skyvebevegelse som smekker til overflaten hvis den er tilstede, fly ellers.",
|
||||
|
||||
"Interaction.Destroy": "Ødelegge",
|
||||
"Interaction.Duplicate": "Duplisere",
|
||||
|
||||
"Interaction.Undo": "Angre",
|
||||
"Interaction.Redo": "Gjøre om",
|
||||
"Interaction.EquipTool": "Equip",
|
||||
"Interaction.DequipTool": "Dequip",
|
||||
"Interaction.ScalingEnabled": "Skalering aktivert",
|
||||
"Interaction.ScalingDisabled": "Skalering deaktivert",
|
||||
"Interaction.ResetScale": "Tilbakestill skala",
|
||||
"Interaction.LaserEnabled": "Laser aktivert",
|
||||
"Interaction.LaserDisabled": "Laser deaktivert",
|
||||
|
||||
"Interaction.Locomotion": "Bevegelse",
|
||||
"Interaction.Locomotion.None": "Ingenting",
|
||||
|
||||
"Dash.Screens.Home": "Hjem",
|
||||
"Dash.Screens.Worlds": "Verdener",
|
||||
"Dash.Screens.Contacts": "Kontakter",
|
||||
"Dash.Screens.Inventory": "Inventar",
|
||||
|
||||
"Dash.Screens.Session": "Økten",
|
||||
"Dash.Screens.FileBrowser": "<nobr>Fil utforsker",
|
||||
"Dash.Screens.Settings": "Innstillinger",
|
||||
"Dash.Screens.Exit": "Avslutt",
|
||||
|
||||
"Dash.Actions.PasteFromClipboard": "Lim inn innhold fra utklippstavlen",
|
||||
|
||||
"Dash.Actions.CloudHome": "Min Sky Hjem",
|
||||
|
||||
"Dash.Exit.Header": "Avslutt {appName}",
|
||||
"Dash.Exit.ExitAndSave": "Avslutt og lagre Hjem",
|
||||
"Dash.Exit.ExitAndDiscard": "Avslutt & Forkast Hjem",
|
||||
"Dash.Exit.ThankYou": "Takk for at du bruker {appName}!",
|
||||
"Dash.Exit.SubmittedBy": "Innsendt av: {name}",
|
||||
|
||||
"World.Waiting": "Venter...",
|
||||
"World.HostIsStarting": "verten begynner økten",
|
||||
"World.Loading": "Laster inn...",
|
||||
"World.LoadingFailed": "Mislyktes",
|
||||
"World.LoadedAssets": "Lastet {assets} av {total_assets}",
|
||||
"World.Downloading": "Laster ned {bytes} av {total_bytes}",
|
||||
|
||||
"World.Connection.EstablishingConnection": "Oppretter forbindelse",
|
||||
"World.Connection.RequestingJoin": "Ber om å bli med",
|
||||
"World.Connection.Authenticating": "autentisering",
|
||||
"World.Connection.Connected": "Tilkoblet",
|
||||
"World.Connection.SyncingInitialState": "synkroniserer den opprinnelige verdensstaten",
|
||||
|
||||
"World.Error.AccessDenied": "Tilgang nektet",
|
||||
"World.Error.SecurityViolation": "Sikkerhetsbrudd",
|
||||
"World.Error.OnlyRegisteredUsers": "Kun registrerte brukere får lov til å bli med",
|
||||
"World.Error.OnlyContacts": "Bare kontakter av verten har lov til å bli med",
|
||||
|
||||
"World.Error.Private": "Denne økten er privat",
|
||||
"World.Error.SessionEnded": "Økten er avsluttet",
|
||||
"World.Error.UserLimitReached": "Økten har nådd brukergrensen",
|
||||
"World.Error.FailedAuthentication": "mislyktes autentisering",
|
||||
"World.Error.FailedUserID": "Kunne ikke godkjenne bruker-ID",
|
||||
"World.Error.FailedFetchingAuthentication": "Kunne ikke hente autentiseringsinformasjon",
|
||||
"World.Error.JoinAlreadyRequested": "Det er allerede bedt om å Delta",
|
||||
"World.Error.FailedConnectToRelay": "Kunne ikke koble til relé",
|
||||
|
||||
"World.Error.NoPort": "Ingen port spesifisert",
|
||||
"World.Error.IncompatibleVersion": "Inkompatibel {appName}-versjon",
|
||||
|
||||
"World.Error.Unknown": "Ukjent feil",
|
||||
|
||||
"World.Config.Name": "Verdensnavn:",
|
||||
"World.Config.Description": "Beskrivelse:",
|
||||
"World.Config.MaxUsers": "Maksimum brukere:",
|
||||
"World.Config.MobileFriendly": "Mobilvennlig",
|
||||
"World.Config.SaveOptionsHeader": "Verdens lagringsalternativer:",
|
||||
"World.Config.EditMode": "Redigeringsmodus:",
|
||||
"World.Config.AccessLevelHeader": "Hvem kan bli med i denne verden?",
|
||||
"World.Config.AutoKickAFK": "Autospark AFK-brukere:",
|
||||
"World.Config.AutoKickAFKMinutes": "Maks AFK-minutter:",
|
||||
"World.Config.HideFromListing": "Ikke vises i Øktlister",
|
||||
"World.Config.Autosave": "Lagre automatisk (overskriver siste lagring):",
|
||||
"World.Config.AutosaveInterval": "Lagre automatisk etter minutter:",
|
||||
"World.Config.CleanupAssets": "Opprydding ubrukte eiendeler:",
|
||||
"World.Config.CleanupInterval": "Oppryddingsintervall (sekunder):",
|
||||
|
||||
"World.Actions.StartSession": "Start økt",
|
||||
"World.Actions.Join": "Bli med",
|
||||
"World.Actions.Focus": "Fokus",
|
||||
"World.Actions.Close": "Lukk verden",
|
||||
"World.Actions.Leave": "Forlat verden",
|
||||
"World.Actions.Save": "Lagre endringer",
|
||||
"World.Actions.SaveAs": "Lagre som...",
|
||||
"World.Actions.SaveCopy": "Save Copy...",
|
||||
"World.Actions.SaveHere": "Lagre kopi",
|
||||
"World.Actions.SaveToInventory": "Lagre til inventar",
|
||||
"World.Actions.Saving": "Lagrer...",
|
||||
"World.Actions.Discard": "Forkaste endringer",
|
||||
"World.Actions.Clone": "kopiere Verden",
|
||||
"World.Actions.Delete": "Slett verden",
|
||||
"World.Actions.ConfirmDelete": "Bekreft Slett",
|
||||
"World.Actions.ReallyConfirmDelete": "SLETT PERMANENT",
|
||||
"World.Actions.Overwrite": "Overskriv med {name}",
|
||||
"World.Actions.ConfirmOverwrite": "bekreft overskriving",
|
||||
"World.Actions.Overwriting": "Overskriver ...",
|
||||
|
||||
"World.Actions.ClosePrompt": "Lukk verden?",
|
||||
"World.Actions.LeavePrompt": "Forlate verden?",
|
||||
"World.Actions.CloseConfirm": "Lukk",
|
||||
"World.Actions.LeaveConfirm": "Forlate",
|
||||
"World.Actions.CannotClose": "(kan ikke lukke denne verdenen)",
|
||||
"World.Actions.GuestWarning": "",
|
||||
"World.Actions.HostingWarning": "Du er verten for denne verden. Alle brukere blir koblet fra.",
|
||||
|
||||
"World.Actions.GetWorldOrb": "Få verden kule",
|
||||
"World.Actions.CopyWorldURL": "Kopier verden URL",
|
||||
"World.Actions.CopyRecordURL": "Kopier Record URL",
|
||||
"World.Actions.StartCustomSession": "Start tilpasset økt",
|
||||
"World.Actions.ModifyMetadata": "Rediger metadata",
|
||||
"World.Actions.GetSessionOrb": "Få økt sfære",
|
||||
"World.Actions.CopySessionURL": "Kopier økt URL",
|
||||
|
||||
"World.Indicator.NoData": "Ingen data",
|
||||
"World.Indicator.LocalWorld": "Lokal maskin",
|
||||
"World.Indicator.Author": "Av: {name}",
|
||||
"World.Indicator.Host": "Host: {name}",
|
||||
"World.Indicator.Hosting": "Hoster",
|
||||
"World.Indicator.Sessions": "{n,plural, one {# session} other {# sessions}}",
|
||||
"World.Indicator.Users": "Brukere",
|
||||
"World.Indicator.Users.None": "(ingen aktive økter funnet)",
|
||||
"World.Indicator.Description": "Beskrivelse",
|
||||
"World.Indicator.Description.None": "(ingen beskrivelse gitt)",
|
||||
|
||||
"World.Detail.ActiveSessions": "Aktive økter:",
|
||||
"World.Detail.ActiveUsers": "Aktive brukere:",
|
||||
"World.Detail.NewSession": "<ny økt>",
|
||||
"World.Detail.DescriptionHeader": "Beskrivelse: ",
|
||||
"World.Detail.SessionInformationHeader": "Økt Informasjon",
|
||||
"World.Detail.Uptime": "Oppetid",
|
||||
"World.Detail.AccessLevel": "Synlighet",
|
||||
"World.Detail.Users": "Brukere",
|
||||
"World.Detail.Users.Count": "{active}{borte, velge, 0 {} annen { (+{away} away)}} ut av {max}",
|
||||
|
||||
"World.Detail.WorldInformationHeader": "Verdensinformasjon",
|
||||
"World.Detail.PublishDate": "Publisert",
|
||||
"World.Detail.ModifyDate": "Sist oppdatert",
|
||||
"World.Detail.Visits": "Besøk",
|
||||
|
||||
"World.Detail.Tags": "Merker",
|
||||
"World.Detail.ActionsHeader": "Handlinger:",
|
||||
|
||||
"World.Category.Everything": "Alt",
|
||||
"World.Category.Featured": "Utvalgt",
|
||||
"World.Category.PublishedWorlds": "Publiserte verdener",
|
||||
"World.Category.ActiveSessions": "aktive økt",
|
||||
|
||||
"World.Category.HeadlessSessions": "Hodeløse økter",
|
||||
"World.Category.Social": "Sosial",
|
||||
"World.Category.Games": "Spill",
|
||||
"World.Category.Art": "Kunst",
|
||||
"World.Category.Tutorials": "Opplæringsprogrammer",
|
||||
"World.Category.Educational": "Pedagogisk",
|
||||
|
||||
"World.Category.MyWorlds": "Mine verdener",
|
||||
"World.Category.Custom": "Tilpasset",
|
||||
|
||||
"World.AccessLevel.Anyone": "Alle",
|
||||
"World.AccessLevel.RegisteredUsers": "registrerte brukere",
|
||||
|
||||
"World.AccessLevel.LAN": "LAN",
|
||||
"World.AccessLevel.Private": "Privat (kun invitasjon)",
|
||||
|
||||
"World.SortParameter.SearchScore": "Søkeresultat",
|
||||
"World.SortParameter.Name": "Navn",
|
||||
"World.SortParameter.OpenedWorldCount": "Åpnede verdener",
|
||||
"World.SortParameter.TotalSessionCount": "Totalt antall økter",
|
||||
"World.SortParameter.TotalUserCount": "Totalt antall brukere",
|
||||
"World.SortParameter.CreationDate": "Opprettelsesdato",
|
||||
"World.SortParameter.LastUpdateDate": "Endringsdato",
|
||||
"World.SortParameter.FirstPublishTime": "Publiseringsdato",
|
||||
"World.SortParameter.TotalVisits": "Totalt antall besøk",
|
||||
|
||||
"World.Filter.DataSources": "Datakilder:",
|
||||
"World.Filter.OpenedWorlds": "Åpnede verdener",
|
||||
"World.Filter.ActiveSessions": "aktiv økt",
|
||||
"World.Filter.PublishedWorlds": "Publiserte verdener",
|
||||
"World.Filter.LocalWorlds": "Lokale verdener",
|
||||
"World.Filter.BaseSearch": "Basesøk:",
|
||||
"World.Filter.ByOwner": "Av eier:",
|
||||
"World.Filter.UserOwner": "Eier er bruker",
|
||||
"World.Filter.GroupOwner": "Eier er gruppe",
|
||||
"World.Filter.SubmittedToGroup": "Sendt til gruppen:",
|
||||
"World.Filter.Featured": "Bare utvalgt",
|
||||
"World.Filter.MyWorlds": "Mine verdener",
|
||||
"World.Filter.SessionFiltering": "Sessionsfiltrering:",
|
||||
"World.Filter.MinimumUsers": "Minimum brukere: <b>{n}</b>",
|
||||
|
||||
"World.Filter.OnlyHeadless": "Bare hodeløse verter",
|
||||
"World.Filter.MaxAccessLevel": "Maksimum tilgangsnivå",
|
||||
"World.Filter.MinimumUptime": "Minimum oppetid:",
|
||||
"World.Filter.Sorting": "Sortering:",
|
||||
|
||||
"Tools.AvatarCreator": "Avatar Creator",
|
||||
"Tools.FullBodyCalibrator": "Full Body Kalibrator",
|
||||
"Tools.CameraStreaming": "Kamera / Streaming",
|
||||
"Tools.CreateNewWorld": "Skap ny verden",
|
||||
"Tools.Debug": "Debug",
|
||||
|
||||
"Options.FreeformDash.On": "Freeform Dash: På",
|
||||
"Options.FreeformDash.Off": "Freeform Dash: Av",
|
||||
"Options.SeatedMode.On": "Sittende modus: På",
|
||||
"Options.SeatedMode.Off": "Sittende modus: Av",
|
||||
|
||||
"Indicator.OnlineUsers": "Online brukere: ~{num_total} ({num_registered})",
|
||||
"Indicator.ServerStatus": "<color=#fff>Serverstatus:</color> {status, select, Good {Good} Slow {Slow} Down {Down} NoInternet {No Internet}} ({response_ms} ms)",
|
||||
|
||||
"Indicator.Sync.AllSynced": "Allet synkronisert",
|
||||
"Indicator.Sync.SyncingItems": "Synkronisering {item_count,plural, one {# item} other {# items}} <nobr>({item_percent} %)",
|
||||
"Indicator.Sync.UploadingVariants": "Laster opp {variant_count,plural, one {# asset variant} other {# asset variants}}",
|
||||
"Indicator.Sync.SyncError": "Synkroniseringsfeil! <size=50%>Sjekk loggen for detaljer</size>",
|
||||
"Indicator.Sync.OutOfSpace": "Tom for rom! <size=50%>Kan ikke synkronisere</size>",
|
||||
|
||||
"Indicator.LiveHiddenMessage": "(informasjon skjult mens du er live)",
|
||||
|
||||
"Account.Login": "Logg Inn",
|
||||
"Account.Logout": "Logg ut",
|
||||
"Account.Register": "Registrere",
|
||||
|
||||
"Account.LoginOrRegister": "Logg Inn / Registrere",
|
||||
"Account.LogoutConfirm": "Er du sikker?",
|
||||
"Account.LoggingIn": "Logger inn...",
|
||||
"Account.LoggingOut": "Logger ut...",
|
||||
"Account.Registering": "Registrering...",
|
||||
"Account.Anonymous": "Anonym",
|
||||
"Account.Username": "Brukernavn:",
|
||||
"Account.Email": "E-post:",
|
||||
"Account.RememberMe": "Husk meg:",
|
||||
"Account.RepeatEmail": "Gjenta e-post:",
|
||||
"Account.UsernameOrEmail": "Brukernavn eller e-post:",
|
||||
"Account.Password": "Passord:",
|
||||
"Account.RepeatPassword": "Gjenta passord:",
|
||||
"Account.RecoverPassword": "Mistet Passord?",
|
||||
"Account.LiveEmailWarning": "<color=#f00>WARNING:</color> live.com, hotmail.com, outlook.com og andre Microsoft-eide tjenester kan ta opptil 1-2 dager å godta e-posten.",
|
||||
"Account.PasswordRules": "(minst 8 tegn, 1 siffer, 1 liten bokstav, 1 stor bokstav)",
|
||||
"Account.AgeConfirm": "Jeg er 13 år eller eldre",
|
||||
"Account.LostPassword": "Mistet Passord",
|
||||
"Account.SendRecoveryCode": "Send gjenopprettingskode",
|
||||
"Account.ResetPasswordHeader": "Tilbakestill passordet ditt",
|
||||
"Account.ResetPasswordInstructions": "En gjenopprettingskode er sendt til e-posten din. Kopier den til feltet under:",
|
||||
"Account.RecoveryCode": "Gjenopprettingskode:",
|
||||
"Account.NewPassword": "Nytt passord:",
|
||||
"Account.ResetPassword": "Angi nytt passord",
|
||||
"Account.Requesting": "Ber om...",
|
||||
"Account.ErrorPasswordMismatch": "Passordene er ikke like!",
|
||||
"Account.ErrorEmailMismatch": "E-post er ikke like!",
|
||||
"Account.ErrorLoginError": "Loggfeil:",
|
||||
"Account.RegistrationSuccess": "Suksess! Det er sendt en e-post med bekreftelseskobling. Når du har åpnet denne lenken, kan du logge på.",
|
||||
|
||||
"Profile.Status.Online": "Online",
|
||||
"Profile.Status.Away": "Borte",
|
||||
"Profile.Status.Busy": "Opptatt",
|
||||
"Profile.Status.Invisible": "Usynlig",
|
||||
"Profile.Status.Offline": "Frakoblet",
|
||||
|
||||
"Session.Tab.Settings": "Innstillinger",
|
||||
"Session.Tab.Users": "Brukere",
|
||||
"Session.Tab.Permissions": "Tillatelser",
|
||||
|
||||
"Session.Permission.Anonymous": "Standard anonym:",
|
||||
"Session.Permission.Vistor": "Standard besøkende:",
|
||||
"Session.Permission.Contact": "Standard Kontakt:",
|
||||
"Session.Permission.Host": "Standard vert:",
|
||||
"Session.Permission.PermissionOverrideCount": "brukeroverstyringer: {n,velge, -1 {---} annet {{n}}}",
|
||||
"Session.Permission.ClearOverrides": "Fjern brukeroverstyringer",
|
||||
|
||||
"User.Actions.Mute": "Demp",
|
||||
"User.Actions.Jump": "Hopp",
|
||||
"User.Actions.Respawn": "Respawn",
|
||||
"User.Actions.Kick": "kick",
|
||||
"User.Actions.Ban": "Ban",
|
||||
|
||||
"Contacts.Add": "Legg til kontakt",
|
||||
"Contacts.Remove": "Fjern Kontakt",
|
||||
"Contacts.ConfirmRemove": "Virkelig fjerne?",
|
||||
"Contacts.AcceptRequest": "Aksepter forespørsel",
|
||||
"Contacts.IgnoreRequest": "Ignorer forespørsel",
|
||||
"Contacts.Invite": "Inviter hit",
|
||||
"Contacts.BanFromAllSessions": "Ban fra ALLE mine økter",
|
||||
"Contacts.UnbanFromAllSessions": "Unban fra ALLE mine økter",
|
||||
"Contacts.BanFromCurrentWorld": "Ban fra denne verden",
|
||||
"Contacts.UnbanFromCurrentWorld": "Unban fra denne verden",
|
||||
|
||||
"Contacts.InSession": "I {name}",
|
||||
"Contacts.InPrivate": "I privat verden",
|
||||
|
||||
"Contacts.UsingDifferentVersion": "Bruker versjon {version}",
|
||||
"Contacts.RequestSent": "Forespørsel sendt",
|
||||
"Contacts.RequestReceived": "Kontakt forespørsel",
|
||||
"Contacts.RequestIgnored": "Ignorert",
|
||||
"Contacts.Blocked": "Blokkert",
|
||||
"Contacts.SearchResult": "Søkeresultat",
|
||||
|
||||
"Notifications.IsOnline": "Er nå online",
|
||||
"Notifications.IsOnlineOnDifferentVersion": "Er nå online <size=75%>(bruker versjon: {version})</size>",
|
||||
"Notifications.ReceivedContactRequest": "Sendte en kontaktforespørsel",
|
||||
"Notifications.ReceivedInvite": "Inviterer deg til:",
|
||||
"Notifications.ReceivedItem": "Sendte deg et element:",
|
||||
"Notifications.ReceivedTip": "Mottatt tipp {amount} {token}",
|
||||
"Notifications.SentTip": "Sendt tipp {amount} {token}",
|
||||
|
||||
"Undo.SetField": "Sett felt {field_name} til {value}",
|
||||
"Undo.SetReference": "Angi referanse {ref_name} til {ref_target}",
|
||||
"Undo.Spawn": "Spawn {name}",
|
||||
"Undo.Destroy": "Ødelegge {name}",
|
||||
"Undo.SpawnComponent": "Feste {component_type} på {slot_name}",
|
||||
"Undo.DuplicateComponent": "Dupliser Komponent",
|
||||
"Undo.DestroyComponent": "Ødelegge {component_type} på {slot_name}",
|
||||
"Undo.Transform": "Flyttet {name}",
|
||||
"Undo.Translate": "Oversett",
|
||||
"Undo.TranslateAlongAxis": "Oversett langs aksen",
|
||||
"Undo.RotateAroundAxis": "Roter rundt aksen",
|
||||
"Undo.ResetPosition": "Tilbakestill posisjon",
|
||||
"Undo.ResetRotation": "Tilbakestill Rotasjon",
|
||||
"Undo.ResetScale": "Tilbakestill Skala",
|
||||
|
||||
"Undo.GrabObjects": "Grip objekter",
|
||||
"Undo.DestroyGrabbed": "Ødeleggede gjenstander",
|
||||
"Undo.DuplicateGrabbed": "Dupliserte grepede objekter",
|
||||
|
||||
"Undo.ChangeBoxSize": "Endre størrelsen på boksen",
|
||||
"Undo.BrushStroke": "Penselslag",
|
||||
"Undo.ChangeColor": "Bytt farge",
|
||||
"Undo.CloneComponent": "Dupliser Komponent",
|
||||
"Undo.MoveIKBone": "Bevege IK Bein",
|
||||
"Undo.MoveSun": "Beveg Sola",
|
||||
"Undo.ApplyMaterial": "Påfør materiale",
|
||||
"Undo.BakeMeshes": "Bake {name}",
|
||||
"Undo.ChangeMesh": "Endre mesh",
|
||||
"Undo.InsertParent": "Sett Parent for {name}",
|
||||
"Undo.Wiggler": "Evil Stuff",
|
||||
|
||||
"Tooltips.Dev.CreateNew": "Lag ny...",
|
||||
"Tooltips.Dev.Selection": "Utvalg: {mode}",
|
||||
"Tooltips.Dev.DevMode.Off": "Utviklermodus: Av",
|
||||
"Tooltips.Dev.DevMode.On": "Utviklermodus: på",
|
||||
"Tooltips.Dev.OpenInspector": "Åpne inspektøren",
|
||||
"Tooltips.Dev.DeselectAll": "Opphev alle",
|
||||
"Tooltips.Dev.DestroySelected": "Ødelegg valgt",
|
||||
|
||||
"Tooltip.Color.Picker": "Fargevelger",
|
||||
|
||||
"Tooltip.GrabbableSetter.Scalable": "Sett skalerbar",
|
||||
"Tooltip.GrabbableSetter.NonScalable": "Angi ikke-skalerbar",
|
||||
|
||||
"Tooltip.CharacterCollider.MarkGrippable": "Marker Grippable",
|
||||
"Tooltip.CharacterCollider.DontMarkGrippable": "ikke Marker Grippable",
|
||||
"Tooltip.CharacterCollider.EnsureWalkRun": "Sørg for å gå / løpe bevegelse",
|
||||
"Tooltip.CharacterCollider.EnsureZeroG": "Sørg for Zero-G-bevegelse",
|
||||
"Tooltip.CharacterCollider.EnsurePhysicalFly": "Sørg for fysisk flytning",
|
||||
|
||||
"Tooltip.Light.Point": "Punkt",
|
||||
"Tooltip.Light.Spot": "Spot",
|
||||
"Tooltip.Light.Sun": "Sol",
|
||||
|
||||
"Tooltip.MeshVisibility.KeepShadow": "behold skygge",
|
||||
"Tooltip.MeshVisibility.ShadowOff": "Deaktiver skygge",
|
||||
"Tooltip.MeshVisibility.ShadowOn": "Aktiver skygge",
|
||||
"Tooltip.MeshVisibility.OnlyShadow": "Sett til kun skygge",
|
||||
"Tooltip.MeshVisibility.DoubleSidedShadow": "Sett til dobbeltsidig skygge",
|
||||
|
||||
"Tooltip.Slicer.Add": "Legg til Slicer",
|
||||
"Tooltip.Slicer.Clear": "Clear Setup",
|
||||
|
||||
"Tooltip.Material.RayMode": "Ray-modus",
|
||||
"Tooltip.Material.AreaMode": "Area-modus",
|
||||
"Tooltip.Material.ObjectMode": "Objekt global modus",
|
||||
"Tooltip.Material.SceneMode": "Scene Global modus",
|
||||
"Tooltip.Material.CreateCopy": "Skape kopi",
|
||||
"Tooltip.Material.Edit": "Rediger materiale",
|
||||
"Tooltip.Material.Convert": "Konvertere til...",
|
||||
|
||||
"Tooltip.Material.CreateNew": "Skape ny",
|
||||
|
||||
"Tooltip.Mesh.Edit": "Rediger nett",
|
||||
|
||||
"CreateNew.Back": "<<< <i>Tilbake</i>",
|
||||
"CreateNew.EmptyObject": "Tom gjenstand",
|
||||
"CreateNew.ParticleSystem": "Partikkelsystem",
|
||||
|
||||
"CreateNew.Object": "Gjenstandt",
|
||||
"CreateNew.Object.AvatarCreator": "Avatar Creator",
|
||||
"CreateNew.Object.Camera": "Kamera",
|
||||
|
||||
"CreateNew.Object.Mirror": "Speil",
|
||||
"CreateNew.Object.Portal": "Portal",
|
||||
"CreateNew.Object.VideoPlayer": "Videospiller",
|
||||
"CreateNew.Object.SpawnArea": "Spawn Area",
|
||||
"CreateNew.Object.SpawnPoint": "Spawn punkt",
|
||||
"CreateNew.Object.UIXCanvas": "UIX Lerret",
|
||||
"CreateNew.Object.Facet": "Facet",
|
||||
|
||||
"CreateNew.Object.FogVolume": "Tåkevolume",
|
||||
"CreateNew.Object.FogVolume.Additive": "additiv",
|
||||
"CreateNew.Object.FogVolume.Alpha": "Alpha",
|
||||
"CreateNew.Object.FogVolume.Multiplicative": "Multiplikativ",
|
||||
"CreateNew.Object.FogVolume.Gradient": "Gradient",
|
||||
|
||||
"CreateNew.Text": "Tekst",
|
||||
"CreateNew.Text.Basic": "Basic",
|
||||
"CreateNew.Text.Outline": "Outline",
|
||||
|
||||
"CreateNew.Editor": "Edditor",
|
||||
"CreateNew.Editor.UserInspector": "Brukerinspektør",
|
||||
"CreateNew.Editor.LightSourcesWizard": "World Light Sources Wizard",
|
||||
|
||||
"CreateNew.Editor.AssetOptimizationWizard": "Asset Optimization Wizard",
|
||||
|
||||
"CreateNew.3DModel": "3D-modell",
|
||||
|
||||
"CreateNew.3DModel.Box": "Boks",
|
||||
"CreateNew.3DModel.Sphere": "Kule",
|
||||
"CreateNew.3DModel.Capsule": "Kapsel",
|
||||
"CreateNew.3DModel.Cone": "Kjegle",
|
||||
"CreateNew.3DModel.Cylinder": "Sylinder",
|
||||
"CreateNew.3DModel.Quad": "Quad",
|
||||
"CreateNew.3DModel.Grid": "Grid",
|
||||
"CreateNew.3DModel.Torus": "Torus",
|
||||
|
||||
"CreateNew.Collider": "Collider",
|
||||
"CreateNew.Collider.Box": "Boks",
|
||||
"CreateNew.Collider.Sphere": "Kule",
|
||||
"CreateNew.Collider.Capsule": "Kapsel",
|
||||
"CreateNew.Collider.Cylinder": "Cylinder",
|
||||
"CreateNew.Collider.Cone": "Kjegle",
|
||||
"CreateNew.Collider.Mesh": "Mesh",
|
||||
|
||||
"CreateNew.Light": "Lys",
|
||||
"CreateNew.Light.Point": "Punkt",
|
||||
"CreateNew.Light.Spot": "Spot",
|
||||
"CreateNew.Light.Directional": "Directional",
|
||||
|
||||
"CreateNew.Materials": "Materialer",
|
||||
|
||||
"AvatarCreator.Title": "Avatar Skaper",
|
||||
"AvatarCreator.Instructions": "Juster avatarobjekter med hodesett- og kontrollerhenvisninger (valgfritt) og trykk på Create for å konvertere dem til en avatar",
|
||||
"AvatarCreator.UseSymmetry": "Bruk Symmetri",
|
||||
"AvatarCreator.ShowToolAnchors": "Vis verktøyankre",
|
||||
"AvatarCreator.SetupVolumeMeter": "Oppsett volummåler",
|
||||
"AvatarCreator.SetupEyes": "Oppsettøyer",
|
||||
|
||||
"AvatarCreator.ProtectAvatar": "Beskytt avatar",
|
||||
"AvatarCreator.CalibrateFeet": "Kalibrer føttene",
|
||||
"AvatarCreator.CalibrateHips": "Kalibrer bekken / hofter",
|
||||
"AvatarCreator.AlignHeadForward": "Juster hodet fremover",
|
||||
"AvatarCreator.AlignHeadUp": "Juster hodet opp",
|
||||
"AvatarCreator.AlignHeadRight": "Juster hodet til høyre",
|
||||
"AvatarCreator.CenterHead": "Senterhodeposisjon",
|
||||
"AvatarCreator.TryAlignHands": "Prøve auto-Tilpasse Hender",
|
||||
"AvatarCreator.AlignToolAnchors": "Juster verktøyankre",
|
||||
"AvatarCreator.Create": "Skape",
|
||||
|
||||
"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": "Hva vil du importere?",
|
||||
"Importer.Image.Regular": "Bilde / Textur",
|
||||
|
||||
"Importer.Image.360": "360 foto / skybox",
|
||||
"Importer.Image.StereoPhoto": "Stereo foto",
|
||||
"Importer.Image.Stereo360": "Stereo 360 foto",
|
||||
"Importer.Image.180": "180 foto",
|
||||
"Importer.Image.Stereo180": "Stereo 180 foto",
|
||||
"Importer.Image.LUT": "LUT",
|
||||
|
||||
"Importer.ImageVideo.LayoutPrompt": "Hvilken layout bruker det?",
|
||||
"Importer.ImageVideo.LayoutHorizontalLR": "Side om Side LR",
|
||||
"Importer.ImageVideo.LayoutHorizontalRL": "Side om Side RL",
|
||||
"Importer.ImageVideo.LayoutVerticalLR": "Top Bunn LR",
|
||||
"Importer.ImageVideo.LayoutVerticalRL": "Top Bunn RL",
|
||||
|
||||
"Importer.Model.Title": "Modell Importer",
|
||||
"Importer.Model.Prompt": "Hva importerer du?",
|
||||
"Importer.Model.Regular": "3D Modell",
|
||||
"Importer.Model.3DScan": "3D Scan",
|
||||
"Importer.Model.CAD": "CAD Modell",
|
||||
"Importer.Model.PointCloud": "Point Cloud",
|
||||
"Importer.Model.VertexColorModel": "Vertex Farget Modell",
|
||||
"Importer.Model.AdvancedSettings": "Avansert Instillinger",
|
||||
"Importer.Model.ModelKindPrompt": "Hva slags 3D modell?",
|
||||
"Importer.Model.RegularKind": "Regulær / Avatar",
|
||||
"Importer.Model.SeparableKind": "Separable with snappable pieces",
|
||||
"Importer.Model.UnitsPrompt": "What units is it in?",
|
||||
"Importer.Model.AutoScale": "Auto Skala (ukjent skala)",
|
||||
"Importer.Model.AutoHumanoid": "Auto Humanoid høyde",
|
||||
"Importer.Model.Meters": "Meter (m)",
|
||||
"Importer.Model.Millimeters": "Millimeter (mm)",
|
||||
"Importer.Model.Centimeters": "Centimeter (cm)",
|
||||
"Importer.Model.Inches": "Tommer",
|
||||
"Importer.Model.FinalizePrompt": "Alt klart?",
|
||||
"Importer.Model.RunImport": "Kjør Import!",
|
||||
|
||||
"Importer.Model.Advanced.Scale": "Skala: ",
|
||||
"Importer.Model.Advanced.AutoScale": "Auto Skala",
|
||||
"Importer.Model.Advanced.MaxTexSize": "Max Textur Størrelse",
|
||||
"Importer.Model.Advanced.ImageFormat": "Bilde Format: ",
|
||||
"Importer.Model.Advanced.Material": "Material: ",
|
||||
|
||||
"Importer.Model.Advanced.AlignAxis": "Rette Akser: ",
|
||||
|
||||
"Importer.Model.Advanced.Normals": "Kalkuler Normaler",
|
||||
"Importer.Model.Advanced.Tangents": "Kalkuler Tangenter",
|
||||
"Importer.Model.Advanced.VertexColors": "Importer Vertex Farge",
|
||||
"Importer.Model.Advanced.Bones": "Importer Bein",
|
||||
|
||||
"Importer.Model.Advanced.TextureAlpha": "Kalkuler Textur Alfa",
|
||||
"Importer.Model.Advanced.AlbedoColor": "Importer Albedo Farge",
|
||||
"Importer.Model.Advanced.ImportEmissive": "Importer Emisjon",
|
||||
|
||||
"Importer.Model.Advanced.Colliders": "Generer Colliders",
|
||||
"Importer.Model.Advanced.Animations": "Importer Animasjoner",
|
||||
"Importer.Model.Advanced.SetupSnappable": "Sett opp som snappable",
|
||||
"Importer.Model.Advanced.SetupTimelapse": "Sett opp som timelapse",
|
||||
"Importer.Model.Advanced.ImportExternalTextures": "Importer eksterne texturer",
|
||||
"Importer.Model.Advanced.SkinnedMeshes": "Importer skinned meshes",
|
||||
"Importer.Model.Advanced.SetupIK": "Sett opp IK",
|
||||
"Importer.Model.Advanced.VisualizeRig": "Visualiser Rigg",
|
||||
"Importer.Model.Advanced.ForceTpose": "Tvinge T-Pose",
|
||||
"Importer.Model.Advanced.ForcePointCloud": "As Point Cloud",
|
||||
|
||||
"Importer.Model.Advanced.DualSided": "Gjør Dobbelt Sidet",
|
||||
"Importer.Model.Advanced.FlatShaded": "Gjør Flat Skygget",
|
||||
"Importer.Model.Advanced.DeduplicateInstances": "Deduplicate Instances (slow)",
|
||||
"Importer.Model.Advanced.Optimize": "Optimiser Modell/Scene",
|
||||
|
||||
"Importer.Model.Advanced.RandomColors": "Generer Tilfeldige Farge",
|
||||
"Importer.Model.Advanced.SpawnMaterialOrbs": "Lag Material Kule",
|
||||
"Importer.Model.Advanced.ImagesByName": "Importer Bilder etter Navn",
|
||||
|
||||
"Importer.Model.Advanced.Grabbable": "Gjør Gripelig",
|
||||
"Importer.Model.Advanced.Scalable": "Gjør Skalerbar",
|
||||
"Importer.Model.Advanced.PositionAtOrigin": "posisjonere På Oprinnelse",
|
||||
"Importer.Model.Advanced.AssetsOnObject": "Plaser Ressurs På Objekt",
|
||||
|
||||
"Importer.Video.Title": "Video Importerer",
|
||||
"Importer.Video.Prompt": "Hva importerer du?",
|
||||
"Importer.Video.Regular": "Video",
|
||||
"Importer.Video.360": "360 Video",
|
||||
"Importer.Video.Stereo": "Stereo Video",
|
||||
"Importer.Video.Stereo360": "Stereo 360 Video",
|
||||
"Importer.Video.Depth": "Dypbde Video",
|
||||
"Importer.Video.180": "180 Video",
|
||||
"Importer.Video.Stereo180": "Stereo 180 Video",
|
||||
"Importer.Video.Depth.Prompt": "Dybde forhåndsinnstilling",
|
||||
"Importer.Video.Depth.Default": "Standard",
|
||||
|
||||
"NewWorld.Title": "Ny Verden",
|
||||
|
||||
"NewWorld.Template": "Verden Mal:",
|
||||
"NewWorld.CustomPreset": "Tilpasset forhåndsinnstilling:",
|
||||
"NewWorld.SessionSettings": "Sesjon Instillinger:",
|
||||
"NewWorld.UnsafeMode": "Utrygt Modus:",
|
||||
"NewWorld.Port": "Port:",
|
||||
"NewWorld.AutoPort": "Auto:",
|
||||
"NewWorld.DefaultName": "{name} Verden",
|
||||
|
||||
"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 yor 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 adjusments.\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": "Kamera Kontrol",
|
||||
"CameraControl.MirroringOffWarning": "SPEILING AV",
|
||||
"CameraControl.MirrorToDisplay": "Speil til skjerm",
|
||||
"CameraControl.TakePhoto": "Foto",
|
||||
"CameraControl.Take360Photo": "360 Foto",
|
||||
|
||||
"CameraControl.Mode.SmoothPOV": "Smooth POV",
|
||||
"CameraControl.Mode.ThirdPerson": "Tredje Person",
|
||||
"CameraControl.Mode.Group": "Gruppe",
|
||||
"CameraControl.Mode.World": "Verden",
|
||||
"CameraControl.Mode.Manual": "Manual",
|
||||
|
||||
"CameraControl.Settings.AvoidOcclusion": "Avoid Occlusion",
|
||||
"CameraControl.Settings.KeepInWorldspace": "Keep In Worldspace",
|
||||
"CameraControl.Settings.MovementWobble": "Movement Wobbble",
|
||||
"CameraControl.Settings.AimInFrontOfHead": "Sikt framfør hode",
|
||||
"CameraControl.Settings.HideCamera": "Skjul Kamera",
|
||||
"CameraControl.Settings.ForceEyesOnCamera": "Force Eyes On Camera",
|
||||
"CameraControl.Settings.HideBadges": "Skjul Merker",
|
||||
"CameraControl.Settings.HideLasers": "Skjul Lasere",
|
||||
"CameraControl.Settings.ShowFrustum": "Vis Frustum",
|
||||
"CameraControl.Settings.PhotoTimer": "Foto Timer",
|
||||
"CameraControl.Settings.ShowLiveBadge": "Vis Live Merke",
|
||||
|
||||
"CameraControl.OpenCloseUsers": "Brukere",
|
||||
"CameraControl.CreateCameraAnchor": "Skape Kamera Anker",
|
||||
|
||||
"CameraControl.Anchors.Interpolate": "Interpolate between anchors",
|
||||
"CameraControl.Anchors.InterpolationSpeed": "Anchor Interpolation Speed:",
|
||||
|
||||
"CameraControl.Anchors.NoAnchors": "Ingen kamera ankere i denne verden",
|
||||
|
||||
"CameraControl.Positioning.FieldOfView": "Synsfelt",
|
||||
"CameraControl.Positioning.AngleOffset": "Vinkel Forskyvning",
|
||||
"CameraControl.Positioning.Distance": "Avstand",
|
||||
"CameraControl.Positioning.Height": "Høyde",
|
||||
"CameraControl.Positioning.FirstPersonPitch": "Første Person Helling ",
|
||||
"CameraControl.Positioning.FirstPersonRoll": "Første Person Rull",
|
||||
"CameraControl.Positioning.FirstPersonOffset": "Første Person Forskyvning",
|
||||
"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 errror:",
|
||||
"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>\nAllowing access can allow the third party to gather some personal information, like 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 UV's",
|
||||
|
||||
"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",
|
||||
|
||||
"Exiting.SavingItems": "Saving {n, plural, one {# item} other {# items}}...",
|
||||
"Exiting.SavingChanges": "Lagrer Endringer...",
|
||||
"Exiting.Exiting": "Exiting...",
|
||||
"Exiting.LoggingOut": "Logger ut...",
|
||||
|
||||
"Temporary.MMC.Voting UI": "MMC Voting UI",
|
||||
"Temporary.MMC.Vote": "Vote",
|
||||
|
||||
"Temporary.MMC.Categories.Name": "Categories",
|
||||
|
||||
"Temporary.MMC.Categories.Worlds": "Worlds",
|
||||
|
||||
"Temporary.MMC.Categories.Other": "Gadgets/Tools+",
|
||||
|
||||
"Temporary.MMC.Categories.Avatars": "Avatars",
|
||||
|
||||
"Temporary.MMC.VoteSuccess": "Vote cast in category {category} for {voteTarget}.",
|
||||
"Temporary.MMC.VoteFailure": "Vote failed, your vote has not been registered please try again.",
|
||||
"Temporary.MMC.VotedAlready": "You have already voted in {category}.",
|
||||
"Temporary.MMC.VoteInvalid": "Vote is invalid, please try again.",
|
||||
|
||||
"Dummy": "Dummy"
|
||||
}
|
||||
}
|
||||
296
sv.json
Normal file
296
sv.json
Normal file
|
|
@ -0,0 +1,296 @@
|
|||
{
|
||||
"localeCode": "sv",
|
||||
"authors": ["Coffee", "Swingly", "Rulle", "Tako", "Nestorboy"],
|
||||
"messages": {
|
||||
|
||||
"General.OK": "OK",
|
||||
|
||||
"General.Cancel": "Avbryt",
|
||||
"General.Continue": "Fortsätt",
|
||||
"General.Next": "Nästa",
|
||||
|
||||
"General.Back": "Tillbaka",
|
||||
"General.Confirm": "Säkert?",
|
||||
"General.Loading": "Läser in...",
|
||||
"General.Processing": "Bearbetar...",
|
||||
"General.FAILED": "Misslyckades",
|
||||
"General.Reset": "Återställ",
|
||||
"General.WorldOpenConfirm": "Öppna värld?",
|
||||
"General.Save": "Spara",
|
||||
"General.Saving": "Sparar...",
|
||||
"General.Saved": "Sparad!",
|
||||
"General.Done": "Klar!",
|
||||
|
||||
"General.CopiedToClipboard": "Kopierad!",
|
||||
"General.CopiedToClipboardLong": "Kopierad till urklipp!",
|
||||
|
||||
"General.UI.SearchPrompt": "Sök...",
|
||||
"General.UI.SearchPromptLong": "Skriv för att söka...",
|
||||
|
||||
"General.Sort.Ascending": "Stigande",
|
||||
"General.Sort.Descending": "Fallande",
|
||||
|
||||
"Locomotion.Noclip.Name": "Noclip",
|
||||
"Locomotion.Noclip.Description": "Simpelt no-clip flygläge, idealt för redigering.",
|
||||
"Locomotion.Teleport.Name": "Teleport",
|
||||
"Locomotion.Teleport.Description": "Teleportering efter båge, för bekväm rörelse.",
|
||||
"Locomotion.Fly.Name": "Flyg",
|
||||
"Locomotion.Fly.Description": "Fysiskt Flygläge",
|
||||
"Locomotion.WalkRun.Name": "Gå/Spring",
|
||||
"Locomotion.WalkRun.Description": "Fysiskt gående, springande och hoppande.",
|
||||
"Locomotion.WalkRunGripping.Name": "Gå/Spring (med klättring)",
|
||||
"Locomotion.WalkRunGripping.Description": "Fysiskt gående, springande, hoppande och klättring.",
|
||||
"Locomotion.ZeroG.Name": "Zero-G",
|
||||
"Locomotion.ZeroG.Description": "Viktlös fysisk förflyttning",
|
||||
"Locomotion.GrabWorld.Name": "Greppa Värld",
|
||||
"Locomotion.GrabWorld.Description": "Skapar ett världsankare med referensen och flyttar användaren relativt till det.",
|
||||
"Locomotion.Slide.Name": "Glid",
|
||||
"Locomotion.Slide.Description": "Simpelt glidförflyttningsläge som snäpper till yta om den finns, flyger annars.",
|
||||
|
||||
"Interaction.Destroy": "Förstör",
|
||||
"Interaction.Duplicate": "Duplicera",
|
||||
|
||||
"Interaction.Undo": "Ångra",
|
||||
"Interaction.Redo": "Gör Om",
|
||||
"Interaction.EquipTool": "Utrusta",
|
||||
"Interaction.DequipTool": "Lossa",
|
||||
"Interaction.ScalingEnabled": "Skalning På",
|
||||
"Interaction.ScalingDisabled": "Skalning Av",
|
||||
"Interaction.ResetScale": "Återställ Skala",
|
||||
"Interaction.LaserEnabled": "Laser På",
|
||||
"Interaction.LaserDisabled": "Laser Av",
|
||||
|
||||
"Interaction.Locomotion": "Förflyttning",
|
||||
"Interaction.Locomotion.None": "Ingen",
|
||||
|
||||
"Interaction.NamedEquipTool": "Utrusta {name}",
|
||||
"Interaction.NamedEquipTool.Default": "Verktyg",
|
||||
|
||||
"Interaction.EnterAnchor": "Gå in i Ankare",
|
||||
"Interaction.ExitAnchor": "Lämna Ankare",
|
||||
|
||||
"Interaction.EquipAvatar": "Använd Avatar",
|
||||
|
||||
"Interaction.SaveAsScreenshot": "Spara som skärmdump",
|
||||
|
||||
"Interaction.ImportFile": "Importera File",
|
||||
"Interaction.ExportFile": "Exportera File",
|
||||
|
||||
"Dash.Screens.Home": "Hem",
|
||||
"Dash.Screens.Worlds": "Världar",
|
||||
"Dash.Screens.Contacts": "Kontakter",
|
||||
"Dash.Screens.Inventory": "Förråd",
|
||||
|
||||
"Dash.Screens.Session": "Session",
|
||||
"Dash.Screens.FileBrowser": "<nobr>Filhanterare",
|
||||
"Dash.Screens.Settings": "Inställningar",
|
||||
"Dash.Screens.Exit": "Lämna",
|
||||
|
||||
"Dash.Actions.PasteFromClipboard": "Klistra in från urklipp",
|
||||
|
||||
"Dash.Actions.CloudHome": "Mitt Moln Hem",
|
||||
|
||||
"Dash.Exit.Header": "Lämna {appName}",
|
||||
"Dash.Exit.ExitAndSave": "Lämna & Spara Hem",
|
||||
"Dash.Exit.ExitAndDiscard": "Lämna & Avskeda Hem",
|
||||
"Dash.Exit.ThankYou": "Tack för att du använder {appName}!",
|
||||
"Dash.Exit.SubmittedBy": "Bidragits av: {name}",
|
||||
|
||||
"World.Waiting": "Väntar...",
|
||||
"World.HostIsStarting": "Värd startar session",
|
||||
"World.Loading": "Laddar...",
|
||||
"World.LoadingFailed": "Misslyckades",
|
||||
"World.LoadedAssets": "Laddade {assets} utav {total_assets}",
|
||||
"World.Downloading": "Laddar ner {bytes} utav {total_bytes}",
|
||||
|
||||
"World.Connection.EstablishingConnection": "Upprättar anslutning",
|
||||
"World.Connection.RequestingJoin": "Begär anslutning",
|
||||
"World.Connection.Authenticating": "Autentiserande",
|
||||
"World.Connection.Connected": "Ansluten",
|
||||
"World.Connection.SyncingInitialState": "Synkar världens ursprungliga tillstånd",
|
||||
|
||||
"World.Error.AccessDenied": "Nekat Tillträde",
|
||||
"World.Error.SecurityViolation": "Säkerhetsöverträdelse",
|
||||
"World.Error.OnlyRegisteredUsers": "Endast registrerade användare får gå med",
|
||||
"World.Error.OnlyContacts": "Endast värdens kontakter får gå med",
|
||||
|
||||
"World.Error.Private": "Den här sessionen är privat",
|
||||
"World.Error.SessionEnded": "Sessionen Har Avslutats",
|
||||
"World.Error.UserLimitReached": "Sessionen har nått använder gränsen",
|
||||
"World.Error.FailedAuthentication": "Misslyckad autentisering",
|
||||
"World.Error.FailedUserID": "Det gick inte att autentisera UserID",
|
||||
"World.Error.FailedFetchingAuthentication": "Misslyckades att hämta autentiserings info",
|
||||
"World.Error.JoinAlreadyRequested": "Anslutning har redan begärts",
|
||||
"World.Error.FailedConnectToRelay": "Misslyckades att ansluta till reläet",
|
||||
|
||||
"World.Error.NoPort": "Ingen Port Specificerad",
|
||||
"World.Error.IncompatibleVersion": "Inkompatibel {appName} Version",
|
||||
|
||||
"World.Error.Unknown": "Okänt Error",
|
||||
|
||||
"World.Config.Name": "Värld Namn:",
|
||||
"World.Config.Description": "Beskrivning:",
|
||||
"World.Config.MaxUsers": "Maximum Användare:",
|
||||
"World.Config.MobileFriendly": "Mobilvänlig",
|
||||
"World.Config.SaveOptionsHeader": "World Save Options:",
|
||||
"World.Config.EditMode": "Redigeringsläge:",
|
||||
"World.Config.AccessLevelHeader": "Vem kan gå med i världen?",
|
||||
"World.Config.AutoKickAFK": "Auto Kicka frånvarande användare:",
|
||||
"World.Config.AutoKickAFKMinutes": "Max frånvarande Minuter:",
|
||||
"World.Config.HideFromListing": "Visa inte i sessions listor",
|
||||
"World.Config.Autosave": "Autosparning (kommer skriva över senaste sparning):",
|
||||
"World.Config.AutosaveInterval": "Autosparning varje minut:",
|
||||
"World.Config.CleanupAssets": "Städa upp oanvända Föremål:",
|
||||
"World.Config.CleanupInterval": "Uppstädnings interval (sekunder):",
|
||||
|
||||
"World.Actions.StartSession": "Starta Session",
|
||||
"World.Actions.Join": "Gå Med",
|
||||
"World.Actions.Focus": "Fokusera",
|
||||
"World.Actions.Close": "Stäng Värld",
|
||||
"World.Actions.Leave": "Lämna Värld",
|
||||
"World.Actions.Save": "Spara Ändringar",
|
||||
"World.Actions.SaveAs": "Spara Som...",
|
||||
"World.Actions.SaveCopy": "Spara Kopia...",
|
||||
"World.Actions.SaveHere": "Spara Här",
|
||||
"World.Actions.SaveToInventory": "Spara Till Förråd",
|
||||
"World.Actions.Saving": "Sparar...",
|
||||
"World.Actions.Discard": "Kasta Bort Ändringar",
|
||||
"World.Actions.Clone": "Klona Värld",
|
||||
"World.Actions.Delete": "Radera Värld",
|
||||
"World.Actions.ConfirmDelete": "Bekräfta Radering",
|
||||
"World.Actions.ReallyConfirmDelete": "RADERA PERMANENT",
|
||||
"World.Actions.Overwrite": "Överskriv med {name}",
|
||||
"World.Actions.ConfirmOverwrite": "Bekräfta ÖVERSKRIVNING",
|
||||
"World.Actions.Overwriting": "Skriver Över...",
|
||||
|
||||
"World.Actions.ClosePrompt": "Stäng Värld?",
|
||||
"World.Actions.LeavePrompt": "Lämna Värld?",
|
||||
"World.Actions.CloseConfirm": "Stäng",
|
||||
"World.Actions.LeaveConfirm": "Lämna",
|
||||
"World.Actions.CannotClose": "(kan inte stänga den här världen)",
|
||||
"World.Actions.GuestWarning": "",
|
||||
"World.Actions.HostingWarning": "Du är värd för denna värld. Alla användare kommer att kopplas ifrån.",
|
||||
|
||||
"World.Actions.GetWorldOrb": "Få Värld Bubbla",
|
||||
"World.Actions.CopyWorldURL": "Kopiera Världens URL",
|
||||
"World.Actions.CopyRecordURL": "Kopiera Record URL",
|
||||
"World.Actions.StartCustomSession": "Starta Anpassad Session",
|
||||
"World.Actions.ModifyMetadata": "Redigera Metadata",
|
||||
"World.Actions.GetSessionOrb": "Få Sessionens Bubbla",
|
||||
"World.Actions.CopySessionURL": "Kopiera Sessionens URL",
|
||||
|
||||
"World.Indicator.NoData": "Ingen Data",
|
||||
"World.Indicator.LocalWorld": "Lokal Maskin",
|
||||
"World.Indicator.Author": "Av: {name}",
|
||||
"World.Indicator.Host": "Värd: {name}",
|
||||
"World.Indicator.Hosting": "Är Värd",
|
||||
"World.Indicator.Sessions": "{n,plural, one {# session} other {# sessioner}}",
|
||||
"World.Indicator.Users": "Användare",
|
||||
"World.Indicator.Users.None": "(inga aktiva sessioner funna)",
|
||||
"World.Indicator.Description": "Beskrivning",
|
||||
"World.Indicator.Description.None": "(ingen beskrivning försedd)",
|
||||
|
||||
"World.Detail.ActiveSessions": "Aktiva Sessioner:",
|
||||
"World.Detail.ActiveUsers": "Aktiva Användare:",
|
||||
"World.Detail.NewSession": "<ny session>",
|
||||
"World.Detail.DescriptionHeader": "Beskrivning: ",
|
||||
"World.Detail.SessionInformationHeader": "Session Information",
|
||||
"World.Detail.Uptime": "Upptid",
|
||||
"World.Detail.AccessLevel": "Synlighet",
|
||||
"World.Detail.Users": "Användare",
|
||||
"World.Detail.Users.Count": "{active}{away, select, 0 {} other { (+{away} away)}} utav {max}",
|
||||
|
||||
"World.Detail.WorldInformationHeader": "Värld Information",
|
||||
"World.Detail.PublishDate": "Publicerad",
|
||||
"World.Detail.ModifyDate": "Senast Uppdaterad",
|
||||
"World.Detail.Visits": "Besökelser",
|
||||
|
||||
"World.Detail.Tags": "Taggar",
|
||||
"World.Detail.ActionsHeader": "Handlingar:",
|
||||
|
||||
"World.Category.Everything": "Allting",
|
||||
"World.Category.Featured": "Utvalda",
|
||||
"World.Category.PublishedWorlds": "Publicerade Världar",
|
||||
"World.Category.ActiveSessions": "Aktiva Sessioner",
|
||||
|
||||
"World.Category.HeadlessSessions": "Huvudlösa Sessioner",
|
||||
"World.Category.Social": "Sociala",
|
||||
"World.Category.Games": "Spel",
|
||||
"World.Category.Art": "Konst",
|
||||
"World.Category.Tutorials": "Guide",
|
||||
"World.Category.Educational": "Pedagogiska",
|
||||
|
||||
"World.Category.MyWorlds": "Mina Världar",
|
||||
"World.Category.Custom": "Anpassade",
|
||||
|
||||
"World.AccessLevel.Anyone": "Alla",
|
||||
"World.AccessLevel.RegisteredUsers": "Registrerade Användare",
|
||||
|
||||
"World.AccessLevel.LAN": "LAN",
|
||||
"World.AccessLevel.Private": "Privat (endast inbjudning)",
|
||||
|
||||
"World.SortParameter.SearchScore": "Search Score",
|
||||
"World.SortParameter.Name": "Namn",
|
||||
"World.SortParameter.OpenedWorldCount": "Öppnade Världar",
|
||||
"World.SortParameter.TotalSessionCount": "Totala Sessioner",
|
||||
"World.SortParameter.TotalUserCount": "Totala Användare",
|
||||
"World.SortParameter.CreationDate": "Skapelsedatum",
|
||||
"World.SortParameter.LastUpdateDate": "Ändringsdatum",
|
||||
"World.SortParameter.FirstPublishTime": "Publiceringsdatum",
|
||||
"World.SortParameter.TotalVisits": "Totala Antal Besök",
|
||||
|
||||
"World.Filter.DataSources": "Data Källor:",
|
||||
"World.Filter.OpenedWorlds": "Öppnade Världar",
|
||||
"World.Filter.ActiveSessions": "Aktiva Sessioner",
|
||||
"World.Filter.PublishedWorlds": "Publicerade Världar",
|
||||
"World.Filter.LocalWorlds": "Lokala Världar",
|
||||
"World.Filter.BaseSearch": "Bas Sökning:",
|
||||
"World.Filter.ByOwner": "Efter Ägare:",
|
||||
"World.Filter.UserOwner": "Ägare är Användare",
|
||||
"World.Filter.GroupOwner": "Ägare är Grupp",
|
||||
"World.Filter.SubmittedToGroup": "Inlämnad till grupp:",
|
||||
"World.Filter.Featured": "Enbart Utvalda",
|
||||
"World.Filter.MyWorlds": "Mina Världar",
|
||||
"World.Filter.SessionFiltering": "Sessions Filtrering:",
|
||||
"World.Filter.MinimumUsers": "Minimum Användare: <b>{n}</b>",
|
||||
|
||||
"World.Filter.OnlyHeadless": "Endast Huvudlösa Världar",
|
||||
"World.Filter.MaxAccessLevel": "Maximum Åtkomstnivå:",
|
||||
"World.Filter.MinimumUptime": "Minimum Upptid:",
|
||||
"World.Filter.Sorting": "Sortering:",
|
||||
|
||||
"World.Edit.Title": "Redigera Världens Metadata",
|
||||
"World.Edit.Name": "Världens Namn:",
|
||||
"World.Edit.Description": "Beskrivning:",
|
||||
"World.Edit.Tags": "Taggar (comma separated):",
|
||||
"World.Edit.Path": "Värld Väg:",
|
||||
"World.Edit.AccessLevelHeader": "Vem kan öppna denna värld?",
|
||||
"World.Edit.AccessPrivate": "Endast Jag",
|
||||
"World.Edit.AccessPatreon": "Patreon Supportrar",
|
||||
"World.Edit.AccessPublic": "Alla (offentlig)",
|
||||
|
||||
"Tools.AvatarCreator": "Avatar Skapare",
|
||||
"Tools.FullBodyCalibrator": "Helkropps Kalibrator",
|
||||
"Tools.CameraStreaming": "Kamera / Strömning",
|
||||
"Tools.CreateNewWorld": "Skapa Ny Värld",
|
||||
"Tools.Debug": "Felsöka",
|
||||
|
||||
"Options.FreeformDash.On": "Fri Formig Dash: På",
|
||||
"Options.FreeformDash.Off": "Fri Formig Dash: Av",
|
||||
"Options.SeatedMode.On": "Sittande Läge: På",
|
||||
"Options.SeatedMode.Off": "Sittande Läge: Av",
|
||||
|
||||
"Indicator.OnlineUsers": "Användare Online: ~{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": "Allt Synkat",
|
||||
"Indicator.Sync.SyncingItems": "Synkar {item_count,plural, one {# item} other {# items}} <nobr>({item_percent} %)",
|
||||
"Indicator.Sync.UploadingVariants": "Laddar Upp {variant_count,plural, one {# asset variant} other {# asset variants}}",
|
||||
"Indicator.Sync.SyncError": "Synk Error! <size=50%>Kolla i loggen för detaljer</size>",
|
||||
"Indicator.Sync.OutOfSpace": "Slut på Minne! <size=50%>Kan inte synka</size>",
|
||||
|
||||
"Indicator.LiveHiddenMessage": "(information är gömd medans du direktsänder)",
|
||||
|
||||
"Dummy": "Dummy"
|
||||
}
|
||||
}
|
||||
1236
zh-cn.json
Normal file
1236
zh-cn.json
Normal file
File diff suppressed because it is too large
Load diff
1196
zh-tw.json
Normal file
1196
zh-tw.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue