Skip to content

Commit

Permalink
Project Configurable Env Settings (#5409)
Browse files Browse the repository at this point in the history
* add settings in xrengine config

* add project-setting service

* add seeding related code

* empty settings array

* add admin panel view for project settings

* update form in project settings

* remove extra console log

* remove unused code

* remove unused code

* remove unused code

* fix type error

* add translation in admin file

* change spacing

* load config and show config in admin panel in editable form

* add project settings service functions

* remove type error

* fix project setting class

* allow editing and fetching project settings through project setting service

* fix type error

* import hooked effect from common package

* remove model file
  • Loading branch information
zulqarnainhanif committed Mar 14, 2022
1 parent b544f8f commit cda1a04
Show file tree
Hide file tree
Showing 22 changed files with 1,077 additions and 657 deletions.
689 changes: 345 additions & 344 deletions packages/client-core/i18n/en/admin.json

Large diffs are not rendered by default.

135 changes: 68 additions & 67 deletions packages/client-core/i18n/en/common.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,69 @@
{
"pageLoader": {
"loading": "Loading page..."
},
"tooltip": {
"pressKey": "Press {{tip}} to {{message}}"
},
"toast": {
"joined": "joined",
"left": "left"
},
"navUserWidget": {
"login": "Log In"
},
"loader": {
"connecting": "Connecting to world...",
"entering": "Entering world...",
"loading": "loading",
"objectRemaining": "{{count}} object remaining",
"objectRemainingPlural": "{{count}} objects remaining",
"loadingObjects":"Loading Objects",
"loadingComplete":"Loading Complete",
"joiningWorld":"Joining World"
},
"alert":{
"eventWasSuccess":"Event was successful",
"errorWasEncountered":"An error was encountered",
"eventInProgress":"Event in progress",
"seconds":"seconds",
"cancelCountdown":"Closing this modal will cancel the countdown"
},
"debug":{
"refresh":"Refresh",
"physicsDebug":"Physics Debug",
"avatarDebug":"Avatar Debug",
"tick":"Tick",
"namedEntities":"Named Entities",
"networkObject":"Network Object",
"networkClients":"Network Clients"
},
"recording":{
"videoRecorder":"Video recorder",
"waitingForPermissions":"Waiting for permissions",
"selectVideoSource":"Select video source",
"screen":"Screen",
"camera":"Camera",
"microphone":"Microphone",
"startRecording":"Start recording",
"pauseRecording":"Pause recording",
"resumeRecording":"Resume recording",
"stopRecording":"Stop recording"
},
"gameServer":{
"browserError":"Browser Error",
"browserErrorMessage":"Your browser does not support storage in private browsing mode. Either try another browser, or exit private browsing mode.",
"noAvailableServers":"No Available Servers",
"noAvailableServersMessage":"There aren't any servers available for you to connect to. Attempting to re-connect in",
"worldDisconnected":"World disconnected",
"worldDisconnectedMessage":"You've lost your connection with the world. We'll try to reconnect before the following time runs out, otherwise you'll be forwarded to a different instance.",
"webGLNotEnabled":"WebGL not enabled",
"webGLNotEnabledMessage":"Your browser does not support WebGL, or it is disabled. Please enable WebGL or consider upgrading to the latest version of your browser.",
"youKickedFromWorld":"You've been kicked from the world",
"youKickedFromWorldMessage":"You were kicked from this world for the following reason",
"invalidLocation":"Invalid location",
"cantFindLocation":"We can't find the location",
"misspelledOrNotExist":"It may be misspelled, or it may not exist."
}
}
"pageLoader": {
"loading": "Loading page..."
},
"tooltip": {
"pressKey": "Press {{tip}} to {{message}}"
},
"toast": {
"joined": "joined",
"left": "left"
},
"navUserWidget": {
"login": "Log In"
},
"loader": {
"connecting": "Connecting to world...",
"entering": "Entering world...",
"loading": "Loading...",
"objectRemaining": "{{count}} object remaining",
"objectRemainingPlural": "{{count}} objects remaining",
"loadingObjects": "Loading Objects",
"loadingComplete": "Loading Complete",
"joiningWorld": "Joining World"
},
"alert": {
"eventWasSuccess": "Event was successful",
"errorWasEncountered": "An error was encountered",
"eventInProgress": "Event in progress",
"seconds": "seconds",
"cancelCountdown": "Closing this modal will cancel the countdown"
},
"debug": {
"refresh": "Refresh",
"physicsDebug": "Physics Debug",
"avatarDebug": "Avatar Debug",
"tick": "Tick",
"namedEntities": "Named Entities",
"networkObject": "Network Object",
"networkClients": "Network Clients"
},
"recording": {
"videoRecorder": "Video recorder",
"waitingForPermissions": "Waiting for permissions",
"selectVideoSource": "Select video source",
"screen": "Screen",
"camera": "Camera",
"microphone": "Microphone",
"startRecording": "Start recording",
"pauseRecording": "Pause recording",
"resumeRecording": "Resume recording",
"stopRecording": "Stop recording"
},
"gameServer": {
"browserError": "Browser Error",
"browserErrorMessage": "Your browser does not support storage in private browsing mode. Either try another browser, or exit private browsing mode.",
"noAvailableServers": "No Available Servers",
"noAvailableServersMessage": "There aren't any servers available for you to connect to. Attempting to re-connect in",
"worldDisconnected": "World disconnected",
"worldDisconnectedMessage": "You've lost your connection with the world. We'll try to reconnect before the following time runs out, otherwise you'll be forwarded to a different instance.",
"webGLNotEnabled": "WebGL not enabled",
"webGLNotEnabledMessage": "Your browser does not support WebGL, or it is disabled. Please enable WebGL or consider upgrading to the latest version of your browser.",
"youKickedFromWorld": "You've been kicked from the world",
"youKickedFromWorldMessage": "You were kicked from this world for the following reason",
"invalidLocation": "Invalid location",
"cantFindLocation": "We can't find the location",
"misspelledOrNotExist": "It may be misspelled, or it may not exist.",
"loading": "loading"
}
}
Loading

0 comments on commit cda1a04

Please sign in to comment.