Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
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 | ||
|
|||||||||
Documentation: book/admin/replication/repl_recover | 0 | 0 | 0 | 0 | 3 | 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 commit in Weblate |
updated pot
afee6c42
TarantoolBot authored a year ago |
Weblate repository |
http://weblate.tarantool.io/git/testing_project/documentation-referencereference_luacompatcompat_tutorial/
|
File mask | locale/*/LC_MESSAGES/reference/reference_lua/compat/compat_tutorial.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 | 36 | 731 | 6,164 | |||
Translated | 100% | 36 | 100% | 731 | 100% | 6,164 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 36 | 100% | 731 | 100% | 6,164 |
Failing checks | 19% | 7 | 64% | 470 | 73% | 4,505 |
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
36 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
36 | 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 |
name = 'option_4',
default = 'new',
brief = "<...>",
obsolete = nil, -- you can explicitly mark the option as non-obsolete
action = function(is_new)
print(("option_4 action was called with is_new = %s!"):format(is_new))
end,
run_action_now = true
}
option_4 postaction was called with is_new = true!
---
...
tarantool> compat.add_option{ -- hot reload of option_4
name = 'option_4',
default = 'old', -- different default
brief = "<...>",
action = function(is_new)
print(("new option_4 action was called with is_new = %s!"):format(is_new))
end
}
---
... -- action is not called by default