Skip to content

Commit

Permalink
Merge pull request #143 from lexize/1.20
Browse files Browse the repository at this point in the history
Translation fixes
  • Loading branch information
UnlikePaladin committed Dec 16, 2023
2 parents 3125b70 + cf2d3fc commit 4d44a4b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public abstract class FiguraGlobalsDocs {
public JsonAPI json;
@LuaFieldDoc("globals.resources")
public ResourcesAPI resources;
@LuaFieldDoc("global.net")
@LuaFieldDoc("globals.net")
public NetworkingAPI net;
@LuaFieldDoc("globals.raycast")
public RaycastAPI raycast;
Expand Down
8 changes: 8 additions & 0 deletions common/src/main/resources/assets/figura/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
"figura.permissions.value.buffer_size.tooltip": "Max size of byte buffer that can be created by Avatar",
"figura.permissions.value.buffers_count": "Buffers Count",
"figura.permissions.value.buffers_count.tooltip": "Max amount of buffers that can be created by this avatar",
"figura.permissions.value.networking": "Networking",
"figura.permissions.value.networking.tooltip": "Allows this avatar to use networking features",
"figura.permissions.value.max_sockets_count": "Max Sockets",
"figura.permissions.value.max_sockets_count.tooltip": "Max Amount of open sockets",
"figura.popup_menu.cancel": "Cancel",
"figura.popup_menu.reload": "Reload Avatar",
"figura.popup_menu.increase_permissions": "Increase Permissions",
Expand Down Expand Up @@ -657,6 +661,7 @@
"figura.docs.globals.host": "The global instance of HostAPI",
"figura.docs.globals.avatar": "The global instance of AvatarAPI",
"figura.docs.globals.data": "The global instance of DataAPI",
"figura.docs.globals.net": "The global instance of NetworkingAPI",
"figura.docs.globals.json": "The global instance of JsonAPI",
"figura.docs.globals.file": "The global instance of FileAPI",
"figura.docs.globals.resources": "The global instance of ResourcesAPI",
Expand Down Expand Up @@ -1651,6 +1656,7 @@
"figura.docs.world.raycast_entity": "Raycasts an Entity in the world, returns a map containing the entity and it's position.",
"figura.docs.world.raycast_block": "Raycasts a Block in the world, returns a map containing the block and it's position.",
"figura.docs.data": "A global API that provides functions to work with data related features",
"figura.docs.data.create_buffer": "Creates an empty buffer",
"figura.docs.buffer": "A byte buffer object",
"figura.docs.buffer.read": "Reads one byte from this buffer",
"figura.docs.buffer.read_short": "Reads short from this buffer",
Expand Down Expand Up @@ -1749,6 +1755,8 @@
"figura.docs.file.is_directory": "Checks if specified path is directory",
"figura.docs.file.open_read_stream": "Opens an input stream for file at specified path",
"figura.docs.file.open_write_stream": "Opens an output stream for file at specified path",
"figura.docs.file.read_string": "Reads whole file as string",
"figura.docs.file.write_string": "Writes a string to a file",
"figura.docs.file.write": "Writes value with specified provider in file",
"figura.docs.file.read": "Reads value with specified reader from file",
"figura.docs.file.mkdir": "Creates a directory at specified path. Returns true if folder was successfully created",
Expand Down

0 comments on commit 4d44a4b

Please sign in to comment.