Age | Commit message (Collapse) | Author |
|
Change-Id: Iddf366cb873ae1c64f01bce5cc00ad525836dc99
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/159342
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
|
|
+ several updates and refactoring
Change-Id: I218204d3c37def5acfc89a5eb5b36a19ed3b38be
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/151484
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
+ PLus refactoring
Change-Id: I4c6fe7d906fb63fa1a2b293ed7f7a161e9548634
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/149471
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Change-Id: I1f3ff833ddf2e25b8cfc703c341c77119f72490c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147646
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
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>
|
|
Change-Id: I3dc05a302194a7eff7e0776776c309afabbc731f
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124108
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Change-Id: I59cec2f60abf1251edfc865932ace953008c57d4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124107
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Change-Id: I089cc8cbcab86673c3457e61c22ff09cde463eda
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/118840
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
|
|
Change-Id: If97b222eee329168eff20fc571b729de41685ff0
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/118791
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Change-Id: I49249de9ae0872ca2d523b11716c0a8e4cf9de39
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/85860
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Change-Id: I19c74d02a138299bad88b5e9d7c01a101c381717
Reviewed-on: https://gerrit.libreoffice.org/85390
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
Also remove a few obsolete bookmarks and fix ahelps
Duplicates found with:
for i in $(find source/text/simpress -name "*xhp") ; do grep branch=\"hid/.uno: "$i" | cut -d ":" -f2 | cut -d \" -f 1 | uniq -c | grep -v "1 " ; if [ $? -eq 0 ] ; then echo "Above HID branches are redundant in: $i" ; fi done
Change-Id: Id8811f2f1ecee89ddc9b86b57ef6b04e40b25d28
Reviewed-on: https://gerrit.libreoffice.org/74657
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
|
|
also remove obsolete l10n attribute (doesn't affect translations/pot)
Change-Id: I809866ea7b16cb1cacad9efacb6fdeebae38ea9f
|
|
|
|
Change-Id: Ib1dee95fc5b9cfbfe5a731ea749b8db6c34ba875
|
|
Add localize="false" to xml components which
not include translatable string to make helpex
work less with them.
Change-Id: I20fe79b5a506fafaa6fd90bd62f12117af0bb3b6
|
|
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.
|
|
Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc
|