Files
sphinx/doc/_static/translation.puml
Tetsuo Koyama 7fbd9c02d0 🎨 Fixed issue #6789
2019-11-04 20:28:24 +09:00

17 lines
341 B
Plaintext

@startuml
file "SphinxProject"
file ".rst"
database ".pot"
database ".po"
database ".mo"
actor translator
file TranslatedBuild
translator -l-> .po
SphinxProject -r-> .rst
.rst -r-> .pot : sphinx-build gettext
.pot -r-> .po : Pootle
.po -d-> .mo : msgfmt
.mo -l-> TranslatedBuild
.rst -d-> TranslatedBuild : "sphinx-buid -Dlanguage="
@enduml