mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
17 lines
341 B
Plaintext
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
|