state:empty
state:<translated
state:>=translated
state:needs-editing
has:suggestion
has:variant
has:screenshot
has:label
has:context
state:<translated AND NOT has:suggestion
has:comment
has:check
state:approved
state:translated
Loading…
New source string
testing_project / Documentation: reference/reference_lua/errno — English
The string uses three dots (...) instead of an ellipsis character (…)
Reset
Additional explanation to clarify meaning or usage of the string.
Additional comma-separated flags to influence Weblate behavior.
read-only is inherited from testing_project/Documentation: reference/reference_lua/errno — English.
read-only
> local fio = require('fio')
> local errno = require('errno')
> fio.open('no_such_file')
> print('errno() = ' .. errno())
> print('errno.strerror() = ' .. errno.strerror())
> local t = getmetatable(errno).__index
> for k, v in pairs(t) do
> if v == errno() then
> print('errno() constant = ' .. k)
> end
> end
> end
---
...
tarantool> f()
errno() = 2
errno.strerror() = No such file or directory
errno() constant = ENOENT
---
...