This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new 3a73b3123e Remove 'oldref' entries (work in progress)
3a73b3123e is described below

commit 3a73b3123e2b4af4d693d209f057f2174d2c2c1b
Author: mseidel <msei...@apache.org>
AuthorDate: Fri Jan 31 21:37:26 2025 +0100

    Remove 'oldref' entries (work in progress)
    
    (cherry picked from commit 7db71f05c0b4789b61d87f547e431d71d1185031)
---
 .../source/text/sbasic/shared/03020203.xhp         | 64 +++++++++++-----------
 .../source/text/sbasic/shared/03120306.xhp         | 54 +++++++++---------
 .../helpcontent2/source/text/scalc/01/05080300.xhp | 24 ++++----
 .../source/text/shared/01/02230200.xhp             | 20 +++----
 .../source/text/shared/01/04150100.xhp             | 34 ++++++------
 .../text/shared/explorer/database/05030400.xhp     | 28 +++++-----
 .../source/text/shared/optionen/01012000.xhp       | 38 ++++++-------
 .../source/text/simpress/guide/layer_tipps.xhp     | 44 +++++++--------
 .../source/text/swriter/01/04120222.xhp            | 26 ++++-----
 9 files changed, 163 insertions(+), 169 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/03020203.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03020203.xhp
index 1004ee6fac..78dd1e149c 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03020203.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03020203.xhp
@@ -33,39 +33,37 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3153361">
 <bookmark_value>Line Input statement</bookmark_value>
 </bookmark><comment>mw changed index entry</comment>
-<paragraph role="heading" id="hd_id3153361" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03020203.xhp" name="Line 
Input # Statement [Runtime]">Line Input # Statement [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3156280" xml-lang="en-US" l10n="U" 
oldref="2">Reads strings from a sequential file into a variable.</paragraph>
+<paragraph role="heading" id="hd_id3153361" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03020203.xhp" name="Line Input # 
Statement [Runtime]">Line Input # Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3156280" xml-lang="en-US" l10n="U">Reads 
strings from a sequential file into a variable.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3150447" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="code" id="par_id3147229" xml-lang="en-US" l10n="U" 
oldref="4">Line Input #FileNumber As Integer, Var As String</paragraph>
-<paragraph role="heading" id="hd_id3145173" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3161832" xml-lang="en-US" l10n="CHG" 
oldref="6">
-<emph>FileNumber:</emph> Number of the file that contains the data that you 
want to read. The file must have been opened in advance with the Open statement 
using the key word INPUT.</paragraph>
-<paragraph role="paragraph" id="par_id3151119" xml-lang="en-US" l10n="U" 
oldref="7">
-<emph>var:</emph> The name of the variable that stores the result.</paragraph>
-<paragraph role="paragraph" id="par_id3150010" xml-lang="en-US" l10n="U" 
oldref="8">With the <emph>Line Input#</emph> statement, you can read strings 
from an open file into a variable. String variables are read line-by-line up to 
the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not 
included in the resulting string.</paragraph>
-<paragraph role="heading" id="hd_id3163711" xml-lang="en-US" level="2" 
l10n="U" oldref="9">Example:</paragraph>
-<paragraph role="code" id="par_id3145271" xml-lang="en-US" l10n="U" 
oldref="10">Sub ExampleWorkWithAFile</paragraph>
-<paragraph role="code" id="par_id3156444" xml-lang="en-US" l10n="U" 
oldref="11">Dim iNumber As Integer</paragraph>
-<paragraph role="code" id="par_id3147349" xml-lang="en-US" l10n="U" 
oldref="12">Dim sLine As String</paragraph>
-<paragraph role="code" id="par_id3149664" xml-lang="en-US" l10n="U" 
oldref="13">Dim aFile As String</paragraph>
-<paragraph role="code" id="par_id3147436" xml-lang="en-US" l10n="U" 
oldref="36">Dim sMsg as String</paragraph>
-<paragraph role="code" id="par_id3154730" xml-lang="en-US" l10n="U" 
oldref="14">aFile = "c:\data.txt"</paragraph>
-<paragraph role="code" id="par_id3145647" xml-lang="en-US" l10n="U" 
oldref="16">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U" 
oldref="17">Open aFile For Output As #iNumber</paragraph>
-<paragraph role="code" id="par_id3147124" xml-lang="en-US" l10n="U" 
oldref="18">Print #iNumber, "This is a line of text"</paragraph>
-<paragraph role="code" id="par_id3153415" xml-lang="en-US" l10n="U" 
oldref="19">Print #iNumber, "This is another line of text"</paragraph>
-<paragraph role="code" id="par_id3146969" xml-lang="en-US" l10n="U" 
oldref="20">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3154482" xml-lang="en-US" l10n="U" 
oldref="24">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3150321" xml-lang="en-US" l10n="U" 
oldref="25">Open aFile For Input As iNumber</paragraph>
-<paragraph role="code" id="par_id3155443" xml-lang="en-US" l10n="U" 
oldref="26">While not eof(iNumber)</paragraph>
-<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U" 
oldref="27">Line Input #iNumber, sLine</paragraph>
-<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U" 
oldref="28">If sLine &lt;&gt;"" then</paragraph>
-<paragraph role="code" id="par_id3147338" xml-lang="en-US" l10n="U" 
oldref="29">sMsg = sMsg &amp; sLine &amp; chr(13)</paragraph>
-<paragraph role="code" id="par_id3147362" xml-lang="en-US" l10n="U" 
oldref="31">end if</paragraph>
-<paragraph role="code" id="par_id3155333" xml-lang="en-US" l10n="U" 
oldref="32">wend</paragraph>
-<paragraph role="code" id="par_id3153965" xml-lang="en-US" l10n="U" 
oldref="33">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3147345" xml-lang="en-US" l10n="U" 
oldref="37">Msgbox sMsg</paragraph>
-<paragraph role="code" id="par_id3149257" xml-lang="en-US" l10n="U" 
oldref="34">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3150447" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="code" id="par_id3147229" xml-lang="en-US" l10n="U">Line Input 
#FileNumber As Integer, Var As String</paragraph>
+<paragraph role="heading" id="hd_id3145173" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3161832" xml-lang="en-US" 
l10n="CHG"><emph>FileNumber:</emph> Number of the file that contains the data 
that you want to read. The file must have been opened in advance with the Open 
statement using the key word INPUT.</paragraph>
+<paragraph role="paragraph" id="par_id3151119" xml-lang="en-US" 
l10n="U"><emph>var:</emph> The name of the variable that stores the 
result.</paragraph>
+<paragraph role="paragraph" id="par_id3150010" xml-lang="en-US" l10n="U">With 
the <emph>Line Input#</emph> statement, you can read strings from an open file 
into a variable. String variables are read line-by-line up to the first 
carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included 
in the resulting string.</paragraph>
+<paragraph role="heading" id="hd_id3163711" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3145271" xml-lang="en-US" l10n="U">Sub 
ExampleWorkWithAFile</paragraph>
+<paragraph role="code" id="par_id3156444" xml-lang="en-US" l10n="U">Dim 
iNumber As Integer</paragraph>
+<paragraph role="code" id="par_id3147349" xml-lang="en-US" l10n="U">Dim sLine 
As String</paragraph>
+<paragraph role="code" id="par_id3149664" xml-lang="en-US" l10n="U">Dim aFile 
As String</paragraph>
+<paragraph role="code" id="par_id3147436" xml-lang="en-US" l10n="U">Dim sMsg 
as String</paragraph>
+<paragraph role="code" id="par_id3154730" xml-lang="en-US" l10n="U">aFile = 
"c:\data.txt"</paragraph>
+<paragraph role="code" id="par_id3145647" xml-lang="en-US" l10n="U">iNumber = 
Freefile</paragraph>
+<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U">Open aFile 
For Output As #iNumber</paragraph>
+<paragraph role="code" id="par_id3147124" xml-lang="en-US" l10n="U">Print 
#iNumber, "This is a line of text"</paragraph>
+<paragraph role="code" id="par_id3153415" xml-lang="en-US" l10n="U">Print 
#iNumber, "This is another line of text"</paragraph>
+<paragraph role="code" id="par_id3146969" xml-lang="en-US" l10n="U">Close 
#iNumber</paragraph>
+<paragraph role="code" id="par_id3154482" xml-lang="en-US" l10n="U">iNumber = 
Freefile</paragraph>
+<paragraph role="code" id="par_id3150321" xml-lang="en-US" l10n="U">Open aFile 
For Input As iNumber</paragraph>
+<paragraph role="code" id="par_id3155443" xml-lang="en-US" l10n="U">While not 
eof(iNumber)</paragraph>
+<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U">Line Input 
#iNumber, sLine</paragraph>
+<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U">If sLine 
&lt;&gt;"" then</paragraph>
+<paragraph role="code" id="par_id3147338" xml-lang="en-US" l10n="U">sMsg = 
sMsg &amp; sLine &amp; chr(13)</paragraph>
+<paragraph role="code" id="par_id3147362" xml-lang="en-US" l10n="U">end 
if</paragraph>
+<paragraph role="code" id="par_id3155333" xml-lang="en-US" 
l10n="U">wend</paragraph>
+<paragraph role="code" id="par_id3153965" xml-lang="en-US" l10n="U">Close 
#iNumber</paragraph>
+<paragraph role="code" id="par_id3147345" xml-lang="en-US" l10n="U">Msgbox 
sMsg</paragraph>
+<paragraph role="code" id="par_id3149257" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03120306.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03120306.xhp
index 7f66473e4d..ea399ba8b0 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03120306.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03120306.xhp
@@ -34,37 +34,33 @@
 <bookmark_value>Mid function</bookmark_value>
 <bookmark_value>Mid statement</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3143268" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03120306.xhp" name="Mid 
Function, Mid Statement [Runtime]">Mid Function, Mid Statement 
[Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3148473" xml-lang="en-US" l10n="U" 
oldref="2">Returns the specified portion of a string expression (<emph>Mid 
function</emph>), or replaces the portion of a string expression with another 
string (<emph>Mid statement</emph>).</paragraph>
+<paragraph role="heading" id="hd_id3143268" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03120306.xhp" name="Mid Function, Mid 
Statement [Runtime]">Mid Function, Mid Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3148473" xml-lang="en-US" 
l10n="U">Returns the specified portion of a string expression (<emph>Mid 
function</emph>), or replaces the portion of a string expression with another 
string (<emph>Mid statement</emph>).</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3154285" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3147530" xml-lang="en-US" l10n="CHG" 
oldref="4">Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text 
As String, Start As Long , Length As Long, Text As String)</paragraph>
-<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3149295" xml-lang="en-US" l10n="U" 
oldref="6">String (only by Function)</paragraph>
-<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" l10n="U" 
oldref="8">
-<emph>Text:</emph> Any string expression that you want to modify.</paragraph>
-<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="CHG" 
oldref="9">
-<emph>Start:</emph> Numeric expression that indicates the character position 
within the string where the string portion that you want to replace or to 
return begins. The maximum allowed value is 65535.<comment>UFI: see 
#i17928#</comment></paragraph>
-<paragraph role="paragraph" id="par_id3148451" xml-lang="en-US" l10n="CHG" 
oldref="10">
-<emph>Length:</emph> Numeric expression that returns the number of characters 
that you want to replace or return. The maximum allowed value is 
65535.</paragraph>
-<paragraph role="paragraph" id="par_id3125864" xml-lang="en-US" l10n="U" 
oldref="11">If the Length parameter in the <emph>Mid function</emph> is 
omitted, all characters in the string expression from the start position to the 
end of the string are returned.</paragraph>
-<paragraph role="paragraph" id="par_id3144762" xml-lang="en-US" l10n="U" 
oldref="12">If the Length parameter in the <emph>Mid statement</emph> is less 
than the length of the text that you want to replace, the text is reduced to 
the specified length.</paragraph>
-<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U" 
oldref="13">
-<emph>Text:</emph> The string to replace the string expression (<emph>Mid 
statement</emph>).</paragraph>
+<paragraph role="heading" id="hd_id3154285" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3147530" xml-lang="en-US" l10n="CHG">Mid 
(Text As String, Start As Long [, Length As Long]) or Mid (Text As String, 
Start As Long , Length As Long, Text As String)</paragraph>
+<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="2" 
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3149295" xml-lang="en-US" 
l10n="U">String (only by Function)</paragraph>
+<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" 
l10n="U"><emph>Text:</emph> Any string expression that you want to 
modify.</paragraph>
+<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" 
l10n="CHG"><emph>Start:</emph> Numeric expression that indicates the character 
position within the string where the string portion that you want to replace or 
to return begins. The maximum allowed value is 65535.<comment>UFI: see 
#i17928#</comment></paragraph>
+<paragraph role="paragraph" id="par_id3148451" xml-lang="en-US" 
l10n="CHG"><emph>Length:</emph> Numeric expression that returns the number of 
characters that you want to replace or return. The maximum allowed value is 
65535.</paragraph>
+<paragraph role="paragraph" id="par_id3125864" xml-lang="en-US" l10n="U">If 
the Length parameter in the <emph>Mid function</emph> is omitted, all 
characters in the string expression from the start position to the end of the 
string are returned.</paragraph>
+<paragraph role="paragraph" id="par_id3144762" xml-lang="en-US" l10n="U">If 
the Length parameter in the <emph>Mid statement</emph> is less than the length 
of the text that you want to replace, the text is reduced to the specified 
length.</paragraph>
+<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" 
l10n="U"><emph>Text:</emph> The string to replace the string expression 
(<emph>Mid statement</emph>).</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3149560" xml-lang="en-US" level="2" 
l10n="U" oldref="14">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3150439" xml-lang="en-US" l10n="U" 
oldref="15">Sub ExampleUSDate</paragraph>
-<paragraph role="paragraph" id="par_id3147349" xml-lang="en-US" l10n="U" 
oldref="16">Dim sInput As String</paragraph>
-<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U" 
oldref="17">Dim sUS_date As String</paragraph>
-<paragraph role="paragraph" id="par_id3153189" xml-lang="en-US" l10n="U" 
oldref="18">sInput = InputBox("Please input a date in the international format 
'YYYY-MM-DD'")</paragraph>
-<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U" 
oldref="19">sUS_date = Mid(sInput, 6, 2)</paragraph>
-<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U" 
oldref="20">sUS_date = sUS_date &amp; "/"</paragraph>
-<paragraph role="paragraph" id="par_id3153364" xml-lang="en-US" l10n="U" 
oldref="21">sUS_date = sUS_date &amp; Right(sInput, 2)</paragraph>
-<paragraph role="paragraph" id="par_id3146975" xml-lang="en-US" l10n="U" 
oldref="22">sUS_date = sUS_date &amp; "/"</paragraph>
-<paragraph role="paragraph" id="par_id3149665" xml-lang="en-US" l10n="U" 
oldref="23">sUS_date = sUS_date &amp; Left(sInput, 4)</paragraph>
-<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U" 
oldref="24">MsgBox sUS_date</paragraph>
-<paragraph role="paragraph" id="par_id3148618" xml-lang="en-US" l10n="U" 
oldref="25">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3149560" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3150439" xml-lang="en-US" l10n="U">Sub 
ExampleUSDate</paragraph>
+<paragraph role="paragraph" id="par_id3147349" xml-lang="en-US" l10n="U">Dim 
sInput As String</paragraph>
+<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U">Dim 
sUS_date As String</paragraph>
+<paragraph role="paragraph" id="par_id3153189" xml-lang="en-US" 
l10n="U">sInput = InputBox("Please input a date in the international format 
'YYYY-MM-DD'")</paragraph>
+<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" 
l10n="U">sUS_date = Mid(sInput, 6, 2)</paragraph>
+<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" 
l10n="U">sUS_date = sUS_date &amp; "/"</paragraph>
+<paragraph role="paragraph" id="par_id3153364" xml-lang="en-US" 
l10n="U">sUS_date = sUS_date &amp; Right(sInput, 2)</paragraph>
+<paragraph role="paragraph" id="par_id3146975" xml-lang="en-US" 
l10n="U">sUS_date = sUS_date &amp; "/"</paragraph>
+<paragraph role="paragraph" id="par_id3149665" xml-lang="en-US" 
l10n="U">sUS_date = sUS_date &amp; Left(sInput, 4)</paragraph>
+<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" 
l10n="U">MsgBox sUS_date</paragraph>
+<paragraph role="paragraph" id="par_id3148618" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/01/05080300.xhp 
b/main/helpcontent2/source/text/scalc/01/05080300.xhp
index b6a26e6096..01100879a1 100644
--- a/main/helpcontent2/source/text/scalc/01/05080300.xhp
+++ b/main/helpcontent2/source/text/scalc/01/05080300.xhp
@@ -31,8 +31,8 @@
 <body>
 <bookmark xml-lang="en-US" branch="hid/.uno:EditPrintArea" id="bm_id2248794" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:EditPrintArea" id="bm_id3145673" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153088" xml-lang="en-US" level="1" 
l10n="U" oldref="1">Edit Print Ranges</paragraph>
-<paragraph role="paragraph" id="par_id3159488" xml-lang="en-US" l10n="U" 
oldref="2"><variable id="druckbereichetext"><ahelp 
hid=".uno:EditPrintArea">Opens a dialog where you can specify the print 
range.</ahelp>
+<paragraph role="heading" id="hd_id3153088" xml-lang="en-US" level="1" 
l10n="U">Edit Print Ranges</paragraph>
+<paragraph role="paragraph" id="par_id3159488" xml-lang="en-US" 
l10n="U"><variable id="druckbereichetext"><ahelp hid=".uno:EditPrintArea">Opens 
a dialog where you can specify the print range.</ahelp>
 </variable> You can also set the rows or columns which are to be repeated in 
every page.</paragraph>
 <section id="howtoget">
 <embed href="text/scalc/00/00000405.xhp#fodbbe"/>
@@ -43,22 +43,22 @@
 </paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sc:ListBox:RID_SCDLG_AREAS:LB_PRINTAREA" id="bm_id3154910" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:Edit:RID_SCDLG_AREAS:ED_PRINTAREA" 
id="bm_id3150447" localize="false"/>
-<paragraph role="heading" id="hd_id3156281" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Print range</paragraph>
-<paragraph role="paragraph" id="par_id3147228" xml-lang="en-US" l10n="U" 
oldref="4"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA">Allows you to 
modify a defined print range.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3145174" xml-lang="en-US" l10n="CHG" 
oldref="5">Select <emph>-none-</emph> to remove a print range definition for 
the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current 
sheet as a print range. Select <emph>-selection-</emph> to define the selected 
area of a spreadsheet as the print range. By selecting 
<emph>-user-defined-</emph>, you can define a print range that you have already 
defined using the <emph>Format - Print Ranges - [...]
-<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="U" 
oldref="6">In the right-hand text box, you can enter a print range by reference 
or by name. If the cursor is in the <emph>Print range</emph> text box, you can 
also select the print range in the spreadsheet with your mouse.</paragraph>
+<paragraph role="heading" id="hd_id3156281" xml-lang="en-US" level="2" 
l10n="U">Print range</paragraph>
+<paragraph role="paragraph" id="par_id3147228" xml-lang="en-US" 
l10n="U"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA">Allows you to modify 
a defined print range.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3145174" xml-lang="en-US" 
l10n="CHG">Select <emph>-none-</emph> to remove a print range definition for 
the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current 
sheet as a print range. Select <emph>-selection-</emph> to define the selected 
area of a spreadsheet as the print range. By selecting 
<emph>-user-defined-</emph>, you can define a print range that you have already 
defined using the <emph>Format - Print Ranges - Define</em [...]
+<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="U">In 
the right-hand text box, you can enter a print range by reference or by name. 
If the cursor is in the <emph>Print range</emph> text box, you can also select 
the print range in the spreadsheet with your mouse.</paragraph>
 <embed href="text/shared/00/00000001.xhp#eingabesymbol"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:ListBox:RID_SCDLG_AREAS:LB_REPEATROW" id="bm_id3147435" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:Edit:RID_SCDLG_AREAS:ED_REPEATROW" 
id="bm_id3153190" localize="false"/>
-<paragraph role="heading" id="hd_id3149260" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Rows to repeat</paragraph>
-<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW">Choose one or more 
rows to print on every page. In the right text box enter the row reference, for 
example, "1" or "$1" or "$2:$3".</ahelp> The list box displays <emph>-user 
defined-</emph>. You can also select <emph>-none-</emph> to remove a defined 
repeating row.</paragraph>
-<paragraph role="paragraph" id="par_id3155418" xml-lang="en-US" l10n="U" 
oldref="9">You can also define repeating rows by dragging the mouse in the 
spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in 
the dialog.</paragraph>
+<paragraph role="heading" id="hd_id3149260" xml-lang="en-US" level="2" 
l10n="U">Rows to repeat</paragraph>
+<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" 
l10n="U"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW">Choose one or more 
rows to print on every page. In the right text box enter the row reference, for 
example, "1" or "$1" or "$2:$3".</ahelp> The list box displays <emph>-user 
defined-</emph>. You can also select <emph>-none-</emph> to remove a defined 
repeating row.</paragraph>
+<paragraph role="paragraph" id="par_id3155418" xml-lang="en-US" l10n="U">You 
can also define repeating rows by dragging the mouse in the spreadsheet, if the 
cursor is in the <emph>Rows to repeat</emph> text field in the 
dialog.</paragraph>
 <embed href="text/shared/00/00000001.xhp#eingabesymbol"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:ListBox:RID_SCDLG_AREAS:LB_REPEATCOL" id="bm_id3153876" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:Edit:RID_SCDLG_AREAS:ED_REPEATCOL" 
id="bm_id3147396" localize="false"/>
-<paragraph role="heading" id="hd_id3149581" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Columns to repeat</paragraph>
-<paragraph role="paragraph" id="par_id3155602" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL">Choose one or 
more columns to print on every page. In the right text box enter the column 
reference, for example, "A" or "AB" or "$C:$E".</ahelp> The list box then 
displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> 
to remove a defined repeating column.</paragraph>
-<paragraph role="paragraph" id="par_id3150749" xml-lang="en-US" l10n="U" 
oldref="12">You can also define repeating columns by dragging the mouse in the 
spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field 
in the dialog.</paragraph>
+<paragraph role="heading" id="hd_id3149581" xml-lang="en-US" level="2" 
l10n="U">Columns to repeat</paragraph>
+<paragraph role="paragraph" id="par_id3155602" xml-lang="en-US" 
l10n="U"><ahelp hid="SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL">Choose one or more 
columns to print on every page. In the right text box enter the column 
reference, for example, "A" or "AB" or "$C:$E".</ahelp> The list box then 
displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> 
to remove a defined repeating column.</paragraph>
+<paragraph role="paragraph" id="par_id3150749" xml-lang="en-US" l10n="U">You 
can also define repeating columns by dragging the mouse in the spreadsheet, if 
the cursor is in the <emph>Columns to repeat</emph> text field in the 
dialog.</paragraph>
 <embed href="text/shared/00/00000001.xhp#eingabesymbol"/>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/02230200.xhp 
b/main/helpcontent2/source/text/shared/01/02230200.xhp
index 6a6a0b2a9b..5bf63020df 100644
--- a/main/helpcontent2/source/text/shared/01/02230200.xhp
+++ b/main/helpcontent2/source/text/shared/01/02230200.xhp
@@ -38,29 +38,29 @@
 <bookmark xml-lang="en-US" branch="hid/.uno:ShowTrackedChanges" 
id="bm_id3154349" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:ShowChanges" id="bm_id3459113" 
localize="false"/><!-- HID added by script -->
 <bookmark xml-lang="en-US" branch="hid/.uno:ShowChanges" id="bm_id3147240" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149988" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/01/02230200.xhp" name="Show 
Changes">Show Changes</link></paragraph>
-<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" l10n="U" 
oldref="2"><variable id="text"><ahelp hid=".uno:ShowChanges">Shows or hides 
recorded changes.</ahelp>
+<paragraph role="heading" id="hd_id3149988" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/02230200.xhp" name="Show Changes">Show 
Changes</link></paragraph>
+<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" 
l10n="U"><variable id="text"><ahelp hid=".uno:ShowChanges">Shows or hides 
recorded changes.</ahelp>
 </variable></paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000402.xhp#anzeigen"/>
 </section>
-<paragraph role="paragraph" id="par_id3152425" xml-lang="en-US" l10n="U" 
oldref="7">You can change the display properties of the markup elements by 
choosing <switchinline select="appl"><caseinline select="WRITER"><link 
href="text/shared/optionen/01060600.xhp" name="Writer - 
Changes"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options 
dialog box.</caseinline></switchinline><switchinline select="appl"><caseinline 
select="CALC"><link href="text/shared/optionen/01060600.xhp" nam [...]
-<paragraph role="paragraph" id="par_id3155356" xml-lang="en-US" l10n="U" 
oldref="6">When you rest the mouse pointer over a change markup in the 
document, a <emph>Tip</emph> displays the author and the date and time that the 
change was made.<switchinline select="appl"><caseinline select="CALC"> If the 
<emph>Extended Tips</emph> are activated, the type of change and any attached 
comments are also displayed.</caseinline></switchinline></paragraph>
+<paragraph role="paragraph" id="par_id3152425" xml-lang="en-US" l10n="U">You 
can change the display properties of the markup elements by choosing 
<switchinline select="appl"><caseinline select="WRITER"><link 
href="text/shared/optionen/01060600.xhp" name="Writer - 
Changes"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options 
dialog box.</caseinline></switchinline><switchinline select="appl"><caseinline 
select="CALC"><link href="text/shared/optionen/01060600.xhp" name="Calc - C 
[...]
+<paragraph role="paragraph" id="par_id3155356" xml-lang="en-US" l10n="U">When 
you rest the mouse pointer over a change markup in the document, a 
<emph>Tip</emph> displays the author and the date and time that the change was 
made.<switchinline select="appl"><caseinline select="CALC"> If the 
<emph>Extended Tips</emph> are activated, the type of change and any attached 
comments are also displayed.</caseinline></switchinline></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT" 
id="bm_id3152551" localize="false"/>
-<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="2" 
l10n="U" oldref="8"><switchinline select="appl"><caseinline select="CALC">Show 
changes in spreadsheet</caseinline></switchinline></paragraph>
-<paragraph role="paragraph" id="par_id3149150" xml-lang="en-US" l10n="U" 
oldref="9"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT">Shows or hides 
recorded changes.</ahelp></caseinline></switchinline></paragraph>
+<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="2" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Show changes in 
spreadsheet</caseinline></switchinline></paragraph>
+<paragraph role="paragraph" id="par_id3149150" xml-lang="en-US" 
l10n="U"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT">Shows or hides 
recorded changes.</ahelp></caseinline></switchinline></paragraph>
 <switch select="appl">
 <case select="CALC"><embed href="text/shared/01/02230402.xhp#calc"/>
 </case>
 </switch>
 <bookmark xml-lang="en-US" 
branch="hid/sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT" 
id="bm_id3154810" localize="false"/>
-<paragraph role="heading" id="hd_id3147336" xml-lang="en-US" level="2" 
l10n="U" oldref="10"><switchinline select="appl"><caseinline select="CALC">Show 
accepted changes</caseinline></switchinline></paragraph>
-<paragraph role="paragraph" id="par_id3153541" xml-lang="en-US" l10n="U" 
oldref="11"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT">Shows or 
hides the changes that were accepted.</ahelp>
+<paragraph role="heading" id="hd_id3147336" xml-lang="en-US" level="2" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Show accepted 
changes</caseinline></switchinline></paragraph>
+<paragraph role="paragraph" id="par_id3153541" xml-lang="en-US" 
l10n="U"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT">Shows or 
hides the changes that were accepted.</ahelp>
 </caseinline></switchinline></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT" 
id="bm_id3155829" localize="false"/>
-<paragraph role="heading" id="hd_id3149956" xml-lang="en-US" level="2" 
l10n="U" oldref="12"><switchinline select="appl"><caseinline select="CALC">Show 
rejected changes 
+<paragraph role="heading" id="hd_id3149956" xml-lang="en-US" level="2" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Show rejected 
changes 
 </caseinline></switchinline></paragraph>
-<paragraph role="relatedtopics" id="par_id3159166" xml-lang="en-US" l10n="U" 
oldref="13"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT">Shows or 
hides the changes that were rejected.</ahelp>
+<paragraph role="relatedtopics" id="par_id3159166" xml-lang="en-US" 
l10n="U"><switchinline select="appl"><caseinline select="CALC"><ahelp 
hid="SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT">Shows or 
hides the changes that were rejected.</ahelp>
 </caseinline></switchinline></paragraph>
 <switch select="appl">
 <case select="WRITER">
diff --git a/main/helpcontent2/source/text/shared/01/04150100.xhp 
b/main/helpcontent2/source/text/shared/01/04150100.xhp
index 974fe25381..b550af9e7f 100644
--- a/main/helpcontent2/source/text/shared/01/04150100.xhp
+++ b/main/helpcontent2/source/text/shared/01/04150100.xhp
@@ -37,32 +37,32 @@
 <!-- removed HID SO3:MODALDIALOG:MD_INSERT_OLEOBJECT -->
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertObject" id="bm_id9083923" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertObject" id="bm_id3152952" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153116" xml-lang="en-US" level="1" 
l10n="U" oldref="1">Insert OLE Object</paragraph>
-<paragraph role="paragraph" id="par_id3149748" xml-lang="en-US" l10n="U" 
oldref="2"><variable id="ole"><ahelp hid=".uno:InsertObject">Inserts an <link 
href="text/shared/00/00000005.xhp#ole" name="OLE">OLE</link> object into the 
current document. The OLE object is inserted as a link or an embedded 
object.</ahelp>
+<paragraph role="heading" id="hd_id3153116" xml-lang="en-US" level="1" 
l10n="U">Insert OLE Object</paragraph>
+<paragraph role="paragraph" id="par_id3149748" xml-lang="en-US" 
l10n="U"><variable id="ole"><ahelp hid=".uno:InsertObject">Inserts an <link 
href="text/shared/00/00000005.xhp#ole" name="OLE">OLE</link> object into the 
current document. The OLE object is inserted as a link or an embedded 
object.</ahelp>
 </variable></paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000404.xhp#objektole"/>
 </section>
-<paragraph role="paragraph" id="par_id3149205" xml-lang="en-US" l10n="U" 
oldref="19">To speed up the display of the document, OLE objects are kept in 
the program cache. If you want to change the cache settings, choose <link 
href="text/shared/optionen/01011000.xhp" name="Tools - Options - $[officename] 
- Memory"><emph>Tools - Options - $[officename] - 
Memory</emph></link>.</paragraph>
-<paragraph role="note" id="par_id3145314" xml-lang="en-US" l10n="U" 
oldref="18">You cannot use the clipboard or drag and drop to move OLE objects 
to other files.</paragraph>
-<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U" 
oldref="17">Empty and inactive OLE objects are transparent.</paragraph>
+<paragraph role="paragraph" id="par_id3149205" xml-lang="en-US" l10n="U">To 
speed up the display of the document, OLE objects are kept in the program 
cache. If you want to change the cache settings, choose <link 
href="text/shared/optionen/01011000.xhp" name="Tools - Options - $[officename] 
- Memory"><emph>Tools - Options - $[officename] - 
Memory</emph></link>.</paragraph>
+<paragraph role="note" id="par_id3145314" xml-lang="en-US" l10n="U">You cannot 
use the clipboard or drag and drop to move OLE objects to other 
files.</paragraph>
+<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U">Empty 
and inactive OLE objects are transparent.</paragraph>
 <!-- removed HID SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT -->
-<paragraph role="heading" id="hd_id3149178" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Create new</paragraph>
-<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U" 
oldref="4"><ahelp 
hid="SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT">Creates a new OLE 
object based on the object type that you select.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149178" xml-lang="en-US" level="2" 
l10n="U">Create new</paragraph>
+<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" 
l10n="U"><ahelp hid="SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT">Creates 
a new OLE object based on the object type that you select.</ahelp></paragraph>
 <!-- removed HID SO3:LISTBOX:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE -->
-<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Object type</paragraph>
-<paragraph role="paragraph" id="par_id3109847" xml-lang="en-US" l10n="CHG" 
oldref="6"><ahelp hid="SO3:LISTBOX:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE">Select 
the type of document that you want to create.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" 
l10n="U">Object type</paragraph>
+<paragraph role="paragraph" id="par_id3109847" xml-lang="en-US" 
l10n="CHG"><ahelp hid="SO3:LISTBOX:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE">Select 
the type of document that you want to create.</ahelp></paragraph>
 <!-- removed HID SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE -->
-<paragraph role="heading" id="hd_id3163803" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Create from file</paragraph>
-<paragraph role="paragraph" id="par_id3149191" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp 
hid="SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE">Creates an OLE 
object from an existing file.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3150084" xml-lang="en-US" level="2" 
l10n="U" oldref="15">File</paragraph>
-<paragraph role="paragraph" id="par_id3146773" xml-lang="en-US" l10n="U" 
oldref="16">Choose the file that you want to insert as an OLE 
object.</paragraph>
+<paragraph role="heading" id="hd_id3163803" xml-lang="en-US" level="2" 
l10n="U">Create from file</paragraph>
+<paragraph role="paragraph" id="par_id3149191" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SO3:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE">Creates an OLE 
object from an existing file.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150084" xml-lang="en-US" level="2" 
l10n="U">File</paragraph>
+<paragraph role="paragraph" id="par_id3146773" xml-lang="en-US" 
l10n="U">Choose the file that you want to insert as an OLE object.</paragraph>
 <!-- removed HID SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH -->
-<paragraph role="heading" id="hd_id3144438" xml-lang="en-US" level="3" 
l10n="U" oldref="9">File</paragraph>
-<paragraph role="paragraph" id="par_id3155434" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid="SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH">Enter the 
name of the file that you want to link or embed, or click <emph>Search</emph>, 
to locate the file.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3144438" xml-lang="en-US" level="3" 
l10n="U">File</paragraph>
+<paragraph role="paragraph" id="par_id3155434" xml-lang="en-US" 
l10n="U"><ahelp hid="SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH">Enter the name 
of the file that you want to link or embed, or click <emph>Search</emph>, to 
locate the file.</ahelp></paragraph>
 <!-- removed HID SO3:PUSHBUTTON:MD_INSERT_OLEOBJECT:BTN_FILEPATH -->
-<paragraph role="heading" id="hd_id3153127" xml-lang="en-US" level="3" 
l10n="U" oldref="11">Search...</paragraph>
-<paragraph role="paragraph" id="par_id3156326" xml-lang="en-US" l10n="U" 
oldref="12"><ahelp hid="SO3:PUSHBUTTON:MD_INSERT_OLEOBJECT:BTN_FILEPATH">Locate 
the file that you want to insert, and then click 
<emph>Open</emph>.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153127" xml-lang="en-US" level="3" 
l10n="U">Search...</paragraph>
+<paragraph role="paragraph" id="par_id3156326" xml-lang="en-US" 
l10n="U"><ahelp hid="SO3:PUSHBUTTON:MD_INSERT_OLEOBJECT:BTN_FILEPATH">Locate 
the file that you want to insert, and then click 
<emph>Open</emph>.</ahelp></paragraph>
 <!-- removed HID so3_CheckBox_MD_INSERT_OLEOBJECT_CB_FILELINK -->
 <paragraph role="heading" id="hd_id4174321" xml-lang="en-US" level="3" 
l10n="NEW">Link to file</paragraph>
 <paragraph role="paragraph" id="par_id6636555" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Enable this checkbox to insert the OLE object as a 
link to the original file. If this checkbox is not enabled, the OLE object will 
be embedded into your document.</ahelp><comment>which consequences? cannot find 
featuremail or spec doc</comment></paragraph>
diff --git 
a/main/helpcontent2/source/text/shared/explorer/database/05030400.xhp 
b/main/helpcontent2/source/text/shared/explorer/database/05030400.xhp
index b52480a577..6d97675e97 100644
--- a/main/helpcontent2/source/text/shared/explorer/database/05030400.xhp
+++ b/main/helpcontent2/source/text/shared/explorer/database/05030400.xhp
@@ -30,28 +30,28 @@
 </meta>
 <body>
 <section id="tabkop2a">
-<paragraph role="heading" id="hd_id3151100" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/explorer/database/05030400.xhp" 
name="Assign columns">Assign columns</link></paragraph>
-<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U" 
oldref="2">In the data source explorer, you can copy a table by dragging and 
dropping the table onto the table container. If you select the <emph>Attach 
data</emph> check box on the first page of the <emph>Copy table</emph> dialog, 
the <emph>Assign columns</emph> dialog opens as the second window. You can use 
this dialog to map the contents of a data field in the source table to a 
different data field in the destina [...]
+<paragraph role="heading" id="hd_id3151100" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/explorer/database/05030400.xhp" name="Assign 
columns">Assign columns</link></paragraph>
+<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U">In 
the data source explorer, you can copy a table by dragging and dropping the 
table onto the table container. If you select the <emph>Attach data</emph> 
check box on the first page of the <emph>Copy table</emph> dialog, the 
<emph>Assign columns</emph> dialog opens as the second window. You can use this 
dialog to map the contents of a data field in the source table to a different 
data field in the destination table. [...]
 </section>
 <bookmark xml-lang="en-US" 
branch="hid/DBACCESS_HID_TAB_NAMEMATCHING_COLS_AVAIL" id="bm_id3153527" 
localize="false"/>
-<paragraph role="heading" id="hd_id3157958" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Source table</paragraph>
-<paragraph role="paragraph" id="par_id3145071" xml-lang="en-US" l10n="U" 
oldref="5"><ahelp hid="HID_TAB_NAMEMATCHING_COLS_AVAIL">Lists the data fields 
in the source table. To include a data field from the source table in the 
destination table, select the check box in front of the data field name. To map 
the contents of a data field in the source table to a different data field in 
the destination table, click the data field in the source table list, and then 
click the up or down arrow.</a [...]
+<paragraph role="heading" id="hd_id3157958" xml-lang="en-US" level="2" 
l10n="U">Source table</paragraph>
+<paragraph role="paragraph" id="par_id3145071" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_TAB_NAMEMATCHING_COLS_AVAIL">Lists the data fields in 
the source table. To include a data field from the source table in the 
destination table, select the check box in front of the data field name. To map 
the contents of a data field in the source table to a different data field in 
the destination table, click the data field in the source table list, and then 
click the up or down arrow.</ahelp> To in [...]
 <bookmark xml-lang="en-US" 
branch="hid/DBACCESS_HID_TAB_NAMEMATCHING_COLS_ASSIGN" id="bm_id3147242" 
localize="false"/>
-<paragraph role="heading" id="hd_id3166410" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Destination table</paragraph>
-<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp hid="HID_TAB_NAMEMATCHING_COLS_ASSIGN">Lists the possible 
data fields in the destination table. Only the data fields that are selected in 
the source table list will be included the destination 
table.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3166410" xml-lang="en-US" level="2" 
l10n="U">Destination table</paragraph>
+<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_TAB_NAMEMATCHING_COLS_ASSIGN">Lists the possible data 
fields in the destination table. Only the data fields that are selected in the 
source table list will be included the destination table.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP" 
id="bm_id3149516" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP_RIGHT" 
id="bm_id3155342" localize="false"/>
-<paragraph role="heading" id="hd_id3150670" xml-lang="en-US" level="2" 
l10n="U" oldref="8">up</paragraph>
-<paragraph role="paragraph" id="par_id3155628" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_NAME_MATCHING_IB_COLUMN_UP_RIGHT">Moves the 
selected entry up one position in the list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150670" xml-lang="en-US" level="2" 
l10n="U">up</paragraph>
+<paragraph role="paragraph" id="par_id3155628" xml-lang="en-US" 
l10n="U"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_NAME_MATCHING_IB_COLUMN_UP_RIGHT">Moves the 
selected entry up one position in the list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN" 
id="bm_id3154307" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN_RIGHT" 
id="bm_id3153716" localize="false"/>
-<paragraph role="heading" id="hd_id3149580" xml-lang="en-US" level="2" 
l10n="U" oldref="10">down</paragraph>
-<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_NAME_MATCHING_IB_COLUMN_DOWN_RIGHT">Moves the 
selected entry down one position in the list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149580" xml-lang="en-US" level="2" 
l10n="U">down</paragraph>
+<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" 
l10n="U"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_NAME_MATCHING_IB_COLUMN_DOWN_RIGHT">Moves the 
selected entry down one position in the list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_ALL" id="bm_id3147619" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="2" 
l10n="U" oldref="12">all</paragraph>
-<paragraph role="paragraph" id="par_id3154514" xml-lang="en-US" l10n="U" 
oldref="13"><ahelp 
hid="DBACCESS_PUSHBUTTON_TAB_WIZ_NAME_MATCHING_PB_ALL">Selects all of the data 
fields in the list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="2" 
l10n="U">all</paragraph>
+<paragraph role="paragraph" id="par_id3154514" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_PUSHBUTTON_TAB_WIZ_NAME_MATCHING_PB_ALL">Selects 
all of the data fields in the list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_NONE" 
id="bm_id3155341" localize="false"/>
-<paragraph role="heading" id="hd_id3153541" xml-lang="en-US" level="2" 
l10n="U" oldref="14">none</paragraph>
-<paragraph role="paragraph" id="par_id3148563" xml-lang="en-US" l10n="U" 
oldref="15"><ahelp 
hid="DBACCESS_PUSHBUTTON_TAB_WIZ_NAME_MATCHING_PB_NONE">Clears all of the check 
boxes in the list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153541" xml-lang="en-US" level="2" 
l10n="U">none</paragraph>
+<paragraph role="paragraph" id="par_id3148563" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_PUSHBUTTON_TAB_WIZ_NAME_MATCHING_PB_NONE">Clears 
all of the check boxes in the list.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/optionen/01012000.xhp 
b/main/helpcontent2/source/text/shared/optionen/01012000.xhp
index 7cf51816aa..d336be8026 100644
--- a/main/helpcontent2/source/text/shared/optionen/01012000.xhp
+++ b/main/helpcontent2/source/text/shared/optionen/01012000.xhp
@@ -35,34 +35,34 @@
 <bookmark_value>options; appearance</bookmark_value>
 <bookmark_value>appearance options</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/optionen/01012000.xhp" 
name="Appearance">Appearance</link></paragraph>
-<paragraph role="paragraph" id="par_id3145120" xml-lang="en-US" l10n="U" 
oldref="2"><ahelp hid=".">Sets the colors for the $[officename] user 
interface.</ahelp> You can save the current settings as color scheme and load 
them later.</paragraph>
+<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/optionen/01012000.xhp" 
name="Appearance">Appearance</link></paragraph>
+<paragraph role="paragraph" id="par_id3145120" xml-lang="en-US" 
l10n="U"><ahelp hid=".">Sets the colors for the $[officename] user 
interface.</ahelp> You can save the current settings as color scheme and load 
them later.</paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00000406.xhp#appearance"/>
 </section>
 <embed href="text/shared/guide/accessibility.xhp#accessibility"/>
-<paragraph role="heading" id="hd_id3154046" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Color scheme</paragraph>
-<paragraph role="paragraph" id="par_id3152349" xml-lang="en-US" l10n="U" 
oldref="4">Save and delete color schemes.</paragraph>
+<paragraph role="heading" id="hd_id3154046" xml-lang="en-US" level="2" 
l10n="U">Color scheme</paragraph>
+<paragraph role="paragraph" id="par_id3152349" xml-lang="en-US" l10n="U">Save 
and delete color schemes.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_COLORCONFIG:LB_COLORSCHEME" 
id="bm_id3154898" localize="false"/>
-<paragraph role="heading" id="hd_id3153252" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Scheme</paragraph>
-<paragraph role="paragraph" id="par_id3153541" xml-lang="en-US" l10n="U" 
oldref="6"><ahelp 
hid="SVX_LISTBOX_RID_SVXPAGE_COLORCONFIG_LB_COLORSCHEME">Selects the color 
scheme you want to use.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153252" xml-lang="en-US" level="3" 
l10n="U">Scheme</paragraph>
+<paragraph role="paragraph" id="par_id3153541" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_LISTBOX_RID_SVXPAGE_COLORCONFIG_LB_COLORSCHEME">Selects the color 
scheme you want to use.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_SAVESCHEME" 
id="bm_id3153088" localize="false"/>
-<paragraph role="heading" id="hd_id3153665" xml-lang="en-US" level="3" 
l10n="U" oldref="7">Save</paragraph>
-<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp 
hid="SVX_PUSHBUTTON_RID_SVXPAGE_COLORCONFIG_PB_SAVESCHEME">Saves the current 
settings as a color scheme that you can reload later.</ahelp> The name is added 
to the <emph>Scheme</emph> box.</paragraph>
+<paragraph role="heading" id="hd_id3153665" xml-lang="en-US" level="3" 
l10n="U">Save</paragraph>
+<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_PUSHBUTTON_RID_SVXPAGE_COLORCONFIG_PB_SAVESCHEME">Saves the current 
settings as a color scheme that you can reload later.</ahelp> The name is added 
to the <emph>Scheme</emph> box.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/CUI_HID_OPTIONS_COLORCONFIG_NAME_SCHEME" id="bm_id3148552" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149669" xml-lang="en-US" level="3" 
l10n="U" oldref="9">Name of color scheme</paragraph>
-<paragraph role="paragraph" id="par_id3159413" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid="HID_OPTIONS_COLORCONFIG_NAME_SCHEME">Enter a name for 
the color scheme.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149669" xml-lang="en-US" level="3" 
l10n="U">Name of color scheme</paragraph>
+<paragraph role="paragraph" id="par_id3159413" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_OPTIONS_COLORCONFIG_NAME_SCHEME">Enter a name for the 
color scheme.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_DELETESCHEME" 
id="bm_id3154071" localize="false"/>
-<paragraph role="heading" id="hd_id3152811" xml-lang="en-US" level="3" 
l10n="U" oldref="11">Delete</paragraph>
-<paragraph role="paragraph" id="par_id3150400" xml-lang="en-US" l10n="U" 
oldref="12"><ahelp 
hid="SVX_PUSHBUTTON_RID_SVXPAGE_COLORCONFIG_PB_DELETESCHEME">Deletes the color 
scheme shown in the <emph>Scheme</emph> box. You cannot delete the Default 
scheme.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3152811" xml-lang="en-US" level="3" 
l10n="U">Delete</paragraph>
+<paragraph role="paragraph" id="par_id3150400" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_PUSHBUTTON_RID_SVXPAGE_COLORCONFIG_PB_DELETESCHEME">Deletes the color 
scheme shown in the <emph>Scheme</emph> box. You cannot delete the Default 
scheme.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/CUI_HID_OPTIONS_COLORCONFIG_COLORLIST_WIN" id="bm_id3151380" 
localize="false"/>
-<paragraph role="heading" id="hd_id3148672" xml-lang="en-US" level="2" 
l10n="U" oldref="13">Scheme</paragraph>
-<paragraph role="paragraph" id="par_id3149204" xml-lang="en-US" l10n="U" 
oldref="14"><ahelp hid="HID_OPTIONS_COLORCONFIG_COLORLIST_WIN">Select the 
colors for the user interface elements.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U" 
oldref="15">To apply a color to a user interface element, ensure that the 
checkbox in front of the name is marked. To hide a user interface element, 
clear the check box.</paragraph>
-<paragraph role="note" id="par_id3155430" xml-lang="en-US" l10n="U" 
oldref="18">Some user interface elements cannot be hidden.</paragraph>
-<paragraph role="note" id="par_id3145365" xml-lang="en-US" l10n="U" 
oldref="20">In order to enhance cursor visibility, if the user sets the 
application background color between 40% and 60% gray, it is automatically 
changed to 40% gray.</paragraph>
-<paragraph role="paragraph" id="par_id3153144" xml-lang="en-US" l10n="U" 
oldref="16">The <emph>Automatic</emph> color setting changes the user interface 
element to the preset color from the color scheme.</paragraph>
-<paragraph role="paragraph" id="par_id3154921" xml-lang="en-US" l10n="U" 
oldref="17">The color settings for "Visited links" and "Unvisited links" only 
apply to documents created after the settings are applied.</paragraph>
+<paragraph role="heading" id="hd_id3148672" xml-lang="en-US" level="2" 
l10n="U">Scheme</paragraph>
+<paragraph role="paragraph" id="par_id3149204" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_OPTIONS_COLORCONFIG_COLORLIST_WIN">Select the colors 
for the user interface elements.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U">To 
apply a color to a user interface element, ensure that the checkbox in front of 
the name is marked. To hide a user interface element, clear the check 
box.</paragraph>
+<paragraph role="note" id="par_id3155430" xml-lang="en-US" l10n="U">Some user 
interface elements cannot be hidden.</paragraph>
+<paragraph role="note" id="par_id3145365" xml-lang="en-US" l10n="U">In order 
to enhance cursor visibility, if the user sets the application background color 
between 40% and 60% gray, it is automatically changed to 40% gray.</paragraph>
+<paragraph role="paragraph" id="par_id3153144" xml-lang="en-US" l10n="U">The 
<emph>Automatic</emph> color setting changes the user interface element to the 
preset color from the color scheme.</paragraph>
+<paragraph role="paragraph" id="par_id3154921" xml-lang="en-US" l10n="U">The 
color settings for "Visited links" and "Unvisited links" only apply to 
documents created after the settings are applied.</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/simpress/guide/layer_tipps.xhp 
b/main/helpcontent2/source/text/simpress/guide/layer_tipps.xhp
index b58e582c0f..0422345afe 100644
--- a/main/helpcontent2/source/text/simpress/guide/layer_tipps.xhp
+++ b/main/helpcontent2/source/text/simpress/guide/layer_tipps.xhp
@@ -37,61 +37,61 @@
 <bookmark_value>showing;hidden layers</bookmark_value>
 <bookmark_value>selecting;layers</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3154013" xml-lang="en-US" level="1" 
l10n="U" oldref="14"><variable id="layer_tipps"><link 
href="text/simpress/guide/layer_tipps.xhp" name="Working With Layers">Working 
With Layers</link>
+<paragraph role="heading" id="hd_id3154013" xml-lang="en-US" level="1" 
l10n="U"><variable id="layer_tipps"><link 
href="text/simpress/guide/layer_tipps.xhp" name="Working With Layers">Working 
With Layers</link>
 </variable></paragraph>
 <paragraph role="paragraph" id="par_idN10706" xml-lang="en-US" 
l10n="NEW">Drawings in %PRODUCTNAME Draw support layers.</paragraph>
-<paragraph role="heading" id="hd_id3154018" xml-lang="en-US" level="2" 
l10n="U" oldref="18">Selecting a layer</paragraph>
-<paragraph role="paragraph" id="par_id3154484" xml-lang="en-US" l10n="CHG" 
oldref="15">To select a layer, click the name tab of the layer at the bottom of 
the workspace.</paragraph>
+<paragraph role="heading" id="hd_id3154018" xml-lang="en-US" level="2" 
l10n="U">Selecting a layer</paragraph>
+<paragraph role="paragraph" id="par_id3154484" xml-lang="en-US" l10n="CHG">To 
select a layer, click the name tab of the layer at the bottom of the 
workspace.</paragraph>
 <paragraph role="tip" id="par_idN10767" xml-lang="en-US" l10n="NEW">To edit 
the properties of a layer, double-click a layer tab.</paragraph>
-<paragraph role="heading" id="hd_id3155445" xml-lang="en-US" level="2" 
l10n="U" oldref="19">Hiding layers</paragraph>
+<paragraph role="heading" id="hd_id3155445" xml-lang="en-US" level="2" 
l10n="U">Hiding layers</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3154702" xml-lang="en-US" l10n="CHG" 
oldref="22">Select a layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3154702" xml-lang="en-US" 
l10n="CHG">Select a layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3145587" xml-lang="en-US" l10n="U" 
oldref="23">In the <emph>Properties</emph> area, clear the <emph>Visible</emph> 
check box.</paragraph>
+<paragraph role="listitem" id="par_id3145587" xml-lang="en-US" l10n="U">In the 
<emph>Properties</emph> area, clear the <emph>Visible</emph> check 
box.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153912" xml-lang="en-US" l10n="U" 
oldref="24">Click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3153912" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3154762" xml-lang="en-US" l10n="U" 
oldref="25">In the name tab of the layer, the text color of the name changes to 
blue.</paragraph>
-<paragraph role="tip" id="par_id3156396" xml-lang="en-US" l10n="U" 
oldref="16">You can make a layer visible or invisible by clicking on its tab 
while holding down the Shift key.</paragraph>
-<paragraph role="heading" id="hd_id3146322" xml-lang="en-US" level="2" 
l10n="U" oldref="26">Showing hidden layers</paragraph>
+<paragraph role="paragraph" id="par_id3154762" xml-lang="en-US" l10n="U">In 
the name tab of the layer, the text color of the name changes to 
blue.</paragraph>
+<paragraph role="tip" id="par_id3156396" xml-lang="en-US" l10n="U">You can 
make a layer visible or invisible by clicking on its tab while holding down the 
Shift key.</paragraph>
+<paragraph role="heading" id="hd_id3146322" xml-lang="en-US" level="2" 
l10n="U">Showing hidden layers</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3157871" xml-lang="en-US" l10n="CHG" 
oldref="27">Select a hidden layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3157871" xml-lang="en-US" 
l10n="CHG">Select a hidden layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3149352" xml-lang="en-US" l10n="U" 
oldref="28">In the <emph>Properties</emph> area, select the 
<emph>Visible</emph> check box.</paragraph>
+<paragraph role="listitem" id="par_id3149352" xml-lang="en-US" l10n="U">In the 
<emph>Properties</emph> area, select the <emph>Visible</emph> check 
box.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153036" xml-lang="en-US" l10n="U" 
oldref="29">Click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3153036" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3154554" xml-lang="en-US" level="2" 
l10n="U" oldref="20">Locking layers</paragraph>
+<paragraph role="heading" id="hd_id3154554" xml-lang="en-US" level="2" 
l10n="U">Locking layers</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3150864" xml-lang="en-US" l10n="CHG" 
oldref="17">Select a layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3150864" xml-lang="en-US" 
l10n="CHG">Select a layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150336" xml-lang="en-US" l10n="U" 
oldref="30">In the <emph>Properties</emph> area, select the <emph>Locked</emph> 
check box.</paragraph>
+<paragraph role="listitem" id="par_id3150336" xml-lang="en-US" l10n="U">In the 
<emph>Properties</emph> area, select the <emph>Locked</emph> check 
box.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153730" xml-lang="en-US" l10n="U" 
oldref="31">Click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3153730" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3149883" xml-lang="en-US" l10n="U" 
oldref="32">You cannot edit objects on a locked layer.</paragraph>
-<paragraph role="heading" id="hd_id3145244" xml-lang="en-US" level="2" 
l10n="U" oldref="33">Unlocking layers</paragraph>
+<paragraph role="paragraph" id="par_id3149883" xml-lang="en-US" l10n="U">You 
cannot edit objects on a locked layer.</paragraph>
+<paragraph role="heading" id="hd_id3145244" xml-lang="en-US" level="2" 
l10n="U">Unlocking layers</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3145354" xml-lang="en-US" l10n="CHG" 
oldref="34">Select a locked layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3145354" xml-lang="en-US" 
l10n="CHG">Select a locked layer, and then choose <emph>Format - 
Layer</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148393" xml-lang="en-US" l10n="U" 
oldref="35">In the <emph>Properties</emph> area, clear the <emph>Locked</emph> 
check box.</paragraph>
+<paragraph role="listitem" id="par_id3148393" xml-lang="en-US" l10n="U">In the 
<emph>Properties</emph> area, clear the <emph>Locked</emph> check 
box.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150467" xml-lang="en-US" l10n="U" 
oldref="36">Click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3150467" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/01/04120222.xhp 
b/main/helpcontent2/source/text/swriter/01/04120222.xhp
index 81c49d831f..af3bd72c1f 100644
--- a/main/helpcontent2/source/text/swriter/01/04120222.xhp
+++ b/main/helpcontent2/source/text/swriter/01/04120222.xhp
@@ -29,24 +29,24 @@
 </topic>
 </meta>
 <body>
-<paragraph role="heading" id="hd_id3147506" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/swriter/01/04120222.xhp" name="Entries 
(alphabetical index)">Entries (alphabetical index)</link></paragraph>
-<paragraph role="paragraph" id="par_id3154100" xml-lang="en-US" l10n="U" 
oldref="2"><variable id="eintraege">Specify the format of the alphabetical 
index entries. 
+<paragraph role="heading" id="hd_id3147506" xml-lang="en-US" level="1" 
l10n="U"><link href="text/swriter/01/04120222.xhp" name="Entries (alphabetical 
index)">Entries (alphabetical index)</link></paragraph>
+<paragraph role="paragraph" id="par_id3154100" xml-lang="en-US" 
l10n="U"><variable id="eintraege">Specify the format of the alphabetical index 
entries. 
 </variable></paragraph>
 <section id="howtoget">
 <embed href="text/swriter/00/00000404.xhp#verz32"/>
 </section>
 <embed href="text/swriter/01/04120221.xhp#ebene"/>
-<paragraph role="paragraph" id="par_id3153532" xml-lang="en-US" l10n="U" 
oldref="3">Level "S" refers to the single letter headings that divide the index 
entries alphabetically. To enable these headings, select the <emph>Alphabetical 
delimiter</emph> check box in the <emph>Format</emph> area.</paragraph>
+<paragraph role="paragraph" id="par_id3153532" xml-lang="en-US" l10n="U">Level 
"S" refers to the single letter headings that divide the index entries 
alphabetically. To enable these headings, select the <emph>Alphabetical 
delimiter</emph> check box in the <emph>Format</emph> area.</paragraph>
 <embed href="text/swriter/01/04120221.xhp#aufbau"/>
 <embed href="text/swriter/01/04120221.xhp#eintragstext"/>
 <embed href="text/swriter/01/04120221.xhp#tabulator"/>
 <section id="level">
 <bookmark xml-lang="en-US" 
branch="hid/sw:PushButton:TP_TOX_ENTRY:PB_CHAPTERINFO" id="bm_id3154566" 
localize="false"/>
-<paragraph role="heading" id="hd_id3152957" xml-lang="en-US" level="3" 
l10n="U" oldref="4">Chapter Info</paragraph>
-<paragraph role="paragraph" id="par_id3154573" xml-lang="en-US" l10n="U" 
oldref="5"><ahelp hid="SW:PUSHBUTTON:TP_TOX_ENTRY:PB_CHAPTERINFO">Inserts 
chapter information, such as the chapter heading and number. Select the 
information that you want to display in the <emph>Chapter entry</emph> 
box.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3152957" xml-lang="en-US" level="3" 
l10n="U">Chapter Info</paragraph>
+<paragraph role="paragraph" id="par_id3154573" xml-lang="en-US" 
l10n="U"><ahelp hid="SW:PUSHBUTTON:TP_TOX_ENTRY:PB_CHAPTERINFO">Inserts chapter 
information, such as the chapter heading and number. Select the information 
that you want to display in the <emph>Chapter entry</emph> 
box.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:ListBox:TP_TOX_ENTRY:LB_CHAPTERENTRY" id="bm_id3154196" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149692" xml-lang="en-US" level="3" 
l10n="U" oldref="6">Chapter entry</paragraph>
-<paragraph role="paragraph" id="par_id3155174" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp hid="SW:LISTBOX:TP_TOX_ENTRY:LB_CHAPTERENTRY">Select the 
chapter information that you want to include in the index 
entry.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149692" xml-lang="en-US" level="3" 
l10n="U">Chapter entry</paragraph>
+<paragraph role="paragraph" id="par_id3155174" xml-lang="en-US" 
l10n="U"><ahelp hid="SW:LISTBOX:TP_TOX_ENTRY:LB_CHAPTERENTRY">Select the 
chapter information that you want to include in the index 
entry.</ahelp></paragraph>
 <section id="eval">
 <bookmark xml-lang="en-US" 
branch="hid/sw:NumericField:TP_TOX_ENTRY:NF_LEVEL_OL" id="bm_id354930" 
localize="false"/>
 <paragraph role="heading" id="hd_id7605517" xml-lang="en-US" level="3" 
l10n="NEW">Evaluate up to level</paragraph>
@@ -57,13 +57,13 @@
 <embed href="text/swriter/01/04120221.xhp#aufbau2"/>
 <embed href="text/swriter/01/04120221.xhp#formatierung"/>
 <bookmark xml-lang="en-US" 
branch="hid/sw:ListBox:TP_TOX_ENTRY:LB_MAIN_ENTRY_STYLE" id="bm_id3149102" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149493" xml-lang="en-US" level="3" 
l10n="U" oldref="8">Character Style for main entries</paragraph>
-<paragraph role="paragraph" id="par_id3149109" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp hid="SW:LISTBOX:TP_TOX_ENTRY:LB_MAIN_ENTRY_STYLE">Specify the 
formatting style for the main entries in the alphabetical index. To convert an 
index entry into a main entry, click in front of the index field in the 
document and then choose <emph>Edit - </emph><link 
href="text/swriter/01/04120100.xhp" name="Index Entry"><emph>Index 
Entry</emph></link>.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149493" xml-lang="en-US" level="3" 
l10n="U">Character Style for main entries</paragraph>
+<paragraph role="paragraph" id="par_id3149109" xml-lang="en-US" 
l10n="U"><ahelp hid="SW:LISTBOX:TP_TOX_ENTRY:LB_MAIN_ENTRY_STYLE">Specify the 
formatting style for the main entries in the alphabetical index. To convert an 
index entry into a main entry, click in front of the index field in the 
document and then choose <emph>Edit - </emph><link 
href="text/swriter/01/04120100.xhp" name="Index Entry"><emph>Index 
Entry</emph></link>.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:CheckBox:TP_TOX_ENTRY:CB_ALPHADELIM" 
id="bm_id3147094" localize="false"/>
-<paragraph role="heading" id="hd_id3148977" xml-lang="en-US" level="3" 
l10n="U" oldref="10">Alphabetical delimiter</paragraph>
-<paragraph role="paragraph" id="par_id3147100" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp hid="SW:CHECKBOX:TP_TOX_ENTRY:CB_ALPHADELIM">Uses the 
initial letters of the alphabetically arranged index entries as section 
headings.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3148977" xml-lang="en-US" level="3" 
l10n="U">Alphabetical delimiter</paragraph>
+<paragraph role="paragraph" id="par_id3147100" xml-lang="en-US" 
l10n="U"><ahelp hid="SW:CHECKBOX:TP_TOX_ENTRY:CB_ALPHADELIM">Uses the initial 
letters of the alphabetically arranged index entries as section 
headings.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:CheckBox:TP_TOX_ENTRY:CB_COMMASEPARATED" id="bm_id3149043" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147226" xml-lang="en-US" level="3" 
l10n="U" oldref="12">Key separated by commas</paragraph>
-<paragraph role="paragraph" id="par_id3153631" xml-lang="en-US" l10n="U" 
oldref="13"><ahelp hid="SW:CHECKBOX:TP_TOX_ENTRY:CB_COMMASEPARATED">Arranges 
the index entries on the same line, separated by commas.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147226" xml-lang="en-US" level="3" 
l10n="U">Key separated by commas</paragraph>
+<paragraph role="paragraph" id="par_id3153631" xml-lang="en-US" 
l10n="U"><ahelp hid="SW:CHECKBOX:TP_TOX_ENTRY:CB_COMMASEPARATED">Arranges the 
index entries on the same line, separated by commas.</ahelp></paragraph>
 </body>
 </helpdocument>

Reply via email to