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 |
Weblate repository |
http://weblate.tarantool.io/git/testing_project/documentation-bookadminreplicationrepl_reseed/
|
File mask | locale/*/LC_MESSAGES/book/admin/replication/repl_problem_solving.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 | 39 | 1,017 | 7,992 | |||
Translated | 100% | 39 | 100% | 1,017 | 100% | 7,992 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 39 | 100% | 1,017 | 100% | 7,992 |
Failing checks | 10% | 4 | 15% | 160 | 20% | 1,620 |
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
—
Browse all translation changes
39 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
39 | 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 my_trigger = function(old, new, sp, op)
-- op: ‘INSERT’, ‘DELETE’, ‘UPDATE’, or ‘REPLACE’
if new == nil then
print("No new during "..op, old)
return -- deletes are ok
end
if old == nil then
print("Insert new, no old", new)
return new -- insert without old value: ok
end
print(op.." duplicate", old, new)
if op == 'INSERT' then
if new[2] > old[2] then
-- Creating new tuple will change op to ‘REPLACE’
return box.tuple.new(new)
end
return old
end
if new[2] > old[2] then
return new
else
return old
end
return
end
box.ctl.on_schema_init(function()
box.space._space:on_replace(function(old_space, new_space)
if not old_space and new_space and new_space.name == my_space_name then
box.on_commit(function()
box.space[my_space_name]:before_replace(my_trigger)
end)
end
end)
end)