diff options
| author | Tetsuo Koyama <tkoyama010@gmail.com> | 2019-11-04 20:24:18 +0900 |
|---|---|---|
| committer | Tetsuo Koyama <tkoyama010@gmail.com> | 2019-11-04 20:28:24 +0900 |
| commit | 7fbd9c02d0ac208eac2fdd83eee9eca590c4f31f (patch) | |
| tree | 173a8fb4ff852741e56f76cfaa9b99b8623345ec /doc/_static | |
| parent | a6a2a59ab0abfaf510d3dcbc43231468d3dc1fff (diff) | |
| download | sphinx-git-7fbd9c02d0ac208eac2fdd83eee9eca590c4f31f.tar.gz | |
:art: Fixed issue #6789
Diffstat (limited to 'doc/_static')
| -rw-r--r-- | doc/_static/Makefile | 4 | ||||
| -rw-r--r-- | doc/_static/translation.png | bin | 13791 -> 20416 bytes | |||
| -rw-r--r-- | doc/_static/translation.puml | 16 |
3 files changed, 20 insertions, 0 deletions
diff --git a/doc/_static/Makefile b/doc/_static/Makefile new file mode 100644 index 000000000..39ce65260 --- /dev/null +++ b/doc/_static/Makefile @@ -0,0 +1,4 @@ +translation.png: translation.puml + plantuml $< +clean: + rm translation.png diff --git a/doc/_static/translation.png b/doc/_static/translation.png Binary files differindex 11f3d02cd..a47c19f8d 100644 --- a/doc/_static/translation.png +++ b/doc/_static/translation.png diff --git a/doc/_static/translation.puml b/doc/_static/translation.puml new file mode 100644 index 000000000..5c3a7350b --- /dev/null +++ b/doc/_static/translation.puml @@ -0,0 +1,16 @@ +@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 |
