diff options
Diffstat (limited to 'server/locale/en-US/libs/lua53')
-rw-r--r-- | server/locale/en-US/libs/lua53/file.lni | 91 | ||||
-rw-r--r-- | server/locale/en-US/libs/lua53/io.lni | 2 |
2 files changed, 92 insertions, 1 deletions
diff --git a/server/locale/en-US/libs/lua53/file.lni b/server/locale/en-US/libs/lua53/file.lni new file mode 100644 index 00000000..176b2034 --- /dev/null +++ b/server/locale/en-US/libs/lua53/file.lni @@ -0,0 +1,91 @@ +[close] +description = 'Close `file`.' + +[flush] +description = 'Saves any written data to `file`.' + +[lines] +description = [[ +------ +```lua +for c in file:lines(...) do + body +end +``` +]] +[[.enums]] +name = 'mode' +enum = 'n' +description = 'Reads a numeral and returns it as number.' +[[.enums]] +name = 'mode' +enum = 'a' +description = 'Reads the whole file.' +[[.enums]] +name = 'mode' +enum = 'l' +description = 'Reads the next line skipping the end of line.' +[[.enums]] +name = 'mode' +enum = 'L' +description = 'Reads the next line keeping the end of line.' +[[.enums]] +name = 'mode' +code = 'number' +description = 'Reads a string with up to this number of bytes.' + +[read] +description = 'Reads the `file`, according to the given formats, which specify what to read.' +[[.enums]] +name = 'mode' +enum = 'n' +description = 'Reads a numeral and returns it as number.' +[[.enums]] +name = 'mode' +enum = 'a' +description = 'Reads the whole file.' +[[.enums]] +name = 'mode' +enum = 'l' +description = 'Reads the next line skipping the end of line.' +[[.enums]] +name = 'mode' +enum = 'L' +description = 'Reads the next line keeping the end of line.' +[[.enums]] +name = 'mode' +code = 'number' +description = 'Reads a string with up to this number of bytes.' + +[seek] +description = 'Sets and gets the file position, measured from the beginning of the file.' +[[.enums]] +name = 'whence' +enum = 'set' +description = 'Base is beginning of the file.' +[[.enums]] +name = 'whence' +enum = 'cur' +description = 'Base is current position.' +[[.enums]] +name = 'whence' +enum = 'end' +description = 'Base is end of file.' + +[setvbuf] +description = 'Sets the buffering mode for an output file.' +[[.enums]] +name = 'mode' +enum = 'no' +description = 'Output operation appears immediately.' +[[.enums]] +name = 'mode' +enum = 'full' +description = 'Performed only when the buffer is full.' +[[.enums]] +name = 'mode' +enum = 'line' +description = 'Buffered until a newline is output.' + +[write] +description = 'Writes the value of each of its arguments to `file`.' diff --git a/server/locale/en-US/libs/lua53/io.lni b/server/locale/en-US/libs/lua53/io.lni index 496a573c..f68602b5 100644 --- a/server/locale/en-US/libs/lua53/io.lni +++ b/server/locale/en-US/libs/lua53/io.lni @@ -88,7 +88,7 @@ enum = 'w' description = 'Write data to this program by `file`.' [read] -description = 'Reads the file file, according to the given formats, which specify what to read.' +description = 'Reads the `file`, according to the given formats, which specify what to read.' [[.enums]] name = 'mode' enum = 'n' |