Commit Graph

11 Commits

Author SHA1 Message Date
e3b49a858d Typo grab bag
Change-Id: I705b56ac8fd84227aaa6a81e57d182dfd797bd62
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145183
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-01-09 00:53:36 +00:00
7e42394ecb tdf#152323 drop name attribute from <link> elements
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-12-07 17:39:02 +00:00
1e721d1ea8 Update Calc Tools menu with Forms submenu
Change-Id: I5524b4ba2674167a162133b9ff99677f2f59cfc3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/131607
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-03-15 17:07:41 +01:00
63ad3a0819 Update Calc Insert menu
Many refactors and updates as consequence

Change-Id: I931aed4a2659b7bbf3622dd33a83b2596ae6f32e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/85814
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2019-12-25 20:48:02 +01:00
7670e91fc5 Misc. typo fixing and removal of pointless tags
Change-Id: I7ecffd0417b7e88b76f44e64911c3d8a2f935104
2019-11-07 04:34:43 -06:00
381a89b6b2 Reword help page on set image background
Change-Id: Iaf7ccb576a8881aa7b4eb42819a78b51b884ca4c
Reviewed-on: https://gerrit.libreoffice.org/78376
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2019-09-02 12:48:43 +02:00
389745cd7c Reword sentence on save background image
Change-Id: I381d8394b5c58851b5eaf59223a98994494dfb40
Reviewed-on: https://gerrit.libreoffice.org/78375
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2019-09-02 12:48:09 +02:00
6570689918 Update Draw menus and Contents tree (part)
Change-Id: I556a2cafdd66fc425aa67f821c1a5b676ef22c81
Reviewed-on: https://gerrit.libreoffice.org/77677
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2019-08-19 00:22:14 +02:00
0f8cc79cae replace duplicated "pentagon" by "hexagon"
Change-Id: Ifcd8441f175040dbcb81dfd4d2a62a7c50b8583b
Reviewed-on: https://gerrit.libreoffice.org/25300
Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk>
Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
2016-05-22 23:38:46 +00:00
581ea6ad44 remove empty paragraph
Change-Id: I4395184bc6107020abdabb542690eb2a5fb9b781
2016-03-10 09:38:18 +01:00
17d37456a2 tdf#92825 Rearrange Writer's insert menu
fix merge conflict

Change-Id: I8c67b61fdc6042291890bf80b47d762dd89d76d4
Reviewed-on: https://gerrit.libreoffice.org/22972
Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk>
Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
2016-03-09 21:50:55 +00:00