12 Commits

Author SHA1 Message Date
37c3a04916 tdf#156580: CreateUnoService is spelled differently in help
Change-Id: I98728e1215a716f9e35080e819956d0801922284
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155234
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-08-02 17:22:53 +02: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
f5f8ee67bc do not localize UNO service names
Change-Id: I8e2452bd5bdacfd34fe93ed87da43c5e18ac279b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130200
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-02-19 23:13:17 +01:00
2e2c9a736a Typo
Change-Id: Ic52b4fdd51e17ac5a55f18257d19e70d4ba7efac
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/127964
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-01-06 15:18:46 +01:00
b468590884 Calling Calc Add-in function for Dates and Pricing
Inform respective UNO services

Change-Id: I97f6b3a957f398074213239da79564f310e2db82
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128028
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-01-06 11:32:39 +01:00
54e30f4bb1 Fix typos
Change-Id: I23fad13f1010360c5129358b929c4cabeab89f40
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/123049
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2021-10-04 16:46:05 +02:00
4e6211e98f tdf#54854 Using Calc Functions in macros
Add examples:

* Assign internal Calc function to cell formulas
* Assignd Add-In function to cell formulas.

Change-Id: Ide07357a2407a4f647950c0250522d17e42e563d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/122654
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-09-28 02:16:55 +02:00
ebe05a0be7 extra bookmark in help
Change-Id: I0f78b497a2f8921b75a73570e2799948997b48a3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/122113
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2021-09-15 12:44:23 +02:00
7d17a5cad3 tdf#143585 Improve example on calling Calc functions in macros
Originally the example shown in "calc_functions.xhp" was embbeded from "03131600.xhp". So in this patch I created a brand new example in "03131600.xhp" and improved the example in "calc_functions.xhp".

Change-Id: I758a0e5dec3e66f924415970711dfa9044396026
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121060
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-08-31 18:07:54 +02:00
659dba3909 Capitalize funciton name
Change-Id: I48c456ecdd591b84315f95b15013d708e6028cb4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/97641
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2020-07-01 17:20:45 +02:00
93dc606124 mute l10n in some lines of Basic
Change-Id: Ibdf0ffcf32e47174c3572d95e9afeaa366a109d9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/97640
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2020-07-01 17:12:40 +02:00
7af288d0fa tdf#134032 Calling Calc function from basic
Change-Id: I7c3c64e0df4d89b46e49afb869f3e2de0825a6e2
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/96485
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2020-06-17 13:38:36 +02:00