The translation was automatically locked due to following alerts: Could not merge the repository.
16 |
|
All strings — 467 words | Browse Translate Zen |
---|---|---|---|
16 |
|
Read-only strings — 467 words | Browse Translate Zen |
Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Documentation: reference/reference_lua/compat/compat_tutorial | 0 | 0 | 0 | 0 | 7 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/sharding/vshard_architecture | 0 | 0 | 0 | 0 | 2 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/replication/repl_reseed | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/memtx | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: reference/reference_lua/datetime/interval_arithm | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/vinyl | 0 | 0 | 0 | 0 | 5 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/sharding/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/memtx_vinyl_diff | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
Overview
Project website | www.tarantool.io/en/doc/latest |
---|---|
Translation process |
|
Source code repository |
git@github.com:tarantool/doc.git
|
Repository branch | test-weblate |
Last remote commit |
updated pot
afee6c42
TarantoolBot authored a year ago |
Last commit in Weblate |
Translated using Weblate (Russian)
549ce8a4
Weblate Admin authored a year ago |
Weblate repository |
http://weblate.tarantool.io/git/testing_project/documentation-bookboxstream/
|
File mask | locale/*/LC_MESSAGES/book/box/stream.po |
Translation file | Not available |
Last change | None |
Last author | None |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 16 | 467 | 3,337 | |||
Translated | 100% | 16 | 100% | 467 | 100% | 3,337 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 16 | 100% | 467 | 100% | 3,337 |
Failing checks | 0% | 0 | 0% | 0 | 0% | 0 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 0% | 0 | 0% | 0 | 0% | 0 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+100%
—
Contributors
—
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
![]() New source string |
|
16 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
16 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
local conn_space = conn.space.test
local stream = conn:new_stream()
local stream_space = stream.space.test
-- Begin transaction over an iproto stream:
stream:begin()
stream_space:replace({1})
-- Empty select, the transaction was not committed.
-- You can't see it from the requests that do not belong to the
-- transaction.
conn_space:select{}
-- Select returns the previously inserted tuple,
-- because this select belongs to the transaction:
stream_space:select({})
-- Commit transaction:
stream:commit()
-- Now this select also returns the tuple, because the transaction has been committed:
conn_space:select{}