summaryrefslogtreecommitdiffstats
path: root/source/text/swriter/main0220.xhp
Commit message (Collapse)AuthorAgeFilesLines
* tdf#156332 Fix HID in View - Toolbars (Writer)Rafael Lima2023-08-021-0/+1
| | | | | | | | | | | | | 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>
* convert paragraphs with role="heading" & childelements to → h<level>Christian Lohmaier2023-03-161-6/+6
| | | | | | | | | | | | | | | | | | | 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>
* tdf#152323 drop name attribute from <link> elementsIlmari Lauhakangas2022-12-071-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* tdf#132643 Translate German section IDsJohnny_M2021-11-161-1/+1
| | | | | | | Change-Id: Ifd576cabd0d11d5bad40e6ef31073b4100e7591e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125163 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-07-051-1/+1
| | | | | | | Change-Id: Ia6765abde226b958db7b17a50abf286545e86c87 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/118349 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-07-051-1/+1
| | | | | | | Change-Id: I47ac902ced473a37f1787484101d9f881ddb9228 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/118350 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-06-261-1/+1
| | | | | | | Change-Id: I6ba60bbca897161bdb4ceb7d92385421a2a94e24 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/117931 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-06-261-1/+1
| | | | | | | Change-Id: I49a890ae317345730f14a848e4f2880f7ed4c4f4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/117930 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-03-281-1/+1
| | | | | | | Change-Id: I8758d24032b11c1353ff5ea92a7654997d0e6ca5 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/113191 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-03-191-2/+2
| | | | | | | Change-Id: I4b5d5585415fac4128101128270869b0dd20f3ce Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112707 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-03-131-2/+2
| | | | | | | Change-Id: I8e6b0831db34a3d89dee225ff3309c132b39d755 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112447 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-03-131-2/+2
| | | | | | | Change-Id: I87a2b141a93278539d0d8fff51769716d6bbecc4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112438 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-03-081-2/+2
| | | | | | | Change-Id: I46c4c61f93fb639abcd7d851ab502a239acad38f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112061 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-01-251-2/+2
| | | | | | | Change-Id: I73f081ee1584583a46f5ac2eb02be7e64e779e12 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/109857 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2021-01-161-2/+2
| | | | | | | Change-Id: I50abb30e9ce171c54767f78535dda3a577414522 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/109432 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2020-11-091-2/+2
| | | | | | | Change-Id: Id742ad4c9850a88d6d8d1925e2d0088f76ec8717 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/105108 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2020-10-291-2/+2
| | | | | | | Change-Id: I453659d2f1edbb4bf7cac1f316a88a6942ffdc5e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/105003 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2020-10-031-2/+2
| | | | | | | Change-Id: I8f0750d908edeb34f7d2b96ee251d73ce7cee042 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/103898 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#132643 Translate German section IDsJohnny_M2020-09-261-2/+2
| | | | | | | Change-Id: Iaec59772e78095a10c4c28e246e77c0469723cbc Reviewed-on: https://gerrit.libreoffice.org/c/help/+/103480 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* tdf#124198 Impress & Draw ImageMap menu entry was moved to ToolsIlmari Lauhakangas2019-04-271-1/+1
| | | | | | | | | | | | | | | | Also renamed the file describing Edit Menu to edit_menu.xhp. Most of the files are touched to update the links due to rename. There is no context menu entry for ImageMap, so removed mention of it. Note that in Writer and Calc, ImageMap remains under Edit, because it is only enabled when an image is selected. Change-Id: Ic57ee11dd2ab9c637f00e5328f1575c323fb8c43 Reviewed-on: https://gerrit.libreoffice.org/71397 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
* remove obsolete oldref attribute (removes one context line in pot)Christian Lohmaier2017-05-091-8/+8
| | | | | | also remove obsolete l10n attribute (doesn't affect translations/pot) Change-Id: I809866ea7b16cb1cacad9efacb6fdeebae38ea9f
* The 'lastedited' element is useless, we have git.Jan Holesovsky2015-11-121-1/+0
|
* re-base on ALv2 code. Includes:Michael Meeks2012-12-131-23/+14
| | | | | | | | | | | | | | | | | | | | | | | | Patch contributed by Oliver Rainer-Wittmann i#118572 - remove ui string and help content regarding usage of Java Mail in Writer's Mail Merge as Java Mail is not used. http://svn.apache.org/viewvc?view=revision&revision=1197035 Patches contributed by Herbert Duerr updated help text for regexp word boundaries http://svn.apache.org/viewvc?view=revision&revision=1228026 improved help text for word boundary regexp expression \b http://svn.apache.org/viewvc?view=revision&revision=1234738 Patches contributed by Jurgen Schmidt remove onlineregistration with dependencies http://svn.apache.org/viewvc?view=revision&revision=1240245 Patch contributed by Regina Henschel Extended tips for corner and cap style http://svn.apache.org/viewvc?view=revision&revision=1242287 * re-enable on-line update help, remove obsolete on-line purchasing.
* move help structure one directory upNorbert Thiebaud2012-10-161-0/+87
Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc