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 d399bfcaa6 Remove 'oldref' entries (work in progress)
d399bfcaa6 is described below

commit d399bfcaa65b47669f5c81aeebf20a04f0a854c8
Author: mseidel <msei...@apache.org>
AuthorDate: Sat Dec 14 14:53:50 2024 +0100

    Remove 'oldref' entries (work in progress)
    
    (cherry picked from commit c03694bcabfc0ccf2971b4f6e5840885981a2ee6)
---
 .../source/text/sbasic/shared/03080301.xhp         | 43 +++++++++++-----------
 .../source/text/sbasic/shared/03120101.xhp         | 31 ++++++++--------
 .../source/text/sbasic/shared/03131600.xhp         | 12 +++---
 .../helpcontent2/source/text/scalc/01/02140000.xhp | 20 +++++-----
 .../helpcontent2/source/text/scalc/01/06060200.xhp | 14 +++----
 .../source/text/shared/01/01070001.xhp             | 20 +++++-----
 .../source/text/shared/autopi/01120200.xhp         | 22 +++++------
 .../text/shared/explorer/database/05030200.xhp     | 20 +++++-----
 .../text/shared/guide/copytable2application.xhp    | 12 +++---
 .../text/shared/guide/redlining_docmerge.xhp       | 14 +++----
 .../source/text/swriter/01/02130000.xhp            | 32 ++++++++--------
 .../source/text/swriter/guide/hyperlinks.xhp       | 19 +++++-----
 .../source/text/swriter/guide/indices_delete.xhp   | 15 ++++----
 .../source/text/swriter/guide/text_rotate.xhp      | 19 +++++-----
 main/helpcontent2/source/text/swriter/main0106.xhp | 16 ++++----
 15 files changed, 151 insertions(+), 158 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/03080301.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03080301.xhp
index c5849ca72b..09161181a4 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03080301.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03080301.xhp
@@ -33,30 +33,29 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3150616">
 <bookmark_value>Randomize statement</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03080301.xhp" 
name="Randomize Statement [Runtime]">Randomize Statement 
[Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U" 
oldref="2">Initializes the random-number generator.</paragraph>
+<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03080301.xhp" name="Randomize Statement 
[Runtime]">Randomize Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" 
l10n="U">Initializes the random-number generator.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3147573" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U" 
oldref="4">Randomize [Number]</paragraph>
-<paragraph role="heading" id="hd_id3152456" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3149670" xml-lang="en-US" l10n="CHG" 
oldref="6">
-<emph>Number:</emph> Any integer value that initializes the random-number 
generator.</paragraph>
+<paragraph role="heading" id="hd_id3147573" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" 
l10n="U">Randomize [Number]</paragraph>
+<paragraph role="heading" id="hd_id3152456" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3149670" xml-lang="en-US" 
l10n="CHG"><emph>Number:</emph> Any integer value that initializes the 
random-number generator.</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3149655" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Example:</paragraph>
-<paragraph role="code" id="par_id3151211" xml-lang="en-US" l10n="U" 
oldref="8">Sub ExampleRandomize</paragraph>
-<paragraph role="code" id="par_id3147229" xml-lang="en-US" l10n="U" 
oldref="9">Dim iVar As Integer, sText As String</paragraph>
-<paragraph role="code" id="par_id3150870" xml-lang="en-US" l10n="U" 
oldref="10">Dim iSpectral(10) As Integer</paragraph>
-<paragraph role="code" id="par_id3148673" xml-lang="en-US" l10n="U" 
oldref="12">Randomize 2^14-1</paragraph>
-<paragraph role="code" id="par_id3156423" xml-lang="en-US" l10n="U" 
oldref="13">For iCount = 1 To 1000</paragraph>
-<paragraph role="code" id="par_id3147288" xml-lang="en-US" l10n="U" 
oldref="14">iVar = Int((10 * Rnd) ) REM Range from 0 to 9</paragraph>
-<paragraph role="code" id="par_id3155132" xml-lang="en-US" l10n="U" 
oldref="15">iSpectral(iVar) = iSpectral(iVar) +1</paragraph>
-<paragraph role="code" id="par_id3153143" xml-lang="en-US" l10n="U" 
oldref="16">Next iCount</paragraph>
-<paragraph role="code" id="par_id3154011" xml-lang="en-US" l10n="U" 
oldref="18">sText = " | "</paragraph>
-<paragraph role="code" id="par_id3151114" xml-lang="en-US" l10n="U" 
oldref="19">For iCount = 0 To 9</paragraph>
-<paragraph role="code" id="par_id3145748" xml-lang="en-US" l10n="U" 
oldref="20">sText = sText &amp; iSpectral(iCount) &amp; " | "</paragraph>
-<paragraph role="code" id="par_id3146921" xml-lang="en-US" l10n="U" 
oldref="21">Next iCount</paragraph>
-<paragraph role="code" id="par_id3148617" xml-lang="en-US" l10n="U" 
oldref="22">MsgBox sText,0,"Spectral Distribution"</paragraph>
-<paragraph role="code" id="par_id3152941" xml-lang="en-US" l10n="U" 
oldref="23">end sub</paragraph>
+<paragraph role="heading" id="hd_id3149655" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3151211" xml-lang="en-US" l10n="U">Sub 
ExampleRandomize</paragraph>
+<paragraph role="code" id="par_id3147229" xml-lang="en-US" l10n="U">Dim iVar 
As Integer, sText As String</paragraph>
+<paragraph role="code" id="par_id3150870" xml-lang="en-US" l10n="U">Dim 
iSpectral(10) As Integer</paragraph>
+<paragraph role="code" id="par_id3148673" xml-lang="en-US" l10n="U">Randomize 
2^14-1</paragraph>
+<paragraph role="code" id="par_id3156423" xml-lang="en-US" l10n="U">For iCount 
= 1 To 1000</paragraph>
+<paragraph role="code" id="par_id3147288" xml-lang="en-US" l10n="U">iVar = 
Int((10 * Rnd) ) REM Range from 0 to 9</paragraph>
+<paragraph role="code" id="par_id3155132" xml-lang="en-US" 
l10n="U">iSpectral(iVar) = iSpectral(iVar) +1</paragraph>
+<paragraph role="code" id="par_id3153143" xml-lang="en-US" l10n="U">Next 
iCount</paragraph>
+<paragraph role="code" id="par_id3154011" xml-lang="en-US" l10n="U">sText = " 
| "</paragraph>
+<paragraph role="code" id="par_id3151114" xml-lang="en-US" l10n="U">For iCount 
= 0 To 9</paragraph>
+<paragraph role="code" id="par_id3145748" xml-lang="en-US" l10n="U">sText = 
sText &amp; iSpectral(iCount) &amp; " | "</paragraph>
+<paragraph role="code" id="par_id3146921" xml-lang="en-US" l10n="U">Next 
iCount</paragraph>
+<paragraph role="code" id="par_id3148617" xml-lang="en-US" l10n="U">MsgBox 
sText,0,"Spectral Distribution"</paragraph>
+<paragraph role="code" id="par_id3152941" xml-lang="en-US" l10n="U">end 
sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03120101.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03120101.xhp
index 592afde13f..6638a2b927 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03120101.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03120101.xhp
@@ -33,25 +33,24 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3150499">
 <bookmark_value>Asc function</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3150499" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03120101.xhp" name="Asc 
Function [Runtime]">Asc Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3151384" xml-lang="en-US" l10n="U" 
oldref="2">Returns the ASCII (American Standard Code for Information 
Interchange) value of the first character in a string expression.</paragraph>
+<paragraph role="heading" id="hd_id3150499" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03120101.xhp" name="Asc Function 
[Runtime]">Asc Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3151384" xml-lang="en-US" 
l10n="U">Returns the ASCII (American Standard Code for Information Interchange) 
value of the first character in a string expression.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3155555" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" l10n="U" 
oldref="4">Asc (Text As String)</paragraph>
-<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U" 
oldref="6">Integer</paragraph>
-<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" l10n="U" 
oldref="8">
-<emph>Text:</emph> Any valid string expression. Only the first character in 
the string is relevant.</paragraph>
-<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="CHG" 
oldref="9">Use the Asc function to replace keys with values. If the Asc 
function encounters a blank string, $[officename] Basic reports a run-time 
error. In addition to 7 bit ASCII characters (Codes 0-127)<comment>UFI: TL 
called me and asked to change this</comment>, the ASCII function can also 
detect non-printable key codes in ASCII code. This function can also handle 16 
bit unicode characters.</paragraph>
+<paragraph role="heading" id="hd_id3155555" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" l10n="U">Asc 
(Text As String)</paragraph>
+<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="2" 
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" 
l10n="U">Integer</paragraph>
+<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" 
l10n="U"><emph>Text:</emph> Any valid string expression. Only the first 
character in the string is relevant.</paragraph>
+<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="CHG">Use 
the Asc function to replace keys with values. If the Asc function encounters a 
blank string, $[officename] Basic reports a run-time error. In addition to 7 
bit ASCII characters (Codes 0-127)<comment>UFI: TL called me and asked to 
change this</comment>, the ASCII function can also detect non-printable key 
codes in ASCII code. This function can also handle 16 bit unicode 
characters.</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3159413" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3149457" xml-lang="en-US" l10n="U" 
oldref="11">Sub ExampleASC</paragraph>
-<paragraph role="paragraph" id="par_id3150792" xml-lang="en-US" l10n="U" 
oldref="12">Print ASC("A") REM returns 65</paragraph>
-<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U" 
oldref="13">Print ASC("Z") REM returns 90</paragraph>
-<paragraph role="paragraph" id="par_id3163800" xml-lang="en-US" l10n="U" 
oldref="14">Print ASC("Las Vegas") REM returns 76, since only the first 
character is taken into account</paragraph>
-<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U" 
oldref="15">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3159413" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3149457" xml-lang="en-US" l10n="U">Sub 
ExampleASC</paragraph>
+<paragraph role="paragraph" id="par_id3150792" xml-lang="en-US" l10n="U">Print 
ASC("A") REM returns 65</paragraph>
+<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U">Print 
ASC("Z") REM returns 90</paragraph>
+<paragraph role="paragraph" id="par_id3163800" xml-lang="en-US" l10n="U">Print 
ASC("Las Vegas") REM returns 76, since only the first character is taken into 
account</paragraph>
+<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 <section id="relatedtopics">
 <paragraph role="paragraph" id="par_idN1067B" xml-lang="en-US" 
l10n="NEW"><link href="text/sbasic/shared/03120102.xhp">CHR</link></paragraph>
 </section>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03131600.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03131600.xhp
index 5f9aeb181f..d404c1cd16 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03131600.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03131600.xhp
@@ -34,14 +34,14 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3150682">
 <bookmark_value>CreateUnoService function</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3150682" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03131600.xhp" 
name="CreateUnoService Function [Runtime]">CreateUnoService Function 
[Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3152924" xml-lang="en-US" l10n="U" 
oldref="2">Instantiates a Uno service with the 
ProcessServiceManager.</paragraph>
+<paragraph role="heading" id="hd_id3150682" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03131600.xhp" name="CreateUnoService 
Function [Runtime]">CreateUnoService Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3152924" xml-lang="en-US" 
l10n="U">Instantiates a Uno service with the ProcessServiceManager.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3153346" xml-lang="en-US" l10n="U" 
oldref="4">oService = CreateUnoService( Uno service name )</paragraph>
+<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3153346" xml-lang="en-US" 
l10n="U">oService = CreateUnoService( Uno service name )</paragraph>
 <paragraph role="paragraph" id="par_idN1060F" xml-lang="en-US" l10n="NEW">For 
a list of available services, see the <link 
href="https://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html";>API
 reference</link>.</paragraph>
-<paragraph role="heading" id="hd_id3151111" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Examples:</paragraph>
-<paragraph role="paragraph" id="par_id3154046" xml-lang="en-US" l10n="U" 
oldref="6">oIntrospection = CreateUnoService( 
"com.sun.star.beans.Introspection" )</paragraph>
+<paragraph role="heading" id="hd_id3151111" xml-lang="en-US" level="2" 
l10n="U">Examples:</paragraph>
+<paragraph role="paragraph" id="par_id3154046" xml-lang="en-US" 
l10n="U">oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" 
)</paragraph>
 <bookmark xml-lang="en-US" branch="index" id="bm_id8334604">
 <bookmark_value>filepicker;API service</bookmark_value>
 </bookmark>
diff --git a/main/helpcontent2/source/text/scalc/01/02140000.xhp 
b/main/helpcontent2/source/text/scalc/01/02140000.xhp
index 2b4267337b..1b291878ae 100644
--- a/main/helpcontent2/source/text/scalc/01/02140000.xhp
+++ b/main/helpcontent2/source/text/scalc/01/02140000.xhp
@@ -35,35 +35,33 @@
 <bookmark_value>filling;selection lists</bookmark_value>
 <bookmark_value>selection lists;filling cells</bookmark_value>
 </bookmark><comment>MW inserted 2 index entries</comment>
-<paragraph xml-lang="en-US" id="hd_id3153876" role="heading" level="1" 
l10n="U" oldref="1"><link href="text/scalc/01/02140000.xhp" 
name="Fill">Fill</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3156285" role="paragraph" l10n="CHG" 
oldref="2"><ahelp hid=".">Automatically fills cells with 
content.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153876" role="heading" level="1" 
l10n="U"><link href="text/scalc/01/02140000.xhp" 
name="Fill">Fill</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3156285" role="paragraph" 
l10n="CHG"><ahelp hid=".">Automatically fills cells with 
content.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/scalc/00/00000402.xhp#bausfullen"/>
 </section>
-<paragraph xml-lang="en-US" id="par_id3147343" role="note" l10n="CHG" 
oldref="9">The $[officename] Calc context menus have <link 
href="text/scalc/01/02140000.xhp" name="other options">additional 
options</link> for filling the cells.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147343" role="note" l10n="CHG">The 
$[officename] Calc context menus have <link href="text/scalc/01/02140000.xhp" 
name="other options">additional options</link> for filling the 
cells.</paragraph>
 <embed href="text/scalc/01/02140100.xhp#unten"/>
 <embed href="text/scalc/01/02140200.xhp#rechts"/>
 <embed href="text/scalc/01/02140300.xhp#oben"/>
 <embed href="text/scalc/01/02140400.xhp#links"/>
-<paragraph xml-lang="en-US" id="hd_id3149207" role="heading" level="2" 
l10n="U" oldref="7"><link href="text/scalc/01/02140500.xhp" 
name="Sheet">Sheet</link></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149207" role="heading" level="2" 
l10n="U"><link href="text/scalc/01/02140500.xhp" 
name="Sheet">Sheet</link></paragraph>
 <embed href="text/scalc/01/02140500.xhp#tabellenfuellentext"/>
-<paragraph xml-lang="en-US" id="hd_id3155111" role="heading" level="2" 
l10n="U" oldref="8"><link href="text/scalc/01/02140600.xhp" 
name="Rows">Series</link></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155111" role="heading" level="2" 
l10n="U"><link href="text/scalc/01/02140600.xhp" 
name="Rows">Series</link></paragraph>
 <embed href="text/scalc/01/02140600.xhp#reihenfuellentext"/>
-<paragraph xml-lang="en-US" id="par_id3152994" role="paragraph" l10n="U" 
oldref="3">
-<emph>Filling cells using context menus:</emph>
-</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152994" role="paragraph" 
l10n="U"><emph>Filling cells using context menus:</emph></paragraph>
 <list type="unordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3145384" role="listitem" l10n="U" 
oldref="4">Call the <link href="text/shared/00/00000005.xhp#kontextmenue" 
name="context menu">context menu</link> when positioned in a cell and choose 
<emph>Selection List</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145384" role="listitem" l10n="U">Call 
the <link href="text/shared/00/00000005.xhp#kontextmenue" name="context 
menu">context menu</link> when positioned in a cell and choose <emph>Selection 
List</emph>.</paragraph>
 </listitem>
 <listitem>
 <bookmark xml-lang="en-US" branch="hid/.uno:DataSelect" id="bm_id4369249" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:DataSelect" id="bm_id3155810" 
localize="false"/>
-<paragraph xml-lang="en-US" id="par_id3156450" role="listitem" l10n="U" 
oldref="5"><ahelp hid=".uno:DataSelect">A list box containing all text found in 
the current column is displayed.</ahelp> The text is sorted alphabetically and 
multiple entries are listed only once.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156450" role="listitem" l10n="U"><ahelp 
hid=".uno:DataSelect">A list box containing all text found in the current 
column is displayed.</ahelp> The text is sorted alphabetically and multiple 
entries are listed only once.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3148699" role="listitem" l10n="U" 
oldref="6">Click one of the listed entries to copy it to the cell.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148699" role="listitem" l10n="U">Click 
one of the listed entries to copy it to the cell.</paragraph>
 </listitem>
 </list>
 </body>
diff --git a/main/helpcontent2/source/text/scalc/01/06060200.xhp 
b/main/helpcontent2/source/text/scalc/01/06060200.xhp
index d2db5b04cb..b0352b87a7 100644
--- a/main/helpcontent2/source/text/scalc/01/06060200.xhp
+++ b/main/helpcontent2/source/text/scalc/01/06060200.xhp
@@ -31,16 +31,16 @@
 <body>
 <bookmark xml-lang="en-US" branch="hid/.uno:ToolProtectionDocument" 
id="bm_id3209635" localize="false"/><!-- HID added by script -->
 <bookmark xml-lang="en-US" branch="hid/.uno:ToolProtectionDocument" 
id="bm_id3150791" localize="false"/>
-<paragraph role="heading" id="hd_id3150541" xml-lang="en-US" level="1" 
l10n="U" oldref="1">Protecting document</paragraph>
-<paragraph role="paragraph" id="par_id3145172" xml-lang="en-US" l10n="CHG" 
oldref="2"><variable id="dokumenttext"><ahelp 
hid=".uno:ToolProtectionDocument">Protects the sheet structure of your document 
from modifications. It is impossible to insert, delete, rename, move or copy 
sheets.</ahelp>
+<paragraph role="heading" id="hd_id3150541" xml-lang="en-US" level="1" 
l10n="U">Protecting document</paragraph>
+<paragraph role="paragraph" id="par_id3145172" xml-lang="en-US" 
l10n="CHG"><variable id="dokumenttext"><ahelp 
hid=".uno:ToolProtectionDocument">Protects the sheet structure of your document 
from modifications. It is impossible to insert, delete, rename, move or copy 
sheets.</ahelp>
 </variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - 
Protect Document - Document</emph>. Optionally enter a password and click 
OK.</paragraph>
 <section id="howtoget">
 <embed href="text/scalc/00/00000406.xhp#exdsd"/>
 </section>
-<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U" 
oldref="6">The structure of protected spreadsheet documents can be changed only 
if the <emph>Protect</emph> option is disabled. On the context menus for the 
spreadsheet tabs at the lower graphic border, only the menu item <emph>Select 
All Sheets</emph> can be activated. All other menu items are deactivated. To 
remove the protection, call up the command <emph>Tools - Protect Document - 
Document</emph> again. If no pa [...]
-<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U" 
oldref="7">A protected document, once saved, can only be saved again with the 
<emph>File - Save As</emph> menu command.</paragraph>
-<paragraph role="heading" id="hd_id3152596" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Password (optional)</paragraph>
-<paragraph role="paragraph" id="par_id3155412" xml-lang="en-US" l10n="U" 
oldref="5">You can create a password to protect your document against 
unauthorized or accidental modifications.</paragraph>
-<paragraph role="note" id="par_id3150717" xml-lang="en-US" l10n="U" 
oldref="9">You can completely protect your work by combining both options from 
<emph>Tools - Protect Document</emph>, including password entry. If you want to 
prevent the document from being opened by other users, select <emph>Save With 
Password</emph> and click the <emph>Save</emph> button. The <emph>Enter 
Password</emph> dialog appears. Consider carefully when choosing a password; if 
you forget it after you close a doc [...]
+<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U">The 
structure of protected spreadsheet documents can be changed only if the 
<emph>Protect</emph> option is disabled. On the context menus for the 
spreadsheet tabs at the lower graphic border, only the menu item <emph>Select 
All Sheets</emph> can be activated. All other menu items are deactivated. To 
remove the protection, call up the command <emph>Tools - Protect Document - 
Document</emph> again. If no password is a [...]
+<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U">A 
protected document, once saved, can only be saved again with the <emph>File - 
Save As</emph> menu command.</paragraph>
+<paragraph role="heading" id="hd_id3152596" xml-lang="en-US" level="2" 
l10n="U">Password (optional)</paragraph>
+<paragraph role="paragraph" id="par_id3155412" xml-lang="en-US" l10n="U">You 
can create a password to protect your document against unauthorized or 
accidental modifications.</paragraph>
+<paragraph role="note" id="par_id3150717" xml-lang="en-US" l10n="U">You can 
completely protect your work by combining both options from <emph>Tools - 
Protect Document</emph>, including password entry. If you want to prevent the 
document from being opened by other users, select <emph>Save With 
Password</emph> and click the <emph>Save</emph> button. The <emph>Enter 
Password</emph> dialog appears. Consider carefully when choosing a password; if 
you forget it after you close a document you w [...]
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/01070001.xhp 
b/main/helpcontent2/source/text/shared/01/01070001.xhp
index 16b4e9f31f..0d9da9a2e4 100644
--- a/main/helpcontent2/source/text/shared/01/01070001.xhp
+++ b/main/helpcontent2/source/text/shared/01/01070001.xhp
@@ -37,26 +37,26 @@
 </bookmark><comment>MW deleted "document types;..."</comment>
 <bookmark xml-lang="en-US" branch="hid/.uno:ExportTo" id="bm_id9593822" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:ExportTo" id="bm_id3154840" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153383" xml-lang="en-US" level="1" 
l10n="U" oldref="13"><link href="text/shared/01/01070001.xhp" 
name="Export">Export</link></paragraph>
-<paragraph role="paragraph" id="par_id3149355" xml-lang="en-US" l10n="U" 
oldref="1"><variable id="exportieren"><ahelp hid=".uno:ExportTo">Saves the 
current document with a different name and format to a location that you 
specify.</ahelp>
+<paragraph role="heading" id="hd_id3153383" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/01070001.xhp" 
name="Export">Export</link></paragraph>
+<paragraph role="paragraph" id="par_id3149355" xml-lang="en-US" 
l10n="U"><variable id="exportieren"><ahelp hid=".uno:ExportTo">Saves the 
current document with a different name and format to a location that you 
specify.</ahelp>
 </variable></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00000401.xhp#export"/>
 </section>
-<paragraph role="paragraph" id="par_id3150710" xml-lang="en-US" l10n="U" 
oldref="2">The following sections describe the <emph>$[officename] 
Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and 
<emph>Save</emph> dialog boxes, choose <emph><switchinline 
select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link 
href="text/shared/optionen/01010600.xhp" name="$[officename] - Gener [...]
-<paragraph role="heading" id="hd_id3150693" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Up One Level</paragraph>
+<paragraph role="paragraph" id="par_id3150710" xml-lang="en-US" l10n="U">The 
following sections describe the <emph>$[officename] Export</emph> dialog box. 
To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog 
boxes, choose <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link 
href="text/shared/optionen/01010600.xhp" name="$[officename] - General">$[offic 
[...]
+<paragraph role="heading" id="hd_id3150693" xml-lang="en-US" level="2" 
l10n="U">Up One Level</paragraph>
 <embed href="text/shared/01/01070000.xhp#levelup"/>
-<paragraph role="heading" id="hd_id3153312" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Create New Directory</paragraph>
+<paragraph role="heading" id="hd_id3153312" xml-lang="en-US" level="2" 
l10n="U">Create New Directory</paragraph>
 <embed href="text/shared/01/01070000.xhp#createdir"/>
-<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Default Directory</paragraph>
+<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" 
l10n="U">Default Directory</paragraph>
 <embed href="text/shared/01/01070000.xhp#defaultdir"/>
-<paragraph role="heading" id="hd_id3154317" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Display area</paragraph>
+<paragraph role="heading" id="hd_id3154317" xml-lang="en-US" level="2" 
l10n="U">Display area</paragraph>
 <embed href="text/shared/01/01070000.xhp#fileview"/>
-<paragraph role="heading" id="hd_id3147209" xml-lang="en-US" level="2" 
l10n="U" oldref="8">File Name</paragraph>
+<paragraph role="heading" id="hd_id3147209" xml-lang="en-US" level="2" 
l10n="U">File Name</paragraph>
 <embed href="text/shared/01/01070000.xhp#filename"/>
-<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="2" 
l10n="U" oldref="9">File Type</paragraph>
+<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="2" 
l10n="U">File Type</paragraph>
 <embed href="text/shared/01/01070000.xhp#filetype"/>
-<paragraph role="heading" id="hd_id3148539" xml-lang="en-US" level="2" 
l10n="CHG" oldref="10">Export</paragraph>
+<paragraph role="heading" id="hd_id3148539" xml-lang="en-US" level="2" 
l10n="CHG">Export</paragraph>
 <embed href="text/shared/01/01070000.xhp#save"/><comment>removed 
autoextension, i82752</comment></body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/autopi/01120200.xhp 
b/main/helpcontent2/source/text/shared/autopi/01120200.xhp
index fe13d329d8..cd1db9bae0 100644
--- a/main/helpcontent2/source/text/shared/autopi/01120200.xhp
+++ b/main/helpcontent2/source/text/shared/autopi/01120200.xhp
@@ -30,23 +30,23 @@
 </meta>
 <body>
 <section id="seite2">
-<paragraph id="hd_id3151299" role="heading" level="1" oldref="1" l10n="U" 
xml-lang="en-US"><link href="text/shared/autopi/01120200.xhp" name="Group 
Element Wizard: Default Field Selection">Group Element Wizard: Default Field 
Selection</link></paragraph>
-<paragraph role="paragraph" id="par_id3144740" l10n="U" xml-lang="en-US" 
oldref="2">Determines that you want one option field to be selected as the 
default choice.</paragraph>
+<paragraph id="hd_id3151299" role="heading" level="1" l10n="U" 
xml-lang="en-US"><link href="text/shared/autopi/01120200.xhp" name="Group 
Element Wizard: Default Field Selection">Group Element Wizard: Default Field 
Selection</link></paragraph>
+<paragraph role="paragraph" id="par_id3144740" l10n="U" 
xml-lang="en-US">Determines that you want one option field to be selected as 
the default choice.</paragraph>
 </section>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3154094" l10n="U" 
oldref="11">The default settings will be accepted if you open the form in the 
user mode. With these settings you determine the control property <link 
href="text/shared/02/01170101.xhp" name="Default Status">Default 
Status</link>.</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3154094" l10n="U">The 
default settings will be accepted if you open the form in the user mode. With 
these settings you determine the control property <link 
href="text/shared/02/01170101.xhp" name="Default Status">Default 
Status</link>.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000401.xhp#gruppen2"/>
 </section>
-<paragraph role="heading" level="2" id="hd_id3157896" l10n="U" 
xml-lang="en-US" oldref="3">Should one option field be selected as a 
default?</paragraph>
-<paragraph role="paragraph" id="par_id3149346" l10n="U" xml-lang="en-US" 
oldref="4">Specifies whether you want to set default settings for the option 
box.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3157896" l10n="U" 
xml-lang="en-US">Should one option field be selected as a default?</paragraph>
+<paragraph role="paragraph" id="par_id3149346" l10n="U" 
xml-lang="en-US">Specifies whether you want to set default settings for the 
option box.</paragraph>
 <!-- removed HID 
DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_YES -->
-<paragraph role="heading" level="3" id="hd_id3147226" l10n="U" 
xml-lang="en-US" oldref="5">Yes, the following:</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3150774" xml-lang="en-US" 
oldref="10"><ahelp 
hid="DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_YES" 
visibility="visible">Specifies that you want an option field to be selected as 
a default after opening the form.</ahelp> Choose the option field from the 
box.</paragraph>
+<paragraph role="heading" level="3" id="hd_id3147226" l10n="U" 
xml-lang="en-US">Yes, the following:</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3150774" 
xml-lang="en-US"><ahelp 
hid="DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_YES" 
visibility="visible">Specifies that you want an option field to be selected as 
a default after opening the form.</ahelp> Choose the option field from the 
box.</paragraph>
 <!-- removed HID 
DBP_LISTBOX_RID_PAGE_DEFAULTFIELDSELECTION_LB_DEFSELECTIONFIELD -->
-<paragraph role="heading" level="3" id="hd_id3153345" l10n="U" 
xml-lang="en-US" oldref="6">List box</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3146957" xml-lang="en-US" 
oldref="7"><ahelp 
hid="DBP_LISTBOX_RID_PAGE_DEFAULTFIELDSELECTION_LB_DEFSELECTIONFIELD" 
visibility="visible">Select the option field that you want to have as the 
default when opening the form.</ahelp></paragraph>
+<paragraph role="heading" level="3" id="hd_id3153345" l10n="U" 
xml-lang="en-US">List box</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3146957" 
xml-lang="en-US"><ahelp 
hid="DBP_LISTBOX_RID_PAGE_DEFAULTFIELDSELECTION_LB_DEFSELECTIONFIELD" 
visibility="visible">Select the option field that you want to have as the 
default when opening the form.</ahelp></paragraph>
 <!-- removed HID 
DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_NO -->
-<paragraph role="heading" level="3" id="hd_id3147242" l10n="U" 
xml-lang="en-US" oldref="8">No, one particular field is not going to be 
selected</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3163802" xml-lang="en-US" 
oldref="9"><ahelp 
hid="DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_NO" 
visibility="visible">Specifies that you do not want any option field to be the 
default choice.</ahelp></paragraph>
+<paragraph role="heading" level="3" id="hd_id3147242" l10n="U" 
xml-lang="en-US">No, one particular field is not going to be 
selected</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3163802" 
xml-lang="en-US"><ahelp 
hid="DBP_RADIOBUTTON_RID_PAGE_DEFAULTFIELDSELECTION_RB_DEFSELECTION_NO" 
visibility="visible">Specifies that you do not want any option field to be the 
default choice.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git 
a/main/helpcontent2/source/text/shared/explorer/database/05030200.xhp 
b/main/helpcontent2/source/text/shared/explorer/database/05030200.xhp
index 9474977265..af6d9addfe 100644
--- a/main/helpcontent2/source/text/shared/explorer/database/05030200.xhp
+++ b/main/helpcontent2/source/text/shared/explorer/database/05030200.xhp
@@ -30,22 +30,22 @@
 </meta>
 <body>
 <section id="tabkop2">
-<paragraph role="heading" id="hd_id3150445" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/explorer/database/05030200.xhp" 
name="Apply columns">Apply columns</link></paragraph>
-<paragraph role="paragraph" id="par_id3147143" 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. The <emph>Apply columns</emph> 
dialog is the second window of the <emph>Copy table</emph> dialog.</paragraph>
+<paragraph role="heading" id="hd_id3150445" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/explorer/database/05030200.xhp" name="Apply 
columns">Apply columns</link></paragraph>
+<paragraph role="paragraph" id="par_id3147143" 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. The <emph>Apply columns</emph> dialog is the 
second window of the <emph>Copy table</emph> dialog.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3155552" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Existing columns</paragraph>
+<paragraph role="heading" id="hd_id3155552" xml-lang="en-US" level="2" 
l10n="U">Existing columns</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_ORG_COLUMN_NAMES" 
id="bm_id3155805" localize="false"/>
-<paragraph role="heading" id="hd_id3154751" xml-lang="en-US" level="3" 
l10n="U" oldref="4">Left list box</paragraph>
-<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" l10n="CHG" 
oldref="5"><ahelp 
hid="DBACCESS_MULTILISTBOX_TAB_WIZ_COLUMN_SELECT_LB_ORG_COLUMN_NAMES">Lists the 
available data fields that you can include in the copied table. To copy a data 
field, click its name, and then click the &gt; button. To copy all of the 
fields, click the <emph>&gt;&gt;</emph> button.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154751" xml-lang="en-US" level="3" 
l10n="U">Left list box</paragraph>
+<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" 
l10n="CHG"><ahelp 
hid="DBACCESS_MULTILISTBOX_TAB_WIZ_COLUMN_SELECT_LB_ORG_COLUMN_NAMES">Lists the 
available data fields that you can include in the copied table. To copy a data 
field, click its name, and then click the &gt; button. To copy all of the 
fields, click the <emph>&gt;&gt;</emph> button.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_NEW_COLUMN_NAMES" 
id="bm_id3149827" localize="false"/>
-<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="3" 
l10n="U" oldref="6">Right list box</paragraph>
-<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp 
hid="DBACCESS_MULTILISTBOX_TAB_WIZ_COLUMN_SELECT_LB_NEW_COLUMN_NAMES">Lists the 
fields that you want to include in the copied table.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="3" 
l10n="U">Right list box</paragraph>
+<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" 
l10n="U"><ahelp 
hid="DBACCESS_MULTILISTBOX_TAB_WIZ_COLUMN_SELECT_LB_NEW_COLUMN_NAMES">Lists the 
fields that you want to include in the copied table.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_RH" 
id="bm_id3152781" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_RH" 
id="bm_id3147653" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_LH" 
id="bm_id3151110" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_LH" 
id="bm_id3152996" localize="false"/>
-<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="3" 
l10n="U" oldref="8">Buttons</paragraph>
-<paragraph role="paragraph" id="par_id3146797" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_COLUMN_SELECT_IB_COLUMNS_LH">Adds or removes 
the selected field (&gt; or &lt; button) or all of the fields (&lt;&lt; or 
&gt;&gt; button).</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3153561" xml-lang="en-US" l10n="U" 
oldref="10"><link href="text/shared/explorer/database/05030300.xhp" name="Next 
page">Next page</link></paragraph>
+<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="3" 
l10n="U">Buttons</paragraph>
+<paragraph role="paragraph" id="par_id3146797" xml-lang="en-US" 
l10n="U"><ahelp 
hid="DBACCESS_IMAGEBUTTON_TAB_WIZ_COLUMN_SELECT_IB_COLUMNS_LH">Adds or removes 
the selected field (&gt; or &lt; button) or all of the fields (&lt;&lt; or 
&gt;&gt; button).</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3153561" xml-lang="en-US" l10n="U"><link 
href="text/shared/explorer/database/05030300.xhp" name="Next page">Next 
page</link></paragraph>
 </body>
 </helpdocument>
diff --git 
a/main/helpcontent2/source/text/shared/guide/copytable2application.xhp 
b/main/helpcontent2/source/text/shared/guide/copytable2application.xhp
index 4b2914c06f..da1d551484 100644
--- a/main/helpcontent2/source/text/shared/guide/copytable2application.xhp
+++ b/main/helpcontent2/source/text/shared/guide/copytable2application.xhp
@@ -37,23 +37,23 @@
 <bookmark_value>text documents;inserting spreadsheet cells</bookmark_value>
 <bookmark_value>tables in spreadsheets;copying data to other 
applications</bookmark_value>
 </bookmark><comment>mw deleted "tables;" and added "charts;" and "tables in 
spreadsheets;"</comment>
-<paragraph role="heading" id="hd_id3154186" xml-lang="en-US" level="1" 
l10n="U" oldref="9"><variable id="copytable2application"><link 
href="text/shared/guide/copytable2application.xhp" name="Inserting Data From 
Spreadsheets">Inserting Data From Spreadsheets</link>
+<paragraph role="heading" id="hd_id3154186" xml-lang="en-US" level="1" 
l10n="U"><variable id="copytable2application"><link 
href="text/shared/guide/copytable2application.xhp" name="Inserting Data From 
Spreadsheets">Inserting Data From Spreadsheets</link>
 </variable></paragraph>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3147088" xml-lang="en-US" l10n="U" 
oldref="10">Use the clipboard to copy the contents of a single cell. You can 
also copy a formula from a cell into the clipboard (for example, from the input 
line of the formula bar) so that the formula can be inserted into a 
text.</paragraph>
+<paragraph role="listitem" id="par_id3147088" xml-lang="en-US" l10n="U">Use 
the clipboard to copy the contents of a single cell. You can also copy a 
formula from a cell into the clipboard (for example, from the input line of the 
formula bar) so that the formula can be inserted into a text.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3145345" xml-lang="en-US" l10n="U" 
oldref="11">To copy a cell range into a text document, select the cell range in 
the sheet and then use either the clipboard or drag-and-drop to insert the 
cells into the text document. You will then find an OLE object in the text 
document, which you can edit further.</paragraph>
+<paragraph role="listitem" id="par_id3145345" xml-lang="en-US" l10n="U">To 
copy a cell range into a text document, select the cell range in the sheet and 
then use either the clipboard or drag-and-drop to insert the cells into the 
text document. You will then find an OLE object in the text document, which you 
can edit further.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3146957" xml-lang="en-US" l10n="CHG" 
oldref="12">If you drag cells to the normal view of a presentation document, 
the cells will be inserted there as an OLE object. If you drag cells into the 
outline view, each cell will form a line of the outline view.</paragraph>
+<paragraph role="listitem" id="par_id3146957" xml-lang="en-US" l10n="CHG">If 
you drag cells to the normal view of a presentation document, the cells will be 
inserted there as an OLE object. If you drag cells into the outline view, each 
cell will form a line of the outline view.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148538" xml-lang="en-US" l10n="CHG" 
oldref="13">When you copy a cell range from $[officename] Calc to the 
clipboard, the drawing objects, OLE objects and charts within this range are 
also copied.</paragraph>
+<paragraph role="listitem" id="par_id3148538" xml-lang="en-US" l10n="CHG">When 
you copy a cell range from $[officename] Calc to the clipboard, the drawing 
objects, OLE objects and charts within this range are also copied.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153031" xml-lang="en-US" l10n="U" 
oldref="14">If you insert a cell range with an enclosed chart, the chart will 
keep its link to the source cell range only if you copied the chart and the 
source cell range together.</paragraph>
+<paragraph role="listitem" id="par_id3153031" xml-lang="en-US" l10n="U">If you 
insert a cell range with an enclosed chart, the chart will keep its link to the 
source cell range only if you copied the chart and the source cell range 
together.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/shared/guide/redlining_docmerge.xhp 
b/main/helpcontent2/source/text/shared/guide/redlining_docmerge.xhp
index 0e8386e026..4bd9df754b 100644
--- a/main/helpcontent2/source/text/shared/guide/redlining_docmerge.xhp
+++ b/main/helpcontent2/source/text/shared/guide/redlining_docmerge.xhp
@@ -34,23 +34,23 @@
 <bookmark_value>merging; documents</bookmark_value>
 <bookmark_value>versions;merging document versions</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3154230" xml-lang="en-US" level="1" 
l10n="U" oldref="17"><variable id="redlining_docmerge"><link 
href="text/shared/guide/redlining_docmerge.xhp" name="Merging Versions">Merging 
Versions</link>
+<paragraph role="heading" id="hd_id3154230" xml-lang="en-US" level="1" 
l10n="U"><variable id="redlining_docmerge"><link 
href="text/shared/guide/redlining_docmerge.xhp" name="Merging Versions">Merging 
Versions</link>
 </variable></paragraph>
 <paragraph role="note" id="par_id2136295" xml-lang="en-US" l10n="NEW">The 
review function is available in %PRODUCTNAME for text documents and spreadsheet 
documents.</paragraph>
-<paragraph role="paragraph" id="par_id3153049" xml-lang="en-US" l10n="U" 
oldref="19">When a document has been edited by more than one person, it is 
possible to merge the edited copies into the original. The only requirement is 
that the documents differ only and exclusively in the recorded changes - all 
other original text must be identical.</paragraph>
+<paragraph role="paragraph" id="par_id3153049" xml-lang="en-US" l10n="U">When 
a document has been edited by more than one person, it is possible to merge the 
edited copies into the original. The only requirement is that the documents 
differ only and exclusively in the recorded changes - all other original text 
must be identical.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3152425" xml-lang="en-US" l10n="U" 
oldref="20">Open the original document into which you want to merge all 
copies.</paragraph>
+<paragraph role="listitem" id="par_id3152425" xml-lang="en-US" l10n="U">Open 
the original document into which you want to merge all copies.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3149177" xml-lang="en-US" l10n="U" 
oldref="21">Choose <emph>Edit - Changes - Merge Document</emph>. A file 
selection dialog appears.</paragraph>
+<paragraph role="listitem" id="par_id3149177" xml-lang="en-US" l10n="U">Choose 
<emph>Edit - Changes - Merge Document</emph>. A file selection dialog 
appears.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U" 
oldref="23">Select the copy of the document from the dialog. If there have been 
no subsequent changes to the original document, the copy is merged into the 
original.</paragraph>
-<paragraph role="listitem" id="par_id3149182" xml-lang="en-US" l10n="U" 
oldref="24">If changes have been made to the original document, an error dialog 
appears that informs you that the merge is unsuccessful.</paragraph>
+<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U">Select 
the copy of the document from the dialog. If there have been no subsequent 
changes to the original document, the copy is merged into the 
original.</paragraph>
+<paragraph role="listitem" id="par_id3149182" xml-lang="en-US" l10n="U">If 
changes have been made to the original document, an error dialog appears that 
informs you that the merge is unsuccessful.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3154749" xml-lang="en-US" l10n="U" 
oldref="22">After you merge the documents you will see the recorded changes 
from the copy in the original document.</paragraph>
+<paragraph role="listitem" id="par_id3154749" xml-lang="en-US" l10n="U">After 
you merge the documents you will see the recorded changes from the copy in the 
original document.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/01/02130000.xhp 
b/main/helpcontent2/source/text/swriter/01/02130000.xhp
index 6a0a0753c7..078edf56d2 100644
--- a/main/helpcontent2/source/text/swriter/01/02130000.xhp
+++ b/main/helpcontent2/source/text/swriter/01/02130000.xhp
@@ -31,25 +31,25 @@
 <body>
 <bookmark xml-lang="en-US" branch="hid/.uno:AuthoritiesEntryDialog" 
id="bm_id3717844" localize="false"/><!-- HID added by script -->
 <bookmark branch="hid/.uno:AuthoritiesEntryDialog" xml-lang="en-US" 
id="bm_id3154491"/>
-<paragraph role="heading" level="1" id="hd_id3147434" l10n="U" 
xml-lang="en-US" oldref="1">Edit Bibliography Entry</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3145253" xml-lang="en-US" 
oldref="2"><variable id="litvz"><ahelp hid=".uno:AuthoritiesEntryDialog" 
visibility="visible">Edits the selected bibliography 
entry.</ahelp></variable></paragraph>
+<paragraph role="heading" level="1" id="hd_id3147434" l10n="U" 
xml-lang="en-US">Edit Bibliography Entry</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3145253" 
xml-lang="en-US"><variable id="litvz"><ahelp hid=".uno:AuthoritiesEntryDialog" 
visibility="visible">Edits the selected bibliography 
entry.</ahelp></variable></paragraph>
 <section id="howtoget">
 <embed href="text/swriter/00/00000402.xhp#lit"/>
 </section>
-<paragraph role="heading" level="2" id="hd_id3147340" l10n="U" 
xml-lang="en-US" oldref="4">Entry</paragraph>
-<paragraph role="heading" level="3" id="hd_id3155961" l10n="U" 
xml-lang="en-US" oldref="6">Short name</paragraph>
-<paragraph role="paragraph" id="par_id3154657" l10n="U" xml-lang="en-US" 
oldref="7">Displays the abbreviation for the bibliography entry.</paragraph>
-<paragraph role="heading" level="3" id="hd_id3148837" l10n="U" 
xml-lang="en-US" oldref="8">Author, Title</paragraph>
-<paragraph role="paragraph" id="par_id3152741" l10n="U" xml-lang="en-US" 
oldref="9">Displays the author and title information contained in the 
bibliography entry.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3150214" l10n="U" 
xml-lang="en-US" oldref="10">Modify</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3154766" l10n="U" 
oldref="11">Applies the changes that you made, and then closes the <emph>Edit 
Bibliography Entry</emph> dialog.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3146968" l10n="U" 
xml-lang="en-US" oldref="12">Close</paragraph>
-<paragraph role="paragraph" id="par_id3166468" l10n="U" xml-lang="en-US" 
oldref="13">Closes the dialog.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3147299" l10n="U" 
xml-lang="en-US" oldref="14">New</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3151389" l10n="U" 
oldref="15">Opens the <link href="text/swriter/01/04120229.xhp" name="Define 
Bibliography Entry">Define Bibliography Entry</link> dialog, where you can 
create a new entry.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3150534" l10n="U" 
xml-lang="en-US" oldref="16">Edit</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3155620" l10n="U" 
oldref="17">Opens the <link href="text/swriter/01/04120229.xhp" name="Define 
Bibliography Entry">Define Bibliography Entry</link> dialog, where you can edit 
the current entry.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3147340" l10n="U" 
xml-lang="en-US">Entry</paragraph>
+<paragraph role="heading" level="3" id="hd_id3155961" l10n="U" 
xml-lang="en-US">Short name</paragraph>
+<paragraph role="paragraph" id="par_id3154657" l10n="U" 
xml-lang="en-US">Displays the abbreviation for the bibliography 
entry.</paragraph>
+<paragraph role="heading" level="3" id="hd_id3148837" l10n="U" 
xml-lang="en-US">Author, Title</paragraph>
+<paragraph role="paragraph" id="par_id3152741" l10n="U" 
xml-lang="en-US">Displays the author and title information contained in the 
bibliography entry.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3150214" l10n="U" 
xml-lang="en-US">Modify</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3154766" 
l10n="U">Applies the changes that you made, and then closes the <emph>Edit 
Bibliography Entry</emph> dialog.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3146968" l10n="U" 
xml-lang="en-US">Close</paragraph>
+<paragraph role="paragraph" id="par_id3166468" l10n="U" 
xml-lang="en-US">Closes the dialog.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3147299" l10n="U" 
xml-lang="en-US">New</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3151389" l10n="U">Opens 
the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography 
Entry">Define Bibliography Entry</link> dialog, where you can create a new 
entry.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3150534" l10n="U" 
xml-lang="en-US">Edit</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3155620" l10n="U">Opens 
the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography 
Entry">Define Bibliography Entry</link> dialog, where you can edit the current 
entry.</paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
-<paragraph l10n="U" role="paragraph" id="par_id3154560" xml-lang="en-US" 
oldref="3"><link href="text/swriter/guide/indices_literature.xhp" name="Tips 
for working with bibliography entries">Tips for working with bibliography 
entries</link>.</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3154560" xml-lang="en-US"><link 
href="text/swriter/guide/indices_literature.xhp" name="Tips for working with 
bibliography entries">Tips for working with bibliography 
entries</link>.</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/hyperlinks.xhp 
b/main/helpcontent2/source/text/swriter/guide/hyperlinks.xhp
index 984c483e89..d764c603d3 100644
--- a/main/helpcontent2/source/text/swriter/guide/hyperlinks.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/hyperlinks.xhp
@@ -35,31 +35,30 @@
 <bookmark_value>cross-references; inserting with Navigator</bookmark_value>
 <bookmark_value>Navigator;inserting hyperlinks</bookmark_value>
 </bookmark><comment>mw deleted "adding;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3155845" role="heading" level="1" l10n="U"
-oldref="21"><variable id="hyperlinks"><link 
href="text/swriter/guide/hyperlinks.xhp" name="Inserting Hyperlinks With the 
Navigator">Inserting Hyperlinks With the Navigator</link>
+<paragraph xml-lang="en-US" id="hd_id3155845" role="heading" level="1" 
l10n="U"><variable id="hyperlinks"><link 
href="text/swriter/guide/hyperlinks.xhp" name="Inserting Hyperlinks With the 
Navigator">Inserting Hyperlinks With the Navigator</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155858" role="paragraph" l10n="U" 
oldref="20">You can insert a cross-reference as a hyperlink in your document 
using the Navigator. You can even cross-reference items from other <item 
type="productname">%PRODUCTNAME</item> documents. If you click the hyperlink 
when the document is opened in <item type="productname">%PRODUCTNAME</item>, 
you are taken to the cross-referenced item.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155858" role="paragraph" l10n="U">You 
can insert a cross-reference as a hyperlink in your document using the 
Navigator. You can even cross-reference items from other <item 
type="productname">%PRODUCTNAME</item> documents. If you click the hyperlink 
when the document is opened in <item type="productname">%PRODUCTNAME</item>, 
you are taken to the cross-referenced item.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149833" role="listitem" l10n="U" 
oldref="32">Open the document(s) containing the items you want to 
cross-reference.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149833" role="listitem" l10n="U">Open 
the document(s) containing the items you want to cross-reference.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3148846" role="listitem" l10n="U" 
oldref="23">On the Standard bar, click the <emph>Navigator</emph> 
icon.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148846" role="listitem" l10n="U">On the 
Standard bar, click the <emph>Navigator</emph> icon.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156108" role="listitem" l10n="U" 
oldref="25">Click the arrow next to the <item type="menuitem">Drag Mode</item> 
icon, and ensure that <item type="menuitem">Insert as Hyperlink</item> is 
selected.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156108" role="listitem" l10n="U">Click 
the arrow next to the <item type="menuitem">Drag Mode</item> icon, and ensure 
that <item type="menuitem">Insert as Hyperlink</item> is selected.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153396" role="listitem" l10n="U" 
oldref="31">In the list at the bottom of the Navigator, select the document 
containing the item that you want to cross-reference.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153396" role="listitem" l10n="U">In the 
list at the bottom of the Navigator, select the document containing the item 
that you want to cross-reference.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153416" role="listitem" l10n="U" 
oldref="24">In the Navigator list, click the plus sign next to the item that 
you want to insert as a hyperlink.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153416" role="listitem" l10n="U">In the 
Navigator list, click the plus sign next to the item that you want to insert as 
a hyperlink.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153133" role="listitem" l10n="U" 
oldref="26">Drag the item to where you want to insert the hyperlink in the 
document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153133" role="listitem" l10n="U">Drag 
the item to where you want to insert the hyperlink in the document.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3149635" role="paragraph" l10n="U" 
oldref="27">The name of the item is inserted in the document as an underlined 
hyperlink.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149635" role="paragraph" l10n="U">The 
name of the item is inserted in the document as an underlined 
hyperlink.</paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
 <embed href="text/shared/guide/navigator.xhp#navigator"/>
 <embed href="text/swriter/guide/arrange_chapters.xhp#arrange_chapters"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/indices_delete.xhp 
b/main/helpcontent2/source/text/swriter/guide/indices_delete.xhp
index 4fc58ee874..67bb52a805 100644
--- a/main/helpcontent2/source/text/swriter/guide/indices_delete.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/indices_delete.xhp
@@ -35,27 +35,26 @@
 <bookmark_value>deleting;entries of indexes/tables of contents</bookmark_value>
 <bookmark_value>editing;table/index entries</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3155186" role="heading" level="1" l10n="U"
-oldref="11"><variable id="indices_delete"><link 
href="text/swriter/guide/indices_delete.xhp" name="Editing or Deleting Index 
and Table Entries">Editing or Deleting Index and Table Entries</link>
+<paragraph xml-lang="en-US" id="hd_id3155186" role="heading" level="1" 
l10n="U"><variable id="indices_delete"><link 
href="text/swriter/guide/indices_delete.xhp" name="Editing or Deleting Index 
and Table Entries">Editing or Deleting Index and Table Entries</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155855" role="paragraph" l10n="U" 
oldref="12">Index entries are inserted as fields into your document. To view 
fields in your document, choose <item type="menuitem">View</item> and ensure 
that <item type="menuitem">Field Shadings</item> is selected.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155855" role="paragraph" l10n="U">Index 
entries are inserted as fields into your document. To view fields in your 
document, choose <item type="menuitem">View</item> and ensure that <item 
type="menuitem">Field Shadings</item> is selected.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155507" role="listitem" l10n="U" 
oldref="13">Place the cursor immediately in front of the index entry in your 
document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155507" role="listitem" l10n="U">Place 
the cursor immediately in front of the index entry in your document.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155526" role="listitem" l10n="U" 
oldref="16">Choose <emph>Edit - Index Entry</emph>, and do one of the 
following:</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155526" role="listitem" l10n="U">Choose 
<emph>Edit - Index Entry</emph>, and do one of the following:</paragraph>
 </listitem>
 </list>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3154238" xml-lang="en-US" l10n="U" 
oldref="17">To change the entry, enter different text in the <emph>Entry</emph> 
box.</paragraph>
+<paragraph role="listitem" id="par_id3154238" xml-lang="en-US" l10n="U">To 
change the entry, enter different text in the <emph>Entry</emph> 
box.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3154263" xml-lang="en-US" l10n="U" 
oldref="18">To remove the entry, click <emph>Delete</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3154263" xml-lang="en-US" l10n="U">To 
remove the entry, click <emph>Delete</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3155893" role="paragraph" l10n="U" 
oldref="15">To cycle through the index entries in your document, click the next 
or the previous arrows in the <link href="text/swriter/01/02160000.xhp" 
name="Edit Index Entry dialog"><emph>Edit Index Entry</emph> 
dialog</link>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155893" role="paragraph" l10n="U">To 
cycle through the index entries in your document, click the next or the 
previous arrows in the <link href="text/swriter/01/02160000.xhp" name="Edit 
Index Entry dialog"><emph>Edit Index Entry</emph> dialog</link>.</paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
 <embed href="text/swriter/guide/indices_toc.xhp#indices_toc"/>
 <embed href="text/swriter/guide/indices_enter.xhp#indices_enter"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/text_rotate.xhp 
b/main/helpcontent2/source/text/swriter/guide/text_rotate.xhp
index 40ec73139d..ead4e00704 100644
--- a/main/helpcontent2/source/text/swriter/guide/text_rotate.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/text_rotate.xhp
@@ -33,35 +33,34 @@
 <bookmark_value>text; rotating</bookmark_value>
 <bookmark_value>rotating;text</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3155911" role="heading" level="1" l10n="U"
-oldref="65"><variable id="text_rotate"><link 
href="text/swriter/guide/text_rotate.xhp" name="Rotating Text">Rotating 
Text</link>
+<paragraph xml-lang="en-US" id="hd_id3155911" role="heading" level="1" 
l10n="U"><variable id="text_rotate"><link 
href="text/swriter/guide/text_rotate.xhp" name="Rotating Text">Rotating 
Text</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147410" role="paragraph" l10n="U" 
oldref="66">You can only rotate text that is contained in a drawing 
object.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147410" role="paragraph" l10n="U">You 
can only rotate text that is contained in a drawing object.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153130" role="listitem" l10n="CHG" 
oldref="67">Choose <item type="menuitem">View - Toolbars- Drawing</item> to 
open the <item type="menuitem">Drawing</item> toolbar.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153130" role="listitem" 
l10n="CHG">Choose <item type="menuitem">View - Toolbars- Drawing</item> to open 
the <item type="menuitem">Drawing</item> toolbar.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149866" role="listitem" l10n="CHG" 
oldref="68">Select the <link href="text/shared/02/01140000.xhp" 
name="Text"><item type="menuitem">Text</item></link> icon 
+<paragraph xml-lang="en-US" id="par_id3149866" role="listitem" 
l10n="CHG">Select the <link href="text/shared/02/01140000.xhp" 
name="Text"><item type="menuitem">Text</item></link> icon 
 <image id="img_id3149600" src="res/commandimagelist/sc_texttoolbox.png" 
width="0.222in" height="0.222in"><alt xml-lang="en-US" 
id="alt_id3149600">Icon</alt>
 </image>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149590" role="listitem" l10n="U" 
oldref="69">Drag in your document to draw the text object, and then type your 
text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149590" role="listitem" l10n="U">Drag 
in your document to draw the text object, and then type your text.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154415" role="listitem" l10n="CHG" 
oldref="71">Click outside of the object, then click the text you entered. Click 
the <link href="text/shared/02/05090000.xhp" name="Object Rotation Mode"><item 
type="menuitem">Rotate</item></link> icon 
+<paragraph xml-lang="en-US" id="par_id3154415" role="listitem" 
l10n="CHG">Click outside of the object, then click the text you entered. Click 
the <link href="text/shared/02/05090000.xhp" name="Object Rotation Mode"><item 
type="menuitem">Rotate</item></link> icon 
 <image id="img_id3145405" 
src="res/commandimagelist/sc_toggleobjectrotatemode.png" width="0.222in" 
height="0.222in"><alt xml-lang="en-US" id="alt_id3145405">Icon</alt>
 </image> on the <item type="menuitem">Drawing Object Properties</item> 
toolbar.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154252" role="listitem" l10n="U" 
oldref="72">Drag one of the corner handles of the text object.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154252" role="listitem" l10n="U">Drag 
one of the corner handles of the text object.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3154844" role="tip" l10n="U" 
oldref="73">You can also right-click the text object, choose <emph>Position and 
Size</emph>, click the <emph>Rotation</emph> tab, and then enter a rotation 
angle or a new position for the object.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154844" role="tip" l10n="U">You can 
also right-click the text object, choose <emph>Position and Size</emph>, click 
the <emph>Rotation</emph> tab, and then enter a rotation angle or a new 
position for the object.</paragraph>
 <section id="relatedtopics">
 <embed href="text/swriter/guide/text_emphasize.xhp#text_emphasize"/>
-<paragraph xml-lang="en-US" id="par_id3155888" role="paragraph" l10n="CHG" 
oldref="74"><link href="text/shared/02/01140000.xhp" name="Show Draw 
Functions">Show Draw Functions</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3155888" role="paragraph" 
l10n="CHG"><link href="text/shared/02/01140000.xhp" name="Show Draw 
Functions">Show Draw Functions</link></paragraph>
 </section>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/main0106.xhp 
b/main/helpcontent2/source/text/swriter/main0106.xhp
index 5d84f672cb..9cfb5a4480 100644
--- a/main/helpcontent2/source/text/swriter/main0106.xhp
+++ b/main/helpcontent2/source/text/swriter/main0106.xhp
@@ -31,23 +31,23 @@
 <body>
 <section id="extras">
 <bookmark xml-lang="en-US" branch="hid/.uno:ToolsMenu" id="bm_id8101443" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147241" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/swriter/main0106.xhp" 
name="Tools">Tools</link></paragraph>
-<paragraph role="paragraph" id="par_id3147258" xml-lang="en-US" l10n="CHG" 
oldref="2"><ahelp hid=".">Contains spelling tools, a gallery of object art that 
you can add to your document, as well as tools for configuring menus, and 
setting program preferences.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147241" xml-lang="en-US" level="1" 
l10n="U"><link href="text/swriter/main0106.xhp" 
name="Tools">Tools</link></paragraph>
+<paragraph role="paragraph" id="par_id3147258" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Contains spelling tools, a gallery of object art that 
you can add to your document, as well as tools for configuring menus, and 
setting program preferences.</ahelp></paragraph>
 </section>
 <embed href="text/shared/01/06990000.xhp#rechtschreibung"/>
 <embed href="text/shared/01/06010500.xhp#language"/>
 <embed href="text/swriter/01/06040000.xhp#wordcount"/>
-<paragraph role="heading" id="hd_id3149965" xml-lang="en-US" level="2" 
l10n="U" oldref="8"><link href="text/swriter/01/06060000.xhp" name="Outline 
Numbering">Outline Numbering</link></paragraph>
+<paragraph role="heading" id="hd_id3149965" xml-lang="en-US" level="2" 
l10n="U"><link href="text/swriter/01/06060000.xhp" name="Outline 
Numbering">Outline Numbering</link></paragraph>
 <embed href="text/swriter/01/06060000.xhp#kapnum"/>
-<paragraph role="heading" id="hd_id3145688" xml-lang="en-US" level="2" 
l10n="U" oldref="15"><link href="text/swriter/01/06180000.xhp" name="Line 
Numbering">Line Numbering</link></paragraph>
+<paragraph role="heading" id="hd_id3145688" xml-lang="en-US" level="2" 
l10n="U"><link href="text/swriter/01/06180000.xhp" name="Line Numbering">Line 
Numbering</link></paragraph>
 <embed href="text/swriter/01/06180000.xhp#zeinum"/>
-<paragraph role="heading" id="hd_id3145713" xml-lang="en-US" level="2" 
l10n="U" oldref="10"><link href="text/swriter/01/06080000.xhp" 
name="Footnotes">Footnotes</link></paragraph>
+<paragraph role="heading" id="hd_id3145713" xml-lang="en-US" level="2" 
l10n="U"><link href="text/swriter/01/06080000.xhp" 
name="Footnotes">Footnotes</link></paragraph>
 <embed href="text/swriter/01/06080000.xhp#fnoten"/>
 <embed href="text/shared/01/gallery.xhp#stargallery"/>
 <embed href="text/shared/01/02250000.xhp#litdat"/>
 <embed href="text/shared/01/02250000.xhp#litdattext"/>
 <embed href="text/swriter/01/mailmerge00.xhp#mailmerge"/>
-<paragraph role="heading" id="hd_id3147346" xml-lang="en-US" level="2" 
l10n="U" oldref="12"><link href="text/swriter/01/06100000.xhp" 
name="Sort">Sort</link></paragraph>
+<paragraph role="heading" id="hd_id3147346" xml-lang="en-US" level="2" 
l10n="U"><link href="text/swriter/01/06100000.xhp" 
name="Sort">Sort</link></paragraph>
 <embed href="text/swriter/01/06100000.xhp#sort"/>
 <embed href="text/swriter/01/06110000.xhp#berechnen"/>
 <embed href="text/swriter/01/06990000.xhp#aktualisieren"/>
@@ -55,9 +55,9 @@
 <embed href="text/shared/01/06130001.xhp#macro"/>
 <embed href="text/shared/01/packagemanager.xhp#packagemanager"/>
 <embed href="text/shared/01/06150000.xhp#xmlfilter"/>
-<paragraph role="heading" id="hd_id3149939" xml-lang="en-US" level="2" 
l10n="CHG" oldref="6"><link href="text/shared/01/06040000.xhp" 
name="AutoCorrect">AutoCorrect Options</link></paragraph>
+<paragraph role="heading" id="hd_id3149939" xml-lang="en-US" level="2" 
l10n="CHG"><link href="text/shared/01/06040000.xhp" 
name="AutoCorrect">AutoCorrect Options</link></paragraph>
 <embed href="text/shared/01/06040000.xhp#autoko"/>
-<paragraph role="heading" id="hd_id3147406" xml-lang="en-US" level="2" 
l10n="CHG" oldref="14"><link href="text/shared/01/06140000.xhp" 
name="Customize">Customize</link></paragraph>
+<paragraph role="heading" id="hd_id3147406" xml-lang="en-US" level="2" 
l10n="CHG"><link href="text/shared/01/06140000.xhp" 
name="Customize">Customize</link></paragraph>
 <embed href="text/shared/01/06140000.xhp#anpassen"/>
 <embed href="text/shared/optionen/01000000.xhp#optionen"/>
 </body>

Reply via email to