1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<editorsettings description="Dot (GraphViz)" icon="dot.svg">
<executable command="dot -Tsvg %file -o %file.svg" />
<imagefile extension=".svg"/>
<empty-frame-text><i18n>
<en>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Text frames";
S -> "Image frames";
C [label="Command frames"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</en>
<cs>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Text frames";
S -> "Image frames";
C [label="Command frames"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</cs>
<de>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Textrahmen";
S -> "Bilderrahmen";
C [label="Befehlsrahmen"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</de>
<fr>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Cadre de texte";
S -> "Cadre d'image";
C [label="Cadre de rendu"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</fr>
<pl>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Ramki tekstowe";
S -> "Ramki graficzne";
C [label="Ramki renderowane"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</pl>
<ru>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Текстовые блоки";
S -> "Блоки изображений";
C [label="Блоки команд"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</ru>
<it>
ratio="fill";
edge [color ="blue"];
S [label="Scribus", color="#f94949", style=filled];
node [shape="box", color="#6767ed", style=filled];
S -> "Cornici di testo";
S -> "Cornici immagine";
C [label="Cornici rendering"];
S -> C
node [shape="box", color="#82ec80", style=filled]
C -> "LaTeX"
C -> "Gnuplot"
C -> "LilyPond"
C -> "Dot"
C -> "POV-Ray"
</it>
</i18n>
</empty-frame-text>
<preamble>
digraph scribus {
bgcolor="transparent";
size="$scribus_width_inch$,$scribus_height_inch$";
page="$scribus_width_inch$,$scribus_height_inch$";
</preamble>
<postamble>}</postamble>
</editorsettings>
|