summaryrefslogtreecommitdiff
path: root/source/text/simpress/04
AgeCommit message (Collapse)Author
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>
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-07-21(related) tdf#134281 tdf#149351 Update shortcuts descriptionsGabor Kelemen
usable on the Presenter Console and the presentation canvas. Also the one added in c11b6b64f63b3c7f8f8bb0f1857a9c7d8748ba9c Change-Id: I55a392730ca24f92cac1e11e1f3c2ef1771a00d3 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/137240 Tested-by: Jenkins Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
2022-06-29tdf#98404 Document new shortcuts for Move slide commandsGabor Kelemen
Change-Id: Ibc2b560ac6cfe59d501e6a224c0143507c53ea68 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136586 Tested-by: Jenkins Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I1da52c93b90d802b2b5f2ed1c955e24cfaf77230 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121681 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2020-12-29tdf#139286 and tdf#137347 update slide sorting shortcut keys in ImpressSeth Chaiklin
Mapping for Ctrl+Shift+End, Ctrl+Shift+Home, Ctrl+Shift+Arrow Up Ctrl+Shift+Arrow Down were changed in 5.1. This patch gives the correct commands for these keys and moves them to the Slide Sorter, where they apply. Also added "Slide Pane" to the Header, because the shortcut keys apply in both cases. Also some XML cleanup. Appears from LO 7.2. Change-Id: I4429c8eea580b29b901a5c579cda1e0b218dbf88 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/108341 Tested-by: Jenkins Reviewed-by: V, Stuart Foote <vstuart.foote@utsa.edu> Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2020-05-24tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ie9752e22b0ce3688df3bb9731a1056fb19e73ffe Reviewed-on: https://gerrit.libreoffice.org/c/help/+/94752 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2020-03-12tdf#128494 Change Spellcheck to SpellingIlmari Lauhakangas
1098fba99acb8c8cc7e87c55ece12ef175593147 left Help in a broken state. Change-Id: Ie8d8f6506a6634fefce875590fe54fa2e477c82a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/90060 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2018-12-27fix keyboard shortcut for splitting objectsStanislav Horacek
Change-Id: Ib5db66867087f994ab7d423e347a93ba7818e25d Reviewed-on: https://gerrit.libreoffice.org/65640 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2018-10-31tdf#121073 fix Presenter console shorcutsOlivier Hallot
Change-Id: If932427763d8f4c352bd53b7d5a9161293188ad1 Reviewed-on: https://gerrit.libreoffice.org/62691 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2017-12-09Finish help content for Presenter ConsoleOlivier Hallot
Change-Id: I0cb93fde983d7fab5d86a69bb576e84f2eafad77 Reviewed-on: https://gerrit.libreoffice.org/46153 Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2017-08-15tdf#111651 'Styles and Formatting' -> 'Styles'Olivier Hallot
Change-Id: Ic4db58aa04d21c514987cdbeaed5d11292d79b85 Reviewed-on: https://gerrit.libreoffice.org/41103 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2017-05-09remove obsolete oldref attribute (removes one context line in pot)Christian Lohmaier
also remove obsolete l10n attribute (doesn't affect translations/pot) Change-Id: I809866ea7b16cb1cacad9efacb6fdeebae38ea9f
2015-12-18add missing pluses in keyboard shortcutsStanislav Horacek
Change-Id: I02e52789dc66116f5c0ac8623f6e312a2b996d46 Reviewed-on: https://gerrit.libreoffice.org/20550 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-01-04use consistent terms soft/non-breaking hyphenStanislav Horacek
Change-Id: If05edfdf51f07593615e60f94e65b59ec1aab5be Reviewed-on: https://gerrit.libreoffice.org/13625 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-05-25fdo#77282 Replace "Edit Group" with "Enter Group" in Writer as in DrawLaurent Balland-Poirier
Change all occurences of "Edit Group" Adapt text for differences Calc/writer and Impress/Draw Change-Id: I9a226baf2990f9f84038d9baa539c0604692ecf3 Reviewed-on: https://gerrit.libreoffice.org/8944 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-03-28fdo#59893 fix wrong shortcut key descriptionAndras Timar
Change-Id: I142a2e4655f3019815e6d751c19b6b74685fe79c
2013-02-26gbuildize helpcontent2David Tardon
dmake is dead, long live gbuild! Change-Id: I636ea4ed7ee08a748b96973ae076a5e47928d4ca
2012-12-13re-base on ALv2 code. Includes:Michael Meeks
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.
2012-10-16move help structure one directory upNorbert Thiebaud
Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc