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/datetime/new — 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/datetime/new — English.
read-only
nsec = 123456789,
sec = 20,
min = 25,
hour = 18,
day = 20,
month = 8,
year = 2021,
tzoffset = 180
}
---
- 2021-08-20T18:25:20.123456789+0300
...
tarantool> datetime.new {
nsec = 123456789,
sec = 20,
min = 25,
hour = 18,
day = 20,
month = 8,
year = 2021,
tzoffset = 60,
tz = 'Europe/Moscow'
}
---
- 2021-08-20T18:25:20.123456789 Europe/Moscow
...
tarantool> datetime.new {
day = -1,
month = 2,
year = 2021,
}
---
- 2021-02-28T00:00:00Z
...
tarantool> datetime.new {
timestamp = 1656664205.123,
tz = 'Europe/Moscow'
}
---
- 2022-07-01T08:30:05.122999906 Europe/Moscow
...
tarantool> datetime.new {
nsec = 123,
timestamp = 1656664205,
tz = 'Europe/Moscow'
}
---
- 2022-07-01T08:30:05.000000123 Europe/Moscow
...