Commit Graph

5212 Commits

Author SHA1 Message Date
2e3d807ec0 Fix XHP tag
Change-Id: I90f3290ba28baa88d8d60808234a3ed510d81d19
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149596
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-26 12:12:59 +00:00
7062dbc301 tdf#154364 (part) refactor "related topics" for swriter
Change-Id: I49a7c8b7b22ed041d48949e63103ef6cd6aa8a23
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149557
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-25 12:26:06 +00:00
ed90b5c51e tdf#154364 (part) refactor "related topics" for swriter/guide/
Change-Id: I16d60d69f8ab0e5c79079ad54ad58752673082c7
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149544
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-24 14:28:25 +00:00
1cb08818a1 Fix bad link for SUMIF
Change-Id: I8f7bfe2a4427c5465d8bd428fd58510cf90cca57
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149473
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-24 14:27:37 +00:00
3b91921b05 Fix menu path for color bar in Impress
+  PLus refactoring

Change-Id: I4c6fe7d906fb63fa1a2b293ed7f7a161e9548634
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149471
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-24 14:27:22 +00:00
47a4762f1c fix dead link to Modify or Insert Layer
Change-Id: Ib708c5314136143dc6c3b43e1e906b4d7c6d66ed
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149516
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-24 14:26:57 +00:00
742aa91199 tdf#154335 Deprecate layer_new.xhp in favour of insert_layer.xhp
+ refactoring for XML simplification
+ #2 replace layer_new by insert_layer

Change-Id: I12e7bac9da6652d5b3d98e8a4cee0eb40aa9c627
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149474
Tested-by: Jenkins
Reviewed-by: Stéphane Guillou <stephane.guillou@libreoffice.org>
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-24 14:25:58 +00:00
35dca7d7e8 Fix typo
Change-Id: I53670595539d0c34ef6ce21f463cc19cd9c0f5ba
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149352
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-03-23 06:09:42 +00:00
35a7913f20 tdf#139027 Help information for Calc's INDEX() function
Change-Id: I23b4b923329ba6d2783d4a2f02d9e02d3786f708
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149179
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-22 18:17:33 +00:00
7222dc792d tdf#147469 remove mouse "Positioning" from View options help
Change-Id: I5593ae03960d11aba09d35887fa33692bd278846
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149182
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2023-03-20 19:53:34 +00:00
5ba7b84770 remove extra space
Change-Id: Ief6c4fa6381c15ebca3843d22f083f567ba663e9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149096
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-18 16:40:43 +00:00
1950b38e18 tdf#152605 revise "heading level"; update command names
update command names for Edit Index, N#
    "heading level" -> "index level"
    refactor <h1>,<menuitem>,<relatedtopics>,remove <xml-lang>

Change-Id: I3b4a00366bbfa7108716136ac5004c50aa9813e4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149022
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-18 00:38:27 +00:00
a0ef2acc2d one character is found without plus in regular expression
reported by Kamil Landa

Change-Id: I53f11b8ccd89340d2545e3c26edd8abee8cf5e9a
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149005
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-16 18:33:22 +00:00
4453c0b2ed convert paragraphs with role="heading" & childelements to → h<level>
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-16 15:18:30 +00:00
77cb682cd1 convert plain paragraphs with role="heading" → h<level>
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-03-16 15:18:10 +00:00
00567a452b convert plain paragraphs with role="heading" → h<level> (localize="false")
done with
perl -CSD -pi -e 'BEGIN {$base = qr/role="heading"|level="(?<level>\d+)"|(?<id>id="[^"]+")|localize="false"/;} s#<paragraph(((\s+($base)){4})|(\s+($base|xml-lang="en-US")){5})>(?<body>[^<]+)</paragraph>#<h$+{level} $+{id} localize="false">$+{body}</h$+{level}>#g'

Change-Id: I5d2b1b6326801adb8d000b3353d314d2fc9f322d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148796
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-16 15:17:52 +00:00
142696bd75 tdf#153560 adjust heading levels for "Up to level" and "Offset"
One content change: A correction to the description of the
   "Heading" type. Other changes are neutral in relation to translation.
   * The options in the "Format" section are part of that section, so
     they should be one level down (h2->h3) in the hierarchy.
   - remove <xml-lang>

Change-Id: I1ee11c3e8c726c2a3ae2985456be40abc75813b8
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148962
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-16 09:55:55 +00:00
4be597da53 tdf#82254 - Add UTF-8 BOM (Token 14) to CSV filter parameters
Change-Id: I085e66ca6b46955110a4eaab7118c4a376f16b40
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148871
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2023-03-15 10:18:53 +00:00
87ab9fc48e tdf#153890 "apply to all similar texts" -> "apply to all other occurrences"
plus remove <xml-lang>

Change-Id: Id2a01e490cbae4c7a378d0d7834a0c7edbac97d3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148868
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-15 00:23:52 +00:00
9309d69eab Mute l10n or string.
Change-Id: I1ecfc8a5bf6b64060a92be1a48cd0cf877671236
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148866
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-03-14 20:14:17 +00:00
36f71cb8d2 Related tdf#145332 Fix sentence about TRUNC function
As discussed in the original commit [1] the wording about the TRUNC function was incorrect. This patch fixes the sentence.

[1] 6b1075e1e032be5bb6cba1dbdcc11de2a1824add

Change-Id: Iec86eb4c881dbfbbb3e2020a7aedd6ff59bf0e61
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148767
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-14 14:56:26 +00:00
5e8ed765cc Related: tdf#154167 ERROR.TYPE() list both alias name and Err:... value
Change-Id: Ice9252d0aba19719737d47090f426ee52a0eabc7
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148882
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2023-03-14 14:18:11 +00:00
c3a560d632 Related: tdf#154167 ERROR.TYPE(#NULL) is for Err:521
Change-Id: Id30b59e13feac935fb5307f67bd5a5423b1e9fb0
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148881
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2023-03-14 14:02:18 +00:00
f3a16adcb0 tdf#141474 Incorrect parameter names for Basic functions in help
Skipped items: Mid, MIRR, NPV, Shell:

- MID statement is bugged, TDF#154166 refers, no need to change it yet.
  MID function operates fine
- MIRR and NPV do not support named arguments in VBA despite MS documentation.
  No need to update those pages
- Shell keyword arguments are correct

Change-Id: I09dcc280edeec158eafaf87286966c36447ff71b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148316
Tested-by: Jenkins
Reviewed-by: Alain Romedenne <alain.romedenne@libreoffice.org>
2023-03-13 17:49:09 +00:00
b119b55661 tdf#153560 (tdf#153748) update "up to level"
need to indicate that the option selects the header.
    correction to left/right arrow icons for tdf#153748
    Problem arose because commit
    59b602dcdb445116dde3e50dce45974eec0e043b removed the
    relevant information from links.txt
    refactor <relatedtopics>, remove <xml-lang>

Change-Id: I0462c55ff54777b4b4b3af9a0c6de53634aabc2d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148762
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-13 15:17:40 +00:00
8d23e853b5 tdf#153551 correction to "caption" and "category"
+ indicate that category is also mentioned before "caption"
    + indicate that "category" position depends on Caption Option
    * clarification about paragraph style applied to the caption

Change-Id: I85dcccf3dd454ec33480f71cf2a5bd6f9be425b7
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148766
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-13 12:50:21 +00:00
09fd472db2 Fix bad link
Change-Id: I1943382ae49c3085e8619c1b2d99c7be3c76e35f
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148786
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-13 12:37:21 +00:00
5f61c7de68 tdf#154121 Add hidden characters to index
Change-Id: Ibcfc4cc2c2690bb98c60c5b63c4383cc2d636469
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148737
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-13 11:23:38 +00:00
e87fd6170e tdf#153560 corrections to "up to level" and "Format"
* Following decision in tdf#147004, comment 20, the actual rule
    used by "Up to level" is included in the documentation. Also
    needed to modify description, because level is not only
    referring to heading numbers.

  * Simplify "Format" description for type "Heading".

Change-Id: I95a53b58b048a68df11706b5d5641746b5929e26
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148760
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-13 01:43:07 +00:00
4dd6c87841 tdf#153243;tdf#152873 update labels; corrections to "Heading Numbering" section
The main change, for all three files, is to update
  "Numbering by Chapter" section.
       "Numbering by Chapter" -> "Heading Number Before Caption Number",
        (or "With Heading Number" for Variable dialog), and correction
        to explanation.
       "Outline level" -> "Up to level" and correction to explanation
        correction to "Separator"

  shared/optionen/01041100.xhp (AutoCaption)
     + added "Numbering Separator" and explanation
     * corrections to explanations for
        "Add captions automatically...", "Caption", "Separator", and
        "Character Style"
     remove some <xml-lang>

   swriter/01/04060100.xhp (Caption Options)
     * corrections to introductory description
      "Character Style", "Caption order"
     remove some <xml-lang>

   swriter/01/04090005.xhp (Variable)
     refactor <h2>,<tip>, remove some <xml-lang>

Change-Id: Ifd70c13a7f21b8eb23ecf61dd264cc8b314c3d81
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147595
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-12 17:30:19 +00:00
f00818a17a tdf#153561 Untangle the "Format" options
"Format" appears both as a section title and a label with a buddy
   control for the "Heading Info" element. This distinction does not
   appear in the different "entries" help pages.  This patch untangles
   the different embeddings that are used, so that the help pages
   for Entries for each index type will correspond to the dialog for
   that type.  This patch only changes the entries page for
   "Table of Contents" and "Alphabetical Index", where some new sections
   are created. The sections in these two pages are embedded in the
   Entries pages for the other index types. These other pages will be
   updated after the sections in this patch are available for embedding.

Change-Id: I5ed12506666af2ac04009e833b8bef37fff9485e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148754
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-12 17:29:18 +00:00
453215e939 Remove wrong reference to ODFF.
Related to https://gerrit.libreoffice.org/c/help/+/127817

Change-Id: I8a3dd1bcd0481acfdf8e0faa794f8e0214f49b89
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148735
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-12 13:38:47 +00:00
9c97ba522b tdf#153712 "Chapter Info" -> "Heading Info"
updates to change "Chapter Info" to "Heading Info"
   and changes to the dialog for Chapter Info.
   New labels names included, and explanations revised.
   some refactoring to <h3>, remove <xml-lang>

Change-Id: Ief4ebabe83b469576dfcb81f1b639f8219a46a71
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148505
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-11 13:42:35 +00:00
4d9276a7ac tdf#154132 add "Index (user-defined)" as "related topic"
add variable to <h1> for Index (user-defined) and then
    embed as related topic to Index (table of contents).
    Also add variable to <h1> for Index (table of contents),
    along with a (table of contents) identifier.

Change-Id: Ide3fe657093c00d0470dee0f55b67d80a25c9ed9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148696
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-11 12:49:50 +00:00
b6d4faa7e6 TDF#153108 Calc Zoom Help Page
* New help page by Angelle Leger
* Refactoring by ohallot.

Change-Id: I8c0d47414ec257b21d0f0369912147038d440d47
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148530
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-10 15:47:29 +00:00
f9538fa1e9 tdf#153735 changes because outline level Text Body -> "None"
Change-Id: I9e37dc4033133a29862837c46ba1dc7890db559d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148614
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-10 09:21:23 +00:00
4bf58601f8 tdf#153549 more "chapter" to "heading" adjustments
Possibly this is the final patch needed to change
   "Tools - Chapter Numbering" to "Tools - Heading Numbering".
   Also, "chapter" is changed to "heading" where appropriate.
   Where appropriate or necessary, corrections or command
   updates were made.

Change-Id: I00a72a3c09909f2cf0a0ebe1320f5744c4ae4b68
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148506
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-10 02:02:29 +00:00
0affdd2995 tdf#153561 add <widget> to N#
Change-Id: I1d8b36b06741a303b6e4a67e863b531a9b7dc55d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148512
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-10 01:51:06 +00:00
d1b4263237 tdf#153561 adjustments for "Format" because of widget name change
Change-Id: Iaead2cc332a8889f8c174f1ccf84e9cdfbfc154c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148507
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-09 17:46:38 +00:00
6a25d11512 tdf#153561 "Chapter No." -> "Numbering" because of widget name change
also corrections to "Numbering" and "Entry text" descriptions
    refactor <h2>,<h3> and remove <xml-lang>

Change-Id: I19fe8d8ecf74f3526a4d10b18a76ad1da47ad5c3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147370
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-09 16:13:35 +00:00
d399273cdb Update more references to the Extensions dialog
Change-Id: I478df514a784bac03c4acdca935df184accd6b6b
2023-03-09 01:36:24 -06:00
717e288c98 tdf#153637 update "use level..." option label and explanation
correction to description about what appears in Type box when new
   user-defined index is created, and adding link to relevant help page.

   refactor <h1>,<h2>,<h3>,<relatedtopics>

Change-Id: I35ccb871f6da435fac2cdf95f0a47e77baf75476
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148413
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-08 13:25:31 +00:00
82b298d6f3 tdf#154034 remove xml-lang and use lc_ for icon
Change-Id: I368077b40ed9924ed715a43072d064385b7ae5c5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148408
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Tested-by: Jenkins
2023-03-08 02:10:06 +00:00
f205cf1278 tdf#154034 add icons and update procedure
refactor to <h1>,<h2>

Change-Id: I89df34df481a5438bcc90e12534790f2ef78f3ab
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148329
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-07 08:32:40 +00:00
6f339f367d tdf#141474 Incorrect parameter names for Basic functions in help
Remaining pages up to included Join function

Change-Id: Id6aad2fbdf3ace72fdaa33136fc71a6107abeadd
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147986
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-06 12:22:42 +00:00
c76109de27 tdf#153653 general update of Styles correct icon for Assign command
* simplifications and corrections in the existing descriptions
   * add icon table for Assign icon 
   * refactor <h1>,<h2>,<h3>
   * rename German ID

Change-Id: Iabedafe2b73e9540dda22464b504e953efee4388
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147115
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-03-06 09:04:46 +00:00
ad78ad1596 Impress: Rework of help files /02/ 15
Change-Id: I90becc99c5a5f6563faaa198c538105554e67c12
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147652
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-05 21:50:57 +00:00
4febb20b98 Impress: Rework of help files /02/ 13
Change-Id: I0988c4cde3642c56b1ad56ef917886ed33547ef4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147650
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-05 21:21:50 +00:00
aeedc1df41 Impress: Rework of help files /02/ 12
Change-Id: Iba48d2a069ee7a3d491316f5f3fe1d12797c46e3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147649
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-05 21:12:10 +00:00
cac1b0946e tdf#153940 New Help page for Firebird external connection
* New help page by Juan C. Sanz
* Connection Help pages refactoring by ohallot.

Change-Id: I344644473985df809d2bc31be42b8a21467771f9
Signed-off-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148203
Tested-by: Jenkins
2023-03-05 11:44:08 +00:00