summaryrefslogtreecommitdiff
path: root/source/text/swriter/02
AgeCommit message (Collapse)Author
2024-04-29Fix indexer="include" in Help files.Olivier Hallot
+ refactor Change-Id: Ia0dfdc0f88f40776042ca0b745e26dc9e0cd479f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/166874 Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> Tested-by: Jenkins
2024-03-25tdf#160035 Remove extra Help pageOlivier Hallot
Page 19040000.xhp was not target of nay other link Change-Id: I2b3311aaa8f6bd2616096e922b3118856c749bfe Reviewed-on: https://gerrit.libreoffice.org/c/help/+/165289 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2024-03-05tdf#159808: update menu entries with fixed vs variableStéphane Guillou
Change-Id: Ifb1ec0faa41c22ed61ea6fb78adbf5e1de21754b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/164378 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-10-22Fix icon sizeOlivier Hallot
Change-Id: Ib80cf472083f43ac3375669a7deae0632b5898ab Reviewed-on: https://gerrit.libreoffice.org/c/help/+/158271 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-08-24tdf#155875 Tab'd UI cmds Writer/Format in Help(16)Olivier Hallot
+ refactoring + Writer Format menu (part 16) + fraems and link frames Change-Id: I04e90e58bbaf4d59334fcb5f06aabb75bb572077 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/156054 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-08-22Fixes some "D'oh! you found a bug".Olivier Hallot
Change-Id: Ic3de5b49ef7bc3c33824bdde0a730adad09128ad Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155947 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-08-19tdf#155875 Tab'd UI cmds Writer/Format in Help(10)Olivier Hallot
+ refactoring + Writer Format menu (part 10) Change-Id: I0adcec8732aa9c22b4c9e7c2140531a4a3a3a5bc Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155852 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-08-02tdf#156332 Fix HID in View - Toolbars (Writer)Rafael Lima
This patch adds the target HIDs for all toolbars that currently have help pages. The exceptions are listed below (they were not fixed because they do not have help pages of their own) - 3D Settings - Media Playback Change-Id: I24077431495b2bf98ae4be982734c07a11734b7f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/154965 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-06-07tdf#154996 Add tabbed UI commands in Help pagelibreoffice-7-6-branch-pointOlivier Hallot
+ refactoring + End of Writer edit menu Change-Id: Ib93d75b18fd596eb27e92ad818656c0ef2bda821 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/152710 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-16convert paragraphs with role="heading" & childelements to → h<level>Christian Lohmaier
and also drop the language that was changed to implied previously/defaults to en-US unless specified. This change doesn't affect translations, only the content of the paragraph/headings is extracted. done with: perl -CSD -pi -e 'BEGIN {$base = qr/role="heading"|level="(?<level>\d+)"|(?<id>id="[^"]+")/;} s#<paragraph(((\s+($base)){3})|(\s+($base|xml-lang="en-US")){4})>(?<body>.*?)</paragraph>#<h$+{level} $+{id}>$+{body}</h$+{level}>#g' and manually undoing the one that uses <sup>in body that's not valid according to the dtd in the h tags. Change-Id: Ibd4aed3157ed168cd5005161575672a392e59202 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148797 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-16convert plain paragraphs with role="heading" → h<level>Christian Lohmaier
i.e. without child elements and also drop the language that was changed to implied in the dtd previously/defaults to en-US unless specified. This change doesn't affect translations, only the content of the paragraph/headings is extracted. done with: perl -CSD -pi -e 'BEGIN {$base = qr/role="heading"|level="(?<level>\d+)"|(?<id>id="[^"]+")/;} s#<paragraph(((\s+($base)){3})|(\s+($base|xml-lang="en-US")){4})>(?<body>[^<]+)</paragraph>#<h$+{level} $+{id}>$+{body}</h$+{level}>#g' (all permutations re order of attributes, and xml-lang="en-US" being optional / implied) Change-Id: I365a2bb983a3969af9390753fce7b7f3597c7b8b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148795 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-21tdf#152605 update "chapter heading" to "numbered heading"Seth Chaiklin
Change-Id: I9afe6af9e039e2e40f9d19558fffd5caa1eeb645 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147281 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-12-07tdf#152323 drop name attribute from <link> elementsIlmari Lauhakangas
Replacement done with find . -name \*.xhp -print0 |xargs -0 -P 0 perl -CS -pi -e \ 's#(<link[^>]*?) +name *="[^"]*" *( [^>]+|) *>#$1$2>#g' (note some inconsistencies with space between name and = and also having empty value, and some more complicated expression to also clear up double space before/after the attribute) translation files will be prepped with: find */helpcontent2 -name \*.po -print0 |xargs -0 -P 0 perl -CS -pi -e \ $'s#(<link[^>]*?) +name=(?:\\\\"[^"]*\\\\"|\'[^\']*\') *( [^>]+|) *(/?>)#$1$2$3#g unless /^#/' (note that not all languages use the " as quote character for the attributes, but that also single quotes appera in the po file. Hence the use of the shell $'string' syntax to be able to quote ' as \' It also requires to quote the backslash, so that it needs to be escaped once for the shell, then another time for perl. Also don't work on obsolete strings (those are prefixed with #~ in the po files) Also note that <link..></link> gets turned into <link ../> during translation extraction (along with removal of the space between the attribute name and the value), so the pattern needs to be slightly different here) Change-Id: I95e53a08e6b0095cd894109ea0de154cc4859d8f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/143713 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2022-11-11tdf#148727 Correct sum exampleBogdan B
Change-Id: I117d3dccbda28ad6a851f537e00ed2aafb697c22 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/142438 Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-11-07tdf#149991 Replace Page with Page StyleBogdan B
Change-Id: I4d7a5178180aa49ca16c569b1c2a90bd248bedc5 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/142299 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-10-03tdf#150857 Better x-ref Table Formulas in HelpRafael Lima
As requested in the bug report, this patch adds a bookmark so that searching for "table formulas" will be easier to find in the Help. This patch also fixes inconsistencies as to how this feature is accessed in Writer. It is not necessary to have the cursor inside a table to be able to insert formulas in text documents. Change-Id: Icb94193d2a274ff4e19255cb46c5fdad5cc3b2b3 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/140170 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-06-18TDF#147862 (part) Update toolbar contents Help pagesOlivier Hallot
+ Upgraded the Tools toolbar help page + several fixes in embeded files + bug147862 still work in progress Change-Id: I35238075f6a917a8d7c39bfb5cbf6a5a6ebc783b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136063 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-05-05Fix typoAndrea Gelmini
Change-Id: Ibd2cf7b5e4ac76b5320799d597a600fe733c7843 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/133883 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2022-05-04tdf#148444 corrections to Print Preview Bar and related pagesSeth Chaiklin
text/swriter/main0210.xhp (Print Preview Bar) *change order of commands to match toolbar +add <embed> to (new) Single Page Preview +add "Jump to Specific Page" command (no icon exists) +add Print command and icon +add Close Preview command and icon +add <embeds> to "zoom in" and "zoom out" icons *refactor to <h1> text/swriter/02/10040000.xhp + add this file for Single Page Preview, with icon table text/swriter/02/10070000.xhp (Multiple Pages Preview) +commit beginning with 0f337351 in 2013 accidentally removed the <h1> line, now added back. *changed description to match current behavior of command +added More Options header *refactor to <h3> -remove colspan= rowspan= *change image to .svg *change image size to 1cm text/swriter/02/10080000.xhp (Book preview) *refactor to <h3> *change image to .svg *change image size to 1cm text/swriter/02/10020000.xhp (Zoom out) +add section to icon table *refactor to <h1> -remove colspan= rowspan= *change image size to 1cm *change image to .svg text/swriter/02/10010000.xhp (Zoom in) +add section to icon table *change image to .svg text/swriter/01/01120000.xhp (Print Preview) +add link to Print Preview Bar page in description -drop Related topics and link with incorrect label *refactor to <h1> Change-Id: I902fe42d7f0405e2cfe3600199f5ab3fcb7e459c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/132610 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-04-28tdf#148797 improve explanation of multiple selection in add to listSeth Chaiklin
Some of the options for using the Add to List command are not available when the Ctrl key is pressed. The existing description of how to use the Ctrl key may have contributed to confusion about how to use the command. This patch aims to improve the description of the workflow with multiple selection. Also the order of the two procedures were switched, on the assumption that the most typical use was to add some consecutive items to a list, so now that explanation comes first. Change-Id: I4e7c57dba4b6060fcd87eb1046b9e0788dd50b1c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/133483 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-04-19Related:tdf#147107;tdf#144493 update B&N bar command names and explanationsSeth Chaiklin
tdf#144493 (008cfd5980f31c9e01b5cdbede33631d66f2fb56) changed command names that are found in the Bullets and Numbering toolbar (and menus in Writer, Draw, Impress). tdf#147107 (3b222bcd75d57db404cd2ed5dc97a5c492c28060) made adjustments to some of the command names changed for tdf#144493. This patch addresses the consequences of these name changes for the Bullet and Numbering toolbar in Writer, where the changed commands also appear in the Format menu UI. Meanwhile, some of the help pages for the changed commands are shared with Draw and Impress, so any help file that needed to be changed for Writer was also updated for Draw and Impress. In addition to updating the changes in the command names, the descriptions of the commands were evaluated and corrected when necessary. text/swriter/main0206.xhp (B&N Bar) *reorder controls on help page to correspond to order on toolbar text/shared/02/06100000.xhp (Move Item Up) + appl-inline switch for <h1> and icon name to distinguish Writer from the other modules * adjustments and corrections in descriptions + add appl-switch for mentioning toolbar and shortcut keys + add link to relevant toolbar * correction in command sequence for shortcut keys for Writer and Impress. * refactor to <keycode>,<menuitem> text/shared/02/06110000.xhp (Move Item Down) + appl-inline switch for <h1> and icon name to distinguish Writer from the other modules * adjustments and corrections in descriptions + add appl-switch for mentioning toolbar and shortcut keys + add link to relevant toolbar * correction in command sequence for shortcut keys for Writer and Impress. * refactor to <keycode>,<menuitem> text/shared/02/06120000.xhp (Move Item Up with Subpoints) * correct the description, with separate explanations for list paragraphs and chapter headings, and mention of multiple selection. * update command name * change .png to .svg text/shared/02/06130000.xhp (Move Item Down with Subpoints) * correct the description, with separate explanations for list paragraphs and chapter headings, and mention of multiple selection. * update command name * change .png to .svg text/shared/02/06050000.xhp (Demote Outline Level) * simplify the appl-inline switch for <h1> * correct the description + add separate explanations for chapter headings and list paragraphs for Writer + add link to B&N toolbar + add shortcut key info for Impress * refactor to <menuitem> text/shared/02/06060000.xhp (Promote Outline Level) * simplify the appl-inline switch for <h1> * correct the description + add separate explanations for chapter headings and list paragraphs for Writer + add link to B&N toolbar + add shortcut key info for Impress * refactor to <menuitem> text/swriter/02/06070000.xhp (Demote Outline Level with Subpoints) * correct the description * update command and icon name * refactor to <h1> * change .png to .svg * change icon size to 1cm - remove <colspan="" rowspan=""> text/swriter/02/06080000.xhp (Promote Outline Level with Subpoints) * correct the description * update command and icon name * refactor to <h1> * change .png to .svg * change icon size to 1cm - remove <colspan="" rowspan=""> Change-Id: Iaedfebe4f260658bb1f5821ef279846eba22415a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/132870 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-04-11tdf#102265 Add Format - List submenu for ImpressOlivier Hallot
+ usual refactoring and icon size adjustments Change-Id: I614438a36fa1ca34ddfaac81aadb0f54bd51940e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/132736 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-03-18tdf#132643 Translate German section IDsJohnny_M
Change-Id: I7da83d7d8933af55a1f5a7118c1cb3f4f1946fbd Reviewed-on: https://gerrit.libreoffice.org/c/help/+/131417 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-03-18tdf#132643 Translate German section IDsJohnny_M
Change-Id: I0f36c3de1612d204ced34fcad5a424f7e13818b1 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/131416 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: I5a45f355b77d899a24ae346ceedf10fcb882d420 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130589 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: Iafebe7e8c835f8fcdaf206f078d92ac4234443c4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130588 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: If62f841f29d15ddbd143541a56488412384ca5b0 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130585 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: I0ceb0df437e37d91f0c84898bb2880fd3651de3f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130584 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: I888e28c0e8c77e69c4153a95eadc07232fbeb293 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130582 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: Iaa17f488790847c5b842b36eef48a072b50ecfd2 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130578 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: I75d36228f91622990cba0eaefbe9ece19dcd9d00 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130577 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-26tdf#132643 Translate German section IDsJohnny_M
Change-Id: Id022d237801f6f763a8f50c58a1e99f5e05eedd9 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130576 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I70ffee911ca9cfcc1ade46198223b0e9dbe9ed84 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129874 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ifc3ae651992037a4ebd9f067abed75e83ddca76f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129873 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I8b146a974b3220561ce6f2d1181851663f0b409d Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129872 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I33c485aee4f6e16bb35ceda14541091b09cf1088 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129871 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I2c3da3855c159524fa0e20fc3b817857b96cd9d8 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129870 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I8f9898aae8da81c5a04fddf4fa824143051ffeac Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129869 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Remove unused. Change-Id: Ie363a0cacea00c34f1b16f2b767e198d45ac3a92 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129868 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-13tdf#132643 Translate German section IDsJohnny_M
Change-Id: I892e5e64d6d430dd3d12ad5329b48ba4e2e1d5c7 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129867 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-06tdf#132643 Translate German section IDsJohnny_M
Remove unused. Change-Id: I68c7f378b8edea60771ae25829f618e6598955a6 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129577 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ie93feb7f23ef7f83d72f59c1ae0706de60e3f426 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129576 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I118f997877d52531f12f977a9038c47dade422ac Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129574 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I3cb1e4b7aa824cd5229168ddaad4064330802d46 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129575 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: Iabf5d2f5dd8c00621eb180a5d608eff7526f2ea3 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129515 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-05tdf#132643 Translate German section IDsJohnny_M
Change-Id: I9a043f5129c4cef17fa780bf1034b02587274294 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129516 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-05tdf#132643 Translate German section IDsJohnny_M
Change-Id: I1a47ddb4bda170a7174498deea03f7650fc14530 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129513 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-05tdf#132643 Translate German section IDsJohnny_M
Change-Id: I540a88c566b4e12580207fb13df67b2d163d3b23 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129514 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-28tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ia88762ccd31319ed93998a0e84ad21c5cf00d84e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125964 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-10-21Fix <embedvar> tags for better l10n (Part 2)Rafael Lima
This is Part 2 of the fixes requested by translators concerning the use of the <embedvar>. Change-Id: I4c846632ded9a7260f86818d7a0eb6257b414b19 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124008 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>