diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2017-03-27 15:23:10 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@edx.srv.br> | 2017-03-27 18:48:26 +0000 |
commit | 8df2786662eab8d39cbd5cd8b7f6ac2d5e710246 (patch) | |
tree | 1e96fb8d3106f62be07b096dfd8e45af034d8447 | |
parent | 53e3c20054125974e4df3f41f629f38a1e1a6ca8 (diff) |
Fix and improve help contents in LibreLogo
Unit #33628624 (uk)
Unit #33628659 (uk)
Unit #33628628 (uk)
Change-Id: Id4e911c58bd353f8aa46020c185bb6763fbd1bf9
Reviewed-on: https://gerrit.libreoffice.org/35772
Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
-rw-r--r-- | source/text/swriter/librelogo/LibreLogo.xhp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/text/swriter/librelogo/LibreLogo.xhp b/source/text/swriter/librelogo/LibreLogo.xhp index 8619c4c330..a95d803159 100644 --- a/source/text/swriter/librelogo/LibreLogo.xhp +++ b/source/text/swriter/librelogo/LibreLogo.xhp @@ -218,7 +218,7 @@ <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1560">Shape grouping</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_1570"> ; PICTURE [ LibreLogo_commands ]<br/> PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape<br/></paragraph> <paragraph role="paragraph" xml-lang="en-US" id="par_1580">See also “Group” in LibreOffice Writer Help.</paragraph> -<paragraph role="logocode" xml-lang="en-US" id="par_1590"> TO tree location<br/> PENUP POSITION location HEADING 0 PENDOWN<br/> PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape<br/> END<br/> <br/> PICTURE [ tree [30, 50] tree [100, 50] ] ; grouped shapes in a grouped shape<br/></paragraph> +<paragraph role="logocode" xml-lang="en-US" id="par_1590"> TO tree location<br/> PENUP POSITION location HEADING 0 PENDOWN<br/> PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape<br/> END<br/> <br/> PICTURE [ tree [230, 400] tree [300, 400] ] ; grouped shapes in a grouped shape<br/></paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1600">Starting new line shapes</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_1610"> PICTURE ; start a new line shape<br/> FORWARD 10 PICTURE FORWARD 10 ; two line shapes<br/></paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1614">Saving SVG images</paragraph> @@ -226,7 +226,7 @@ <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1618">Saving SVG/SMIL animations (drawings with SLEEP commands)</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_1619"> PICTURE “animation.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 ] ; save as an SVG/SMIL animation (see also SLEEP)<br/> PICTURE “animation2.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 SLEEP 2000 ] ; as above, but using SLEEP after the last object will result looping: after 2 seconds the SVG animation restarts in SMIL-conformant browsers</paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1620">Consistency at the left border</paragraph> -<paragraph role="paragraph" xml-lang="en-US" id="par_1630">Use picture to keep the consistency of positions and line shapes at the left border of Writer:</paragraph> +<paragraph role="paragraph" xml-lang="en-US" id="par_1630">Use PICTURE to keep the consistency of positions and line shapes at the left border of Writer:</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_1640"> PICTURE [ CIRCLE 20 POSITION [-100, 100] CIRCLE 20 ]<br/></paragraph> <paragraph role="heading" level="2" xml-lang="en-US" id="hd_1650">Loops</paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1660">REPEAT</paragraph> @@ -257,7 +257,7 @@ <paragraph role="heading" level="2" xml-lang="en-US" id="hd_1910">Subroutines</paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1920">TO, END</paragraph> <paragraph role="paragraph" xml-lang="en-US" id="par_1930">New word (or procedure).</paragraph> -<paragraph role="logocode" xml-lang="en-US" id="par_1940"> TO triangle<br/> REPEAT [ FORWARD 100 RIGHT 120 ] FILL<br/> END<br/> <br/> REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]<br/></paragraph> +<paragraph role="logocode" xml-lang="en-US" id="par_1940"> TO triangle<br/> REPEAT 2 [ FORWARD 100 RIGHT 120 ] FILL<br/> END<br/> <br/> REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]<br/></paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_1950">OUTPUT</paragraph> <paragraph role="paragraph" xml-lang="en-US" id="par_1960">Return value of the function.</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_1970"> TO randomletter<br/> OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”<br/> END<br/> <br/> PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence<br/></paragraph> |