summaryrefslogtreecommitdiff
path: root/source/text/smath
AgeCommit message (Collapse)Author
2024-01-22tdf#159111 add .uno:PickList to HelpOlivier Hallot
+ File menu command is now .uno:PickList and not .uno:FileMenu anymore + .uno:PickList is common to all modules + Refactor file menu into one Help page, with module switch + Adjust tree + remove old file menus help page main0101.xhp Change-Id: I7fc9d07fdcca1d4a3062e656f81a0bafd6bafa44 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/162415 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-10-29tdf#155876 UI cmds Calc-View Zoom menu (10)Olivier Hallot
+ refactoring + WIP wrt Zoom Change-Id: Iaecb1a48fb32312f98376b32763b9dbe72e53814 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/158621 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-07-21tdf#149888 Create HID target for Math's main help pageRafael Lima
This patch creates the target STARMATH_HID_SMA_MAIN_HELP for the main help page of the Math module, which is necessary for a related patch that redirects F1 in the initial window state for the main help page. Change-Id: Ic0a12fc036769355c708e326abd41e607ed06ff0 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/154692 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-05-28tdf#154996 Add tabbed UI commands in Help pageOlivier Hallot
+ refactoring Change-Id: I9fc6a419fbe838015dd991716b5dea682b99dbaf Reviewed-on: https://gerrit.libreoffice.org/c/help/+/152362 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-05-20Comesmetic change for better user experienceOlivier Hallot
Change-Id: Ib7e442356c4e8f0deb796a009994da9785cc65e2 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/152032 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-03-26tdf#154364 (part) refactor "related topics" for smathOlivier Hallot
+ refactor Change-Id: I7528998a4a1254b4c0af0092dfd73db896422a18 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149619 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>
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-12tdf#152011 Change "open" to "create" for a new documentBogdan B
Change-Id: If5e5476465baa225a54448a6bccfebef30fd3f05 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/142624 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-07-19Fundamental confusion: *“Beware that” → “Be aware that”Adolfo Jayme Barrientos
Change-Id: I7f6b830a87bbdf2380c32d515554cb9836b50848 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/137211 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-06-17Mute l10nOlivier Hallot
Change-Id: Ie3f063c53f424293da59e85e4a34334f37d4324c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136021 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-06-14(related) tdf#149018: "Object"-> "OLE Object" for Insert and Edit menusSeth Chaiklin
tdf#149018 changed "Object" to "Ole Object" in the Insert menu and the Edit menu. This patch updates the relevant command sequences, and uses <menuitem> on changed sequences. Also updates the help pages for OLE Objects, including refactoring to <h1>,<h2>, adding variables or sections for embedding, and changing some items to embeds. Change-Id: I6931305d3576458f3f0dbec59a4ecbe00cdcf68a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/135009 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-04-07Remove a GermanismAdolfo Jayme Barrientos
Change-Id: I92f009369c2081c5085e07651948c0085aecfeef
2022-02-05More smath refactorOlivier Hallot
Change-Id: I3315edb41319e262b883dc77d149cfe1b21a86c5 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129527 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-05More smath refactoringOlivier Hallot
Change-Id: I5a293454a9c4381a84ebe2c96d0d2ee7314ed8aa Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129525 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-05Refactor smath help filesOlivier Hallot
Change-Id: I85ef1e1b012a0d287faf9e3ae43e59a09796583b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129523 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-01-13Enable translation for stringsRafael Lima
Change-Id: I9092595635af48a92c1c3df35effb58a41924aac Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128336 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-01-12Fix typo in a color nameAndrea Gelmini
Change-Id: I66c777c3b9a6ae88422d71aab781ab20879d72fe Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128320 Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-01-12tdf#138418 Document color command in MathRafael Lima
Change-Id: I0220cfbb50af4167155578f778c7845476db9120 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128240 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ib27c07414f07f4e642b664cb14f75f9a4fee9c46 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121679 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I85a6d6242be12af6c06664cc4ddb45e8c9864da4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121680 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I7552e248032e18bc615679acabed6a242c84dd6e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121677 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: Id6481f217b036d44b41baad6877229dd37c4fbc1 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121678 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I6b24d80ada49c47ef139f0c2d1d4a9722bbb9b23 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121675 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I76ea3b83b23d633cfbceabf0ff007838b63a221d Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121676 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I96184ead3dc22000ed5175c7a127a0907a44cc76 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121673 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I6e3dff6c566a3dab07905b4418caeb34e693bcce Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121674 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: I3667a035e0df4a4cc1ef58da2e6be3644b1bbbc0 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121671 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-06tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ic0e18058ba2c0ba12f7af8f278db8de919c0177c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121672 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I892369ba6b5ac07ae41482fe13f9afe5429c344a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121196 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ibbbfc3ab223813d7969479b4bbb93c3babe6bb30 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121195 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I76cd1df3e39174473e879d1f5a8d75197378223a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121203 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I6f32f77b35033091e2a5b5a1d41a5897dd28d9b4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121202 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I9c70666cb5e40718b3bc900065c3d5e865788f52 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121201 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ia6a561687ebb55b01b3207b1b3091056046b0af9 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121200 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I570647236735f9e854a9e3c44af04bd943109e6a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121199 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ib2f36827f9081afd41259c74a4e3c5183a83cede Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121198 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: I803cbd94433b0002ded6c622164e4d57e3b405d7 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121197 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ib7fb870050c9b7f3ac4cbb27c4c00213fb0e8ded Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121194 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-19tdf#132643 Translate German section IDsJohnny_M
Change-Id: I428adb56cf10454a2737d7ce75b81fe143acdd9a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120508 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ia985134bc5f4176d268789cb2d47c5aae3173c4c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120507 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: I8f35262705de1b4b36d8f08bbfa7a211021f1437 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120506 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: I9074ed3ca9433a7c54112ec9d81074d78ead1c8a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120505 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: I14799211a08b8483c7ce2c54de7627442dc306be Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120504 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ia0359785a6c5931fc30db213da9be0afe7342c82 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120503 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: Ic691f25163c2d877ab8caf950e6ae4173ced9fc5 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120501 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: Icd6db13fa8cf01304662535802ad938ff9e3fc77 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120502 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: If8cd5ef6b3e80661b495173f8307b5fa8af6a8ce Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120500 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-17tdf#132643 Translate German section IDsJohnny_M
Change-Id: I8ad927aaf3e1a677ce8ef2ae5133ec471a9be48f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/120499 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>