Skip to content

Commit 7585f3b

Browse files
sarinaclaude
authored andcommitted
Convert mermaid diagram to graphviz
Resolves openedx#591 Co-authored-by: Claude <noreply@anthropic.com>
1 parent 2667896 commit 7585f3b

1 file changed

Lines changed: 15 additions & 9 deletions

File tree

source/translators/concepts/translation-process.rst

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,21 @@ extracted and made available to translators, strings can be translated to a vari
1414
languages. Tooling will then download the translated strings and make them available to
1515
your running code.
1616

17-
.. mermaid::
18-
19-
flowchart TD
20-
annotate(Annotate Strings) -->
21-
extract(Extract Source Strings for Translation) -->
22-
upload(Upload Source Strings to Transifex) -->
23-
translate(Translate Strings) -->
24-
sync(Sync Translated Strings to openedx-translations) -->
25-
use(Using Translation)
17+
.. graphviz::
18+
19+
digraph translation_flow {
20+
graph [rankdir=TD]
21+
node [shape=box, style="rounded,filled", fillcolor=white]
22+
23+
annotate [label="Annotate Strings"]
24+
extract [label="Extract Source Strings for Translation"]
25+
upload [label="Upload Source Strings to Transifex"]
26+
translate [label="Translate Strings"]
27+
sync [label="Sync Translated Strings to openedx-translations"]
28+
use [label="Using Translation"]
29+
30+
annotate -> extract -> upload -> translate -> sync -> use
31+
}
2632

2733
Annotating and Extracting Strings
2834
*********************************

0 commit comments

Comments
 (0)