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

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


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

commit 4de4f6ee02d7dc3b74ed133e777965ff0efd2a1f
Author: mseidel <msei...@apache.org>
AuthorDate: Fri Jan 17 18:57:16 2025 +0100

    Remove 'oldref' entries (work in progress)
---
 .../source/text/sbasic/shared/01010210.xhp         | 31 ++++++++--------
 .../helpcontent2/source/text/scalc/01/04020000.xhp | 24 ++++++-------
 .../helpcontent2/source/text/scalc/01/06060100.xhp | 30 ++++++++--------
 .../source/text/shared/01/02100100.xhp             | 30 ++++++++--------
 .../source/text/shared/01/05020700.xhp             | 21 ++++++-----
 .../source/text/shared/01/06040500.xhp             | 32 ++++++++---------
 .../source/text/shared/autopi/01010400.xhp         |  6 ++--
 .../text/shared/explorer/database/11030100.xhp     | 32 ++++++++---------
 .../source/text/shared/guide/accessibility.xhp     | 22 ++++++------
 .../source/text/shared/guide/border_table.xhp      | 28 +++++++--------
 .../text/shared/guide/copytext2application.xhp     | 23 ++++++------
 .../text/shared/guide/insert_specialchar.xhp       | 22 ++++++------
 .../text/simpress/guide/animated_slidechange.xhp   | 34 +++++++++---------
 .../source/text/swriter/01/05060800.xhp            | 42 ++++++++++------------
 .../source/text/swriter/guide/hyphen_prevent.xhp   | 17 +++++----
 .../source/text/swriter/guide/indices_enter.xhp    | 30 ++++++++--------
 .../source/text/swriter/guide/indices_userdef.xhp  | 35 +++++++++---------
 .../source/text/swriter/guide/insert_line.xhp      | 17 +++++----
 .../source/text/swriter/guide/search_regexp.xhp    | 28 +++++++--------
 .../source/text/swriter/guide/table_cells.xhp      | 17 +++++----
 20 files changed, 252 insertions(+), 269 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/01010210.xhp 
b/main/helpcontent2/source/text/sbasic/shared/01010210.xhp
index d161009dbc..0567613018 100644
--- a/main/helpcontent2/source/text/sbasic/shared/01010210.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/01010210.xhp
@@ -36,23 +36,22 @@
 <bookmark_value>variables;global and local</bookmark_value>
 <bookmark_value>modules;subroutines and functions</bookmark_value>
 </bookmark><comment>mw changed "Basic;fundamentals"</comment>
-<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/01010210.xhp" 
name="Basics">Basics</link></paragraph>
-<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U" 
oldref="14">This section provides the fundamentals for working with 
$[officename] Basic.</paragraph>
+<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/01010210.xhp" 
name="Basics">Basics</link></paragraph>
+<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U">This 
section provides the fundamentals for working with $[officename] 
Basic.</paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="U" 
oldref="2">$[officename] Basic code is based on subroutines and functions that 
are specified between <emph>sub...end sub</emph> and <emph>function...end 
function</emph> sections. Each Sub or Function can call other Subs and 
Functions. If you take care to write generic code for a Sub or Function, you 
can probably re-use it in other programs. See also <link 
href="text/sbasic/shared/01020300.xhp" name="Procedures and F [...]
+<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" 
l10n="U">$[officename] Basic code is based on subroutines and functions that 
are specified between <emph>sub...end sub</emph> and <emph>function...end 
function</emph> sections. Each Sub or Function can call other Subs and 
Functions. If you take care to write generic code for a Sub or Function, you 
can probably re-use it in other programs. See also <link 
href="text/sbasic/shared/01020300.xhp" name="Procedures and Functions">P [...]
 <paragraph role="note" id="par_id314756320" xml-lang="en-US" l10n="NEW">Some 
restrictions apply for the names of your public variables, subs, and functions. 
You must not use the same name as one of the modules of the same 
library.</paragraph>
-<paragraph role="heading" id="hd_id3150398" xml-lang="en-US" level="2" 
l10n="U" oldref="3">What is a Sub?</paragraph>
-<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U" 
oldref="4">
-<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to 
handle a certain task within a program. Subs are used to split a task into 
individual procedures. Splitting a program into procedures and sub-procedures 
enhances readability and reduces the error-proneness. A sub possibly takes some 
arguments as parameters but does not return any values back to the calling sub 
or function, for example:</paragraph>
-<paragraph role="code" id="par_id3150868" xml-lang="en-US" l10n="U" 
oldref="15">DoSomethingWithTheValues(MyFirstValue,MySecondValue)</paragraph>
-<paragraph role="heading" id="hd_id3156282" xml-lang="en-US" level="2" 
l10n="U" oldref="5">What is a Function?</paragraph>
-<paragraph role="paragraph" id="par_id3156424" xml-lang="en-US" l10n="U" 
oldref="6">A <emph>function</emph> is essentially a sub, which returns a value. 
You may use a function at the right side of a variable declaration, or at other 
places where you normally use values, for example:</paragraph>
-<paragraph role="code" id="par_id3146985" xml-lang="en-US" l10n="U" 
oldref="7">MySecondValue = myFunction(MyFirstValue)</paragraph>
-<paragraph role="heading" id="hd_id3153364" xml-lang="en-US" level="2" 
l10n="U" oldref="8">Global and local variables</paragraph>
-<paragraph role="paragraph" id="par_id3151112" xml-lang="en-US" l10n="U" 
oldref="9">Global variables are valid for all subs and functions inside a 
module. They are declared at the beginning of a module before the first sub or 
function starts.</paragraph>
-<paragraph role="paragraph" id="par_id3154012" xml-lang="en-US" l10n="U" 
oldref="10">Variables that you declare within a sub or function are valid only 
inside this sub or function. These variables override global variables with the 
same name and local variables with the same name coming from superordinate subs 
or functions.</paragraph>
-<paragraph role="heading" id="hd_id3150010" xml-lang="en-US" level="2" 
l10n="U" oldref="11">Structuring</paragraph>
-<paragraph role="paragraph" id="par_id3153727" xml-lang="en-US" l10n="U" 
oldref="12">After separating your program into procedures and functions (Subs 
and Functions), you can save these procedures and functions as files for reuse 
in other projects. $[officename] Basic supports <link 
href="text/sbasic/shared/01020500.xhp" name="Modules and Libraries">Modules and 
Libraries</link>. Subs and functions are always contained in modules. You can 
define modules to be global or part of a document. [...]
-<paragraph role="paragraph" id="par_id3152578" xml-lang="en-US" l10n="U" 
oldref="13">You can copy or move subs, functions, modules and libraries from 
one file to another by using the <link 
href="text/sbasic/shared/01/06130000.xhp" name="Macro">Macro</link> 
dialog.</paragraph>
+<paragraph role="heading" id="hd_id3150398" xml-lang="en-US" level="2" 
l10n="U">What is a Sub?</paragraph>
+<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" 
l10n="U"><emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is 
used to handle a certain task within a program. Subs are used to split a task 
into individual procedures. Splitting a program into procedures and 
sub-procedures enhances readability and reduces the error-proneness. A sub 
possibly takes some arguments as parameters but does not return any values back 
to the calling sub or function, for example:</p [...]
+<paragraph role="code" id="par_id3150868" xml-lang="en-US" 
l10n="U">DoSomethingWithTheValues(MyFirstValue,MySecondValue)</paragraph>
+<paragraph role="heading" id="hd_id3156282" xml-lang="en-US" level="2" 
l10n="U">What is a Function?</paragraph>
+<paragraph role="paragraph" id="par_id3156424" xml-lang="en-US" l10n="U">A 
<emph>function</emph> is essentially a sub, which returns a value. You may use 
a function at the right side of a variable declaration, or at other places 
where you normally use values, for example:</paragraph>
+<paragraph role="code" id="par_id3146985" xml-lang="en-US" 
l10n="U">MySecondValue = myFunction(MyFirstValue)</paragraph>
+<paragraph role="heading" id="hd_id3153364" xml-lang="en-US" level="2" 
l10n="U">Global and local variables</paragraph>
+<paragraph role="paragraph" id="par_id3151112" xml-lang="en-US" 
l10n="U">Global variables are valid for all subs and functions inside a module. 
They are declared at the beginning of a module before the first sub or function 
starts.</paragraph>
+<paragraph role="paragraph" id="par_id3154012" xml-lang="en-US" 
l10n="U">Variables that you declare within a sub or function are valid only 
inside this sub or function. These variables override global variables with the 
same name and local variables with the same name coming from superordinate subs 
or functions.</paragraph>
+<paragraph role="heading" id="hd_id3150010" xml-lang="en-US" level="2" 
l10n="U">Structuring</paragraph>
+<paragraph role="paragraph" id="par_id3153727" xml-lang="en-US" l10n="U">After 
separating your program into procedures and functions (Subs and Functions), you 
can save these procedures and functions as files for reuse in other projects. 
$[officename] Basic supports <link href="text/sbasic/shared/01020500.xhp" 
name="Modules and Libraries">Modules and Libraries</link>. Subs and functions 
are always contained in modules. You can define modules to be global or part of 
a document. Multiple mo [...]
+<paragraph role="paragraph" id="par_id3152578" xml-lang="en-US" l10n="U">You 
can copy or move subs, functions, modules and libraries from one file to 
another by using the <link href="text/sbasic/shared/01/06130000.xhp" 
name="Macro">Macro</link> dialog.</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/01/04020000.xhp 
b/main/helpcontent2/source/text/scalc/01/04020000.xhp
index 4966bf0d90..efdbdda4a6 100644
--- a/main/helpcontent2/source/text/scalc/01/04020000.xhp
+++ b/main/helpcontent2/source/text/scalc/01/04020000.xhp
@@ -36,36 +36,36 @@
 </bookmark>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCell" id="bm_id6503296" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCell" id="bm_id3147264" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="1" 
l10n="U" oldref="1"> Insert Cells</paragraph>
-<paragraph role="paragraph" id="par_id3150542" xml-lang="en-US" l10n="U" 
oldref="2"><variable id="zelleneinfuegentext"><ahelp 
hid=".uno:InsertCell">Opens the <emph>Insert Cells</emph> dialog, in which you 
can insert new cells according to the options that you specify.</ahelp>
+<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="1" 
l10n="U"> Insert Cells</paragraph>
+<paragraph role="paragraph" id="par_id3150542" xml-lang="en-US" 
l10n="U"><variable id="zelleneinfuegentext"><ahelp hid=".uno:InsertCell">Opens 
the <emph>Insert Cells</emph> dialog, in which you can insert new cells 
according to the options that you specify.</ahelp>
 </variable> You can delete cells by choosing <link 
href="text/scalc/01/02160000.xhp" name="Edit - Delete Cells"><emph>Edit - 
Delete Cells</emph></link>.</paragraph>
 <section id="howtoget">
 <embed href="text/scalc/00/00000404.xhp#eize"/>
 </section>
-<paragraph role="heading" id="hd_id3153768" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Selection</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U" 
oldref="4">This area contains the options available for inserting cells into a 
sheet. The cell quantity and position is defined by selecting a cell range in 
the sheet beforehand.</paragraph>
+<paragraph role="heading" id="hd_id3153768" xml-lang="en-US" level="2" 
l10n="U">Selection</paragraph>
+<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U">This 
area contains the options available for inserting cells into a sheet. The cell 
quantity and position is defined by selecting a cell range in the sheet 
beforehand.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCellsDown" id="bm_id6210706" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCellsDown" id="bm_id3152578" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSDOWN" id="bm_id3145271" 
localize="false"/>
-<paragraph role="heading" id="hd_id3146120" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Shift cells down</paragraph>
-<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" l10n="U" 
oldref="6"><variable id="zellenuntentext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN">Moves the contents of the 
selected range downward when cells are inserted.</ahelp>
+<paragraph role="heading" id="hd_id3146120" xml-lang="en-US" level="3" 
l10n="U">Shift cells down</paragraph>
+<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" 
l10n="U"><variable id="zellenuntentext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN">Moves the contents of the 
selected range downward when cells are inserted.</ahelp>
 </variable></paragraph>
 <embed href="text/scalc/00/00000404.xhp#syzellenunten"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCellsRight" 
id="bm_id7689959" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:InsertCellsRight" 
id="bm_id3151118" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSRIGHT" id="bm_id3147348" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147434" xml-lang="en-US" level="3" 
l10n="U" oldref="7">Shift cells right</paragraph>
-<paragraph role="paragraph" id="par_id3144764" xml-lang="en-US" l10n="U" 
oldref="8"><variable id="zellenrechtstext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT">Moves the contents of the 
selected range to the right when cells are inserted.</ahelp>
+<paragraph role="heading" id="hd_id3147434" xml-lang="en-US" level="3" 
l10n="U">Shift cells right</paragraph>
+<paragraph role="paragraph" id="par_id3144764" xml-lang="en-US" 
l10n="U"><variable id="zellenrechtstext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT">Moves the contents of the 
selected range to the right when cells are inserted.</ahelp>
 </variable></paragraph>
 <embed href="text/scalc/00/00000404.xhp#syzellenrechts"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSROWS" id="bm_id3154731" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153877" xml-lang="en-US" level="3" 
l10n="U" oldref="9">Entire row</paragraph>
-<paragraph role="paragraph" id="par_id3155417" xml-lang="en-US" l10n="U" 
oldref="10"><variable id="zeilenganzetext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS">Inserts an entire row. The 
position of the row is determined by the selection on the sheet.</ahelp>
+<paragraph role="heading" id="hd_id3153877" xml-lang="en-US" level="3" 
l10n="U">Entire row</paragraph>
+<paragraph role="paragraph" id="par_id3155417" xml-lang="en-US" 
l10n="U"><variable id="zeilenganzetext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS">Inserts an entire row. The 
position of the row is determined by the selection on the sheet.</ahelp>
 </variable> The number of rows inserted depends on how many rows are selected. 
The contents of the original rows are moved downward.</paragraph>
 <embed href="text/scalc/00/00000404.xhp#syzeilenganze"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSCOLS" id="bm_id3150750" 
localize="false"/>
-<paragraph role="heading" id="hd_id3146971" xml-lang="en-US" level="3" 
l10n="U" oldref="11">Entire column</paragraph>
-<paragraph role="paragraph" id="par_id3155068" xml-lang="en-US" l10n="CHG" 
oldref="12"><variable id="spaltenganzetext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS">Inserts an entire column. 
The number of columns to be inserted is determined by the selected number of 
columns.</ahelp>
+<paragraph role="heading" id="hd_id3146971" xml-lang="en-US" level="3" 
l10n="U">Entire column</paragraph>
+<paragraph role="paragraph" id="par_id3155068" xml-lang="en-US" 
l10n="CHG"><variable id="spaltenganzetext"><ahelp 
hid="SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS">Inserts an entire column. 
The number of columns to be inserted is determined by the selected number of 
columns.</ahelp>
 </variable> The contents of the original columns are shifted to the 
right.</paragraph>
 <embed href="text/scalc/00/00000404.xhp#syspaltenganze"/>
 </body>
diff --git a/main/helpcontent2/source/text/scalc/01/06060100.xhp 
b/main/helpcontent2/source/text/scalc/01/06060100.xhp
index fda892260d..e50df2e0cc 100644
--- a/main/helpcontent2/source/text/scalc/01/06060100.xhp
+++ b/main/helpcontent2/source/text/scalc/01/06060100.xhp
@@ -31,24 +31,24 @@
 <body>
 <bookmark xml-lang="en-US" branch="hid/.uno:Protect" id="bm_id5349783" 
localize="false"/><!-- HID added by script -->
 <bookmark xml-lang="en-US" branch="hid/.uno:Protect" id="bm_id3156326" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153087" xml-lang="en-US" level="1" 
l10n="U" oldref="1">Protecting Sheet</paragraph>
-<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" l10n="CHG" 
oldref="2"><variable id="tabelletext"><ahelp hid=".uno:Protect">Protects the 
cells in the current sheet from being modified.</ahelp>
+<paragraph role="heading" id="hd_id3153087" xml-lang="en-US" level="1" 
l10n="U">Protecting Sheet</paragraph>
+<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" 
l10n="CHG"><variable id="tabelletext"><ahelp hid=".uno:Protect">Protects the 
cells in the current sheet from being modified.</ahelp>
 </variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the 
<emph>Protect Sheet</emph> dialog in which you then specify sheet protection 
with or without a password.</paragraph>
 <section id="howtoget">
 <embed href="text/scalc/00/00000406.xhp#exdst"/>
 </section>
-<paragraph role="warning" id="par_id3149664" xml-lang="en-US" l10n="U" 
oldref="5">To protect cells from further editing, the <emph>Protected</emph> 
check box must be checked on the <link href="text/scalc/01/05020600.xhp" 
name="Format - Cells - Cell Protection"><emph>Format - Cells - Cell 
Protection</emph></link> tab page or on the <emph>Format Cells</emph> context 
menu.</paragraph>
-<paragraph role="tip" id="par_id3154490" xml-lang="en-US" l10n="U" 
oldref="8">Unprotected cells or cell ranges can be set up on a protected sheet 
by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - 
Cells - Cell Protection</emph> menus:</paragraph>
-<paragraph role="tip" id="par_id3149123" xml-lang="en-US" l10n="U" 
oldref="16">Select the cells that will be unprotected</paragraph>
-<paragraph role="tip" id="par_id3150329" xml-lang="en-US" l10n="U" 
oldref="17">Select <emph>Format - Cells - Cell Protection</emph>. Unmark the 
<emph>Protected</emph> box and click <emph>OK</emph>.</paragraph>
-<paragraph role="tip" id="par_id3156384" xml-lang="en-US" l10n="U" 
oldref="18">On the <emph>Tools - Protect Document - Sheet</emph> menu, activate 
protection for the sheet. Effective immediately, only the cell range you 
selected in step 1 can be edited.</paragraph>
-<paragraph role="tip" id="par_id3149566" xml-lang="en-US" l10n="U" 
oldref="9">To later change an unprotected area to a protected area, select the 
range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, 
check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect 
Document - Sheet</emph> menu. The previously editable range is now 
protected.</paragraph>
-<paragraph role="tip" id="par_id3153964" xml-lang="en-US" l10n="CHG" 
oldref="10">Sheet protection also affects the context menu of the sheet tabs at 
the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> 
commands cannot be selected.</paragraph>
-<paragraph role="tip" id="par_id3150301" xml-lang="en-US" l10n="U" 
oldref="19">If a sheet is protected, you will not be able to modify or delete 
any Cell Styles.</paragraph>
-<paragraph role="paragraph" id="par_id3154656" xml-lang="en-US" l10n="U" 
oldref="3">A protected sheet or cell range can no longer be modified until this 
protection is disabled. To disable the protection, choose the <emph>Tools - 
Protect Document - Sheet</emph> command. If no password was set, the sheet 
protection is immediately disabled. If the sheet was password protected, the 
<emph>Remove Protection</emph> dialog opens, where you must enter the 
password.</paragraph>
-<paragraph role="paragraph" id="par_id3149815" xml-lang="en-US" l10n="U" 
oldref="11">Once saved, protected sheets can only be saved again by using the 
<emph>File - Save As</emph> command.</paragraph>
-<paragraph role="heading" id="hd_id3150206" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Password (optional)</paragraph>
-<paragraph role="paragraph" id="par_id3152990" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp hid=".uno:Protect">Allows you to enter a password to protect 
the sheet from unauthorized changes.</ahelp></paragraph>
-<paragraph role="note" id="par_id3148700" xml-lang="en-US" l10n="U" 
oldref="12">Complete protection of your work can be achieved by combining both 
options on the <emph>Tools - Protect Document</emph> menu, including password 
protection. To prohibit opening the document altogether, in the 
<emph>Save</emph> dialog mark the <emph>Save with password</emph> box before 
you click the <emph>Save</emph> button.</paragraph>
+<paragraph role="warning" id="par_id3149664" xml-lang="en-US" l10n="U">To 
protect cells from further editing, the <emph>Protected</emph> check box must 
be checked on the <link href="text/scalc/01/05020600.xhp" name="Format - Cells 
- Cell Protection"><emph>Format - Cells - Cell Protection</emph></link> tab 
page or on the <emph>Format Cells</emph> context menu.</paragraph>
+<paragraph role="tip" id="par_id3154490" xml-lang="en-US" l10n="U">Unprotected 
cells or cell ranges can be set up on a protected sheet by using the 
<emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell 
Protection</emph> menus:</paragraph>
+<paragraph role="tip" id="par_id3149123" xml-lang="en-US" l10n="U">Select the 
cells that will be unprotected</paragraph>
+<paragraph role="tip" id="par_id3150329" xml-lang="en-US" l10n="U">Select 
<emph>Format - Cells - Cell Protection</emph>. Unmark the 
<emph>Protected</emph> box and click <emph>OK</emph>.</paragraph>
+<paragraph role="tip" id="par_id3156384" xml-lang="en-US" l10n="U">On the 
<emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the 
sheet. Effective immediately, only the cell range you selected in step 1 can be 
edited.</paragraph>
+<paragraph role="tip" id="par_id3149566" xml-lang="en-US" l10n="U">To later 
change an unprotected area to a protected area, select the range. Next, on the 
<emph>Format - Cells - Cell Protection</emph> tab page, check the 
<emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document 
- Sheet</emph> menu. The previously editable range is now protected.</paragraph>
+<paragraph role="tip" id="par_id3153964" xml-lang="en-US" l10n="CHG">Sheet 
protection also affects the context menu of the sheet tabs at the bottom of the 
screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be 
selected.</paragraph>
+<paragraph role="tip" id="par_id3150301" xml-lang="en-US" l10n="U">If a sheet 
is protected, you will not be able to modify or delete any Cell 
Styles.</paragraph>
+<paragraph role="paragraph" id="par_id3154656" xml-lang="en-US" l10n="U">A 
protected sheet or cell range can no longer be modified until this protection 
is disabled. To disable the protection, choose the <emph>Tools - Protect 
Document - Sheet</emph> command. If no password was set, the sheet protection 
is immediately disabled. If the sheet was password protected, the <emph>Remove 
Protection</emph> dialog opens, where you must enter the password.</paragraph>
+<paragraph role="paragraph" id="par_id3149815" xml-lang="en-US" l10n="U">Once 
saved, protected sheets can only be saved again by using the <emph>File - Save 
As</emph> command.</paragraph>
+<paragraph role="heading" id="hd_id3150206" xml-lang="en-US" level="2" 
l10n="U">Password (optional)</paragraph>
+<paragraph role="paragraph" id="par_id3152990" xml-lang="en-US" 
l10n="U"><ahelp hid=".uno:Protect">Allows you to enter a password to protect 
the sheet from unauthorized changes.</ahelp></paragraph>
+<paragraph role="note" id="par_id3148700" xml-lang="en-US" l10n="U">Complete 
protection of your work can be achieved by combining both options on the 
<emph>Tools - Protect Document</emph> menu, including password protection. To 
prohibit opening the document altogether, in the <emph>Save</emph> dialog mark 
the <emph>Save with password</emph> box before you click the <emph>Save</emph> 
button.</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/02100100.xhp 
b/main/helpcontent2/source/text/shared/01/02100100.xhp
index e8f7523c7c..dcf06107c1 100644
--- a/main/helpcontent2/source/text/shared/01/02100100.xhp
+++ b/main/helpcontent2/source/text/shared/01/02100100.xhp
@@ -37,29 +37,29 @@
 <bookmark xml-lang="en-US" 
branch="hid/svx:CheckBox:RID_SVXDLG_SEARCH:CB_SIMILARITY" id="bm_id3148410" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_SEARCH_APPROX" 
id="bm_id3154814" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_SEARCH_APPROXSETTINGS" 
id="bm_id3154817" localize="false"/>
-<paragraph role="heading" id="hd_id3156045" xml-lang="en-US" level="1" 
l10n="U" oldref="52"><link href="text/shared/01/02100100.xhp" name="Similarity 
Search">Similarity Search</link></paragraph>
-<paragraph role="paragraph" id="par_id3146856" xml-lang="en-US" l10n="U" 
oldref="53"><ahelp hid="SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_SIMILARITY">Find 
terms that are similar to the <emph>Search for</emph> text. Select this 
checkbox, and then click the <emph>...</emph> button to define the similarity 
options.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156045" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/02100100.xhp" name="Similarity 
Search">Similarity Search</link></paragraph>
+<paragraph role="paragraph" id="par_id3146856" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_SIMILARITY">Find terms 
that are similar to the <emph>Search for</emph> text. Select this checkbox, and 
then click the <emph>...</emph> button to define the similarity 
options.</ahelp></paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3149551" xml-lang="en-US" l10n="CHG" 
oldref="66">For example, a similarity search can find words that differ from 
the <emph>Search for</emph> text by two characters.</paragraph>
+<paragraph role="paragraph" id="par_id3149551" xml-lang="en-US" l10n="CHG">For 
example, a similarity search can find words that differ from the <emph>Search 
for</emph> text by two characters.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000402.xhp#suchenaehnlichkeit"/>
 </section>
 <bookmark xml-lang="en-US" 
branch="hid/svx:PushButton:RID_SVXDLG_SEARCH:PB_SIMILARITY" id="bm_id3155351" 
localize="false"/>
-<paragraph role="heading" id="hd_id3154621" xml-lang="en-US" level="2" 
l10n="U" oldref="54">...</paragraph>
-<paragraph role="paragraph" id="par_id3145629" xml-lang="en-US" l10n="U" 
oldref="55"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_SIMILARITY">Set the 
options for the similarity search.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149511" xml-lang="en-US" level="2" 
l10n="U" oldref="56">Settings</paragraph>
-<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" l10n="U" 
oldref="57">Define the criteria for determining if a word is similar to the 
search term.</paragraph>
+<paragraph role="heading" id="hd_id3154621" xml-lang="en-US" level="2" 
l10n="U">...</paragraph>
+<paragraph role="paragraph" id="par_id3145629" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_SIMILARITY">Set the 
options for the similarity search.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149511" xml-lang="en-US" level="2" 
l10n="U">Settings</paragraph>
+<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" 
l10n="U">Define the criteria for determining if a word is similar to the search 
term.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_OTHER" 
id="bm_id3155338" localize="false"/>
-<paragraph role="heading" id="hd_id3153551" xml-lang="en-US" level="3" 
l10n="U" oldref="58">Exchange characters</paragraph>
-<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US" l10n="U" 
oldref="59"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_OTHER">Enter the number of 
characters in the search term that can be exchanged.</ahelp> For example, if 
you specify 2 exchanged characters, "black" and "crack" are considered 
similar.</paragraph>
+<paragraph role="heading" id="hd_id3153551" xml-lang="en-US" level="3" 
l10n="U">Exchange characters</paragraph>
+<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_OTHER">Enter the number of 
characters in the search term that can be exchanged.</ahelp> For example, if 
you specify 2 exchanged characters, "black" and "crack" are considered 
similar.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_LONGER" 
id="bm_id3150443" localize="false"/>
-<paragraph role="heading" id="hd_id3147010" xml-lang="en-US" level="3" 
l10n="U" oldref="60">Add characters</paragraph>
-<paragraph role="paragraph" id="par_id3109847" xml-lang="en-US" l10n="U" 
oldref="61"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_LONGER">Enter the maximum 
number of characters by which a word can exceed the number of characters in the 
search term.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147010" xml-lang="en-US" level="3" 
l10n="U">Add characters</paragraph>
+<paragraph role="paragraph" id="par_id3109847" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_LONGER">Enter the maximum 
number of characters by which a word can exceed the number of characters in the 
search term.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_SHORTER" 
id="bm_id3158430" localize="false"/>
-<paragraph role="heading" id="hd_id3166460" xml-lang="en-US" level="3" 
l10n="U" oldref="62">Remove characters</paragraph>
-<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" l10n="U" 
oldref="63"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_SHORTER">Enter the number 
of characters by which a word can be shorter than the search 
term.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3166460" xml-lang="en-US" level="3" 
l10n="U">Remove characters</paragraph>
+<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_SHORTER">Enter the number 
of characters by which a word can be shorter than the search 
term.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:CheckBox:RID_SVXDLG_SEARCHSIMILARITY:CB_RELAX" 
id="bm_id3159400" localize="false"/>
-<paragraph role="heading" id="hd_id3153700" xml-lang="en-US" level="3" 
l10n="U" oldref="64">Combine</paragraph>
-<paragraph role="paragraph" id="par_id3156553" xml-lang="en-US" l10n="U" 
oldref="65"><ahelp 
hid="SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX">Searches for a term 
that matches any combination of the similarity search 
settings.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153700" xml-lang="en-US" level="3" 
l10n="U">Combine</paragraph>
+<paragraph role="paragraph" id="par_id3156553" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX">Searches for a term 
that matches any combination of the similarity search 
settings.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/05020700.xhp 
b/main/helpcontent2/source/text/shared/01/05020700.xhp
index 443e0da6e6..7c471ffef1 100644
--- a/main/helpcontent2/source/text/shared/01/05020700.xhp
+++ b/main/helpcontent2/source/text/shared/01/05020700.xhp
@@ -36,25 +36,24 @@
 <bookmark_value>paragraphs; Asian typography</bookmark_value>
 <bookmark_value>typography; Asian</bookmark_value>
 </bookmark><comment>MW changed "formats;" to "formatting;"</comment>
-<paragraph role="heading" id="hd_id3155620" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/01/05020700.xhp" name="Asian 
Typography">Asian Typography</link></paragraph>
-<paragraph role="paragraph" id="par_id3153124" xml-lang="en-US" l10n="CHG" 
oldref="2"><ahelp hid=".">Set the typographic options for cells or paragraphs 
in Asian language files. To enable Asian language support, choose 
<emph>Language Settings - Languages</emph> in the Options dialog box, and then 
select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> 
area.</ahelp> The Asian typography options are ignored in HTML 
documents.</paragraph>
+<paragraph role="heading" id="hd_id3155620" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/05020700.xhp" name="Asian Typography">Asian 
Typography</link></paragraph>
+<paragraph role="paragraph" id="par_id3153124" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Set the typographic options for cells or paragraphs 
in Asian language files. To enable Asian language support, choose 
<emph>Language Settings - Languages</emph> in the Options dialog box, and then 
select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> 
area.</ahelp> The Asian typography options are ignored in HTML 
documents.</paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00040500.xhp#asitypo"/>
 </section>
-<paragraph role="heading" id="hd_id3147571" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Line change</paragraph>
-<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" l10n="U" 
oldref="4">Set the options for line breaks in Asian language 
documents.</paragraph>
+<paragraph role="heading" id="hd_id3147571" xml-lang="en-US" level="2" 
l10n="U">Line change</paragraph>
+<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" l10n="U">Set 
the options for line breaks in Asian language documents.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_FORBIDDEN" 
id="bm_id3155355" localize="false"/>
-<paragraph role="heading" id="hd_id3145072" xml-lang="en-US" level="3" 
l10n="U" oldref="9">Apply list of forbidden characters to the beginning and end 
of line</paragraph>
-<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_FORBIDDEN">Prevents the 
characters in the list from starting or ending a line. The characters are 
relocated to either the previous or the next line.</ahelp> To edit the list of 
restricted characters, choose <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline> [...]
+<paragraph role="heading" id="hd_id3145072" xml-lang="en-US" level="3" 
l10n="U">Apply list of forbidden characters to the beginning and end of 
line</paragraph>
+<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_FORBIDDEN">Prevents the 
characters in the list from starting or ending a line. The characters are 
relocated to either the previous or the next line.</ahelp> To edit the list of 
restricted characters, choose <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinli [...]
 <bookmark xml-lang="en-US" 
branch="hid/cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_HANG_PUNC" 
id="bm_id3156410" localize="false"/>
-<paragraph role="heading" id="hd_id3149751" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Allow hanging punctuation</paragraph>
-<paragraph role="paragraph" id="par_id3149096" xml-lang="en-US" l10n="U" 
oldref="6"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_HANG_PUNC">Prevents commas 
and periods from breaking the line. Instead, these characters are added to the 
end of the line, even in the page margin.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149751" xml-lang="en-US" level="3" 
l10n="U">Allow hanging punctuation</paragraph>
+<paragraph role="paragraph" id="par_id3149096" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_HANG_PUNC">Prevents commas 
and periods from breaking the line. Instead, these characters are added to the 
end of the line, even in the page margin.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_SCRIPT_SPACE" 
id="bm_id3149811" localize="false"/>
-<paragraph role="heading" id="par_id3147275" xml-lang="en-US" level="3" 
l10n="U" oldref="7">
-<emph>Apply spacing between Asian, Latin and Complex text</emph>
+<paragraph role="heading" id="par_id3147275" xml-lang="en-US" level="3" 
l10n="U"><emph>Apply spacing between Asian, Latin and Complex text</emph>
 </paragraph>
-<paragraph role="paragraph" id="par_id3148539" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_SCRIPT_SPACE">Inserts a space 
between Asian, Latin and complex characters.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3148539" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_SCRIPT_SPACE">Inserts a space 
between Asian, Latin and complex characters.</ahelp></paragraph>
 <section id="relatedtopics">
 <paragraph role="paragraph" id="par_id3153665" xml-lang="en-US" l10n="C"><link 
href="text/shared/optionen/01140000.xhp" name="Enabling Asian language 
support">Enabling Asian language support</link></paragraph>
 </section>
diff --git a/main/helpcontent2/source/text/shared/01/06040500.xhp 
b/main/helpcontent2/source/text/shared/01/06040500.xhp
index 4754e708e1..6ae2bab209 100644
--- a/main/helpcontent2/source/text/shared/01/06040500.xhp
+++ b/main/helpcontent2/source/text/shared/01/06040500.xhp
@@ -33,32 +33,32 @@
 <bookmark_value>AutoCorrect function; context menu</bookmark_value>
 <bookmark_value>spellcheck; context menus</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3152823" xml-lang="en-US" level="1" 
l10n="U" oldref="1">AutoCorrect context menu</paragraph>
-<paragraph role="paragraph" id="par_id3146936" xml-lang="en-US" l10n="CHG" 
oldref="2">To access this menu, right-click a misspelled word in your document. 
To view the misspelled words in your document, enable 
<emph>AutoSpellcheck</emph> icon on the Standard toolbar.</paragraph>
+<paragraph role="heading" id="hd_id3152823" xml-lang="en-US" level="1" 
l10n="U">AutoCorrect context menu</paragraph>
+<paragraph role="paragraph" id="par_id3146936" xml-lang="en-US" l10n="CHG">To 
access this menu, right-click a misspelled word in your document. To view the 
misspelled words in your document, enable <emph>AutoSpellcheck</emph> icon on 
the Standard toolbar.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_REPLACE" id="bm_id3151097" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153899" xml-lang="en-US" level="2" 
l10n="U" oldref="4">&lt;Replacement Suggestions&gt;</paragraph>
-<paragraph role="paragraph" id="par_id3147000" xml-lang="en-US" l10n="CHG" 
oldref="5"><ahelp hid="HID_LINGU_REPLACE">Click the word to replace the 
highlighted word. Use the AutoCorrect submenu for permanent 
replacement.</ahelp><comment>UFI: see i60431</comment></paragraph>
+<paragraph role="heading" id="hd_id3153899" xml-lang="en-US" level="2" 
l10n="U">&lt;Replacement Suggestions&gt;</paragraph>
+<paragraph role="paragraph" id="par_id3147000" xml-lang="en-US" 
l10n="CHG"><ahelp hid="HID_LINGU_REPLACE">Click the word to replace the 
highlighted word. Use the AutoCorrect submenu for permanent 
replacement.</ahelp><comment>UFI: see i60431</comment></paragraph>
 <bookmark xml-lang="en-US" branch="hid/EDITENG_HID_EDITENG_SPELLER_START" 
id="bm_id3155934" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_SPELLING_DLG" 
id="bm_id3155351" localize="false"/>
-<paragraph role="heading" id="hd_id3153089" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Spellcheck</paragraph>
-<paragraph role="paragraph" id="par_id3154497" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp hid="HID_LINGU_SPELLING_DLG">Opens the <link 
href="text/shared/01/06010000.xhp" name="Spellcheck">Spellcheck</link> 
dialog.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153089" xml-lang="en-US" level="2" 
l10n="U">Spellcheck</paragraph>
+<paragraph role="paragraph" id="par_id3154497" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_SPELLING_DLG">Opens the <link 
href="text/shared/01/06010000.xhp" name="Spellcheck">Spellcheck</link> 
dialog.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/EDITENG_HID_EDITENG_SPELLER_ADDWORD" 
id="bm_id3154422" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_ADD_WORD" 
id="bm_id3153551" localize="false"/>
-<paragraph role="heading" id="hd_id3149283" xml-lang="en-US" level="2" 
l10n="U" oldref="8">Add</paragraph>
-<paragraph role="paragraph" id="par_id3158405" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp hid="HID_LINGU_ADD_WORD">Adds the highlighted word to a 
user-defined dictionary.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149283" xml-lang="en-US" level="2" 
l10n="U">Add</paragraph>
+<paragraph role="paragraph" id="par_id3158405" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_ADD_WORD">Adds the highlighted word to a 
user-defined dictionary.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/EDITENG_HID_EDITENG_SPELLER_IGNORE" 
id="bm_id3147571" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_IGNORE_WORD" 
id="bm_id3150144" localize="false"/>
-<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Ignore all</paragraph>
-<paragraph role="paragraph" id="par_id3151226" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp hid="HID_LINGU_IGNORE_WORD">Ignores all instances of the 
highlighted word in the current document.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="2" 
l10n="U">Ignore all</paragraph>
+<paragraph role="paragraph" id="par_id3151226" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_IGNORE_WORD">Ignores all instances of the 
highlighted word in the current document.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/EDITENG_HID_EDITENG_SPELLER_AUTOCORRECT" id="bm_id3145345" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_AUTOCORR" 
id="bm_id3145313" localize="false"/>
-<paragraph role="heading" id="hd_id3157958" xml-lang="en-US" level="2" 
l10n="U" oldref="12">AutoCorrect</paragraph>
-<paragraph role="paragraph" id="par_id3149177" xml-lang="en-US" l10n="U" 
oldref="13"><ahelp hid="HID_LINGU_AUTOCORR">To always replace the highlighted 
word, click a word in the list. The word pair is stored in the replacement 
table under Tools - AutoCorrect Options - Replace.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3157958" xml-lang="en-US" level="2" 
l10n="U">AutoCorrect</paragraph>
+<paragraph role="paragraph" id="par_id3149177" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_AUTOCORR">To always replace the highlighted 
word, click a word in the list. The word pair is stored in the replacement 
table under Tools - AutoCorrect Options - Replace.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_WORD_LANGUAGE" 
id="bm_id3149398" localize="false"/>
-<paragraph role="heading" id="hd_id3146797" xml-lang="en-US" level="2" 
l10n="U" oldref="15">Word is &lt;name of language&gt;</paragraph>
-<paragraph role="paragraph" id="par_id3150443" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp hid="HID_LINGU_WORD_LANGUAGE">Changes the language settings 
for the highlighted word, if the word is found in another 
dictionary.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3146797" xml-lang="en-US" level="2" 
l10n="U">Word is &lt;name of language&gt;</paragraph>
+<paragraph role="paragraph" id="par_id3150443" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_WORD_LANGUAGE">Changes the language settings for 
the highlighted word, if the word is found in another 
dictionary.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LINGU_PARA_LANGUAGE" 
id="bm_id3150503" localize="false"/>
-<paragraph role="heading" id="hd_id3166411" xml-lang="en-US" level="2" 
l10n="U" oldref="17">Paragraph is &lt;name of language&gt;</paragraph>
-<paragraph role="paragraph" id="par_id3148925" xml-lang="en-US" l10n="U" 
oldref="18"><ahelp hid="HID_LINGU_PARA_LANGUAGE">Changes the language setting 
for the paragraph that contains the highlighted word, if the word is found in 
another dictionary.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3166411" xml-lang="en-US" level="2" 
l10n="U">Paragraph is &lt;name of language&gt;</paragraph>
+<paragraph role="paragraph" id="par_id3148925" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINGU_PARA_LANGUAGE">Changes the language setting for 
the paragraph that contains the highlighted word, if the word is found in 
another dictionary.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/autopi/01010400.xhp 
b/main/helpcontent2/source/text/shared/autopi/01010400.xhp
index cf6e284e8c..ed6763e796 100644
--- a/main/helpcontent2/source/text/shared/autopi/01010400.xhp
+++ b/main/helpcontent2/source/text/shared/autopi/01010400.xhp
@@ -32,8 +32,8 @@
 <body>
 <section id="seite4">
 <bookmark xml-lang="en-US" branch="hid/SW_HID_LETTER_PAGE4" id="bm_id3153311" 
localize="false"/>
-<paragraph role="heading" id="hd_id3154288" xml-lang="en-US" level="1" 
l10n="CHG" oldref="1"><link href="text/shared/autopi/01010400.xhp" name="Letter 
Wizard - Recipient and sender">Letter Wizard - Recipient and 
sender</link></paragraph>
-<paragraph role="paragraph" id="par_id3159233" xml-lang="en-US" l10n="CHG" 
oldref="2"><ahelp hid="HID_LETTER_PAGE4">Specifies the sender and recipient 
information.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154288" xml-lang="en-US" level="1" 
l10n="CHG"><link href="text/shared/autopi/01010400.xhp" name="Letter Wizard - 
Recipient and sender">Letter Wizard - Recipient and sender</link></paragraph>
+<paragraph role="paragraph" id="par_id3159233" xml-lang="en-US" 
l10n="CHG"><ahelp hid="HID_LETTER_PAGE4">Specifies the sender and recipient 
information.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00000401.xhp#autopilotbrief4"/>
@@ -65,6 +65,6 @@
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_OPTRECEIVERDATABASE" 
id="bm_id7027497" localize="false"/>
 <paragraph role="heading" id="par_idN1069C" xml-lang="en-US" level="3" 
l10n="NEW">Use address database for mail merge</paragraph>
 <paragraph role="paragraph" id="par_idN1069F" xml-lang="en-US" 
l10n="NEW"><ahelp hid="HID_LTRWIZ_OPTRECEIVERDATABASE">Address database fields 
are inserted into the letter template.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="CHG" 
oldref="18"><link href="text/shared/autopi/01010500.xhp" name="Go to Letter 
Wizard - Footer">Go to Letter Wizard - Footer</link></paragraph>
+<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" 
l10n="CHG"><link href="text/shared/autopi/01010500.xhp" name="Go to Letter 
Wizard - Footer">Go to Letter Wizard - Footer</link></paragraph>
 </body>
 </helpdocument>
diff --git 
a/main/helpcontent2/source/text/shared/explorer/database/11030100.xhp 
b/main/helpcontent2/source/text/shared/explorer/database/11030100.xhp
index 0ffa2e62ba..6f521cdba5 100644
--- a/main/helpcontent2/source/text/shared/explorer/database/11030100.xhp
+++ b/main/helpcontent2/source/text/shared/explorer/database/11030100.xhp
@@ -29,31 +29,31 @@
 </topic>
 </meta>
 <body>
-<paragraph role="heading" id="hd_id3148983" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/explorer/database/11030100.xhp" 
name="Indexes">Indexes</link></paragraph>
-<paragraph role="paragraph" id="par_id3150247" xml-lang="en-US" l10n="CHG" 
oldref="2"><ahelp hid=".">Lets you organize dBASE database indexes.</ahelp> An 
index allows you to access a database quickly, provided that you query the data 
in the selection that was defined through the index. When you design a table, 
you can define the indexes on the <emph>Indexes</emph> tab page.</paragraph>
+<paragraph role="heading" id="hd_id3148983" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/explorer/database/11030100.xhp" 
name="Indexes">Indexes</link></paragraph>
+<paragraph role="paragraph" id="par_id3150247" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Lets you organize dBASE database indexes.</ahelp> An 
index allows you to access a database quickly, provided that you query the data 
in the selection that was defined through the index. When you design a table, 
you can define the indexes on the <emph>Indexes</emph> tab page.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000450.xhp#dBasein"/>
 </section>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ComboBox:DLG_DBASE_INDEXES:CB_TABLES" id="bm_id3146958" 
localize="false"/>
-<paragraph role="heading" id="hd_id3155339" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Table</paragraph>
-<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid="DBACCESS_COMBOBOX_DLG_DBASE_INDEXES_CB_TABLES">Select 
the database table that you want to index.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155339" xml-lang="en-US" level="2" 
l10n="U">Table</paragraph>
+<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_COMBOBOX_DLG_DBASE_INDEXES_CB_TABLES">Select the 
database table that you want to index.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_DBASE_INDEXES:LB_TABLEINDEXES" 
id="bm_id3153312" localize="false"/>
-<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Table Indexes</paragraph>
-<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp 
hid="DBACCESS_LISTBOX_DLG_DBASE_INDEXES_LB_TABLEINDEXES">Lists the current 
indexes for the selected database table.</ahelp> To remove an index from the 
list, click the index, and then click the right arrow.</paragraph>
+<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="2" 
l10n="U">Table Indexes</paragraph>
+<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_LISTBOX_DLG_DBASE_INDEXES_LB_TABLEINDEXES">Lists 
the current indexes for the selected database table.</ahelp> To remove an index 
from the list, click the index, and then click the right arrow.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_DBASE_INDEXES:LB_FREEINDEXES" 
id="bm_id3147276" localize="false"/>
-<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Free Indexes</paragraph>
-<paragraph role="paragraph" id="par_id3151110" xml-lang="en-US" l10n="U" 
oldref="12"><ahelp 
hid="DBACCESS_LISTBOX_DLG_DBASE_INDEXES_LB_FREEINDEXES">Lists the available 
indexes that you can assign to a table.</ahelp> To assign an index to a 
selected table, click the left arrow icon. The left double arrow assigns all 
available indexes.</paragraph>
+<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="2" 
l10n="U">Free Indexes</paragraph>
+<paragraph role="paragraph" id="par_id3151110" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_LISTBOX_DLG_DBASE_INDEXES_LB_FREEINDEXES">Lists 
the available indexes that you can assign to a table.</ahelp> To assign an 
index to a selected table, click the left arrow icon. The left double arrow 
assigns all available indexes.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADD" id="bm_id3146949" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="2" 
l10n="U" oldref="6">&lt;</paragraph>
-<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" l10n="U" 
oldref="13"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_ADD">Moves 
the selected index to the <emph>Table Indexes</emph> list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="2" 
l10n="U">&lt;</paragraph>
+<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_ADD">Moves the 
selected index to the <emph>Table Indexes</emph> list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADDALL" id="bm_id3153147" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149416" xml-lang="en-US" level="2" 
l10n="U" oldref="7">&lt;&lt;</paragraph>
-<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U" 
oldref="14"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_ADDALL">Moves 
all of the free indexes to the <emph>Table Indexes</emph> 
list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149416" xml-lang="en-US" level="2" 
l10n="U">&lt;&lt;</paragraph>
+<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_ADDALL">Moves 
all of the free indexes to the <emph>Table Indexes</emph> 
list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVE" id="bm_id3147619" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149579" xml-lang="en-US" level="2" 
l10n="U" oldref="8">&gt;</paragraph>
-<paragraph role="paragraph" id="par_id3149795" xml-lang="en-US" l10n="U" 
oldref="15"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_REMOVE">Moves 
the selected table indexes to the <emph>Free Indexes</emph> 
list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149579" xml-lang="en-US" level="2" 
l10n="U">&gt;</paragraph>
+<paragraph role="paragraph" id="par_id3149795" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_REMOVE">Moves 
the selected table indexes to the <emph>Free Indexes</emph> 
list.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVEALL" 
id="bm_id3154515" localize="false"/>
-<paragraph role="heading" id="hd_id3155629" xml-lang="en-US" level="2" 
l10n="U" oldref="9">&gt;&gt;</paragraph>
-<paragraph role="paragraph" id="par_id3151245" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp 
hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_REMOVEALL">Moves all of the 
table indexes to the <emph>Free Indexes</emph> list.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155629" xml-lang="en-US" level="2" 
l10n="U">&gt;&gt;</paragraph>
+<paragraph role="paragraph" id="par_id3151245" xml-lang="en-US" 
l10n="U"><ahelp hid="DBACCESS_IMAGEBUTTON_DLG_DBASE_INDEXES_IB_REMOVEALL">Moves 
all of the table indexes to the <emph>Free Indexes</emph> 
list.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/guide/accessibility.xhp 
b/main/helpcontent2/source/text/shared/guide/accessibility.xhp
index 8fd7916278..defc352fb3 100644
--- a/main/helpcontent2/source/text/shared/guide/accessibility.xhp
+++ b/main/helpcontent2/source/text/shared/guide/accessibility.xhp
@@ -32,29 +32,29 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3150502">
 <bookmark_value>accessibility; %PRODUCTNAME features</bookmark_value>
 </bookmark>
-<paragraph id="hd_id3150502" role="heading" level="1" oldref="7" l10n="U" 
xml-lang="en-US"><variable id="accessibility"><link name="Accessibility in 
%PRODUCTNAME" href="text/shared/guide/accessibility.xhp">Accessibility in <item 
type="productname">%PRODUCTNAME</item></link></variable></paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3154894" l10n="U" 
oldref="6">The following accessibility features are part of <item 
type="productname">%PRODUCTNAME</item>:</paragraph>
+<paragraph id="hd_id3150502" role="heading" level="1" l10n="U" 
xml-lang="en-US"><variable id="accessibility"><link name="Accessibility in 
%PRODUCTNAME" href="text/shared/guide/accessibility.xhp">Accessibility in <item 
type="productname">%PRODUCTNAME</item></link></variable></paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3154894" l10n="U">The 
following accessibility features are part of <item 
type="productname">%PRODUCTNAME</item>:</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph l10n="U" role="listitem" id="par_id3153894" xml-lang="en-US" 
oldref="5">Support of <link href="text/shared/guide/assistive.xhp" 
name="external devices and applications">external devices and 
applications</link></paragraph>
+<paragraph l10n="U" role="listitem" id="par_id3153894" 
xml-lang="en-US">Support of <link href="text/shared/guide/assistive.xhp" 
name="external devices and applications">external devices and 
applications</link></paragraph>
 </listitem>
 <listitem>
-<paragraph l10n="U" role="listitem" id="par_id3155552" xml-lang="en-US" 
oldref="4">Access to all functions by keyboard. The keys that replace the mouse 
actions are listed in the <link name="%PRODUCTNAME Help" 
href="text/shared/guide/keyboard.xhp"><item 
type="productname">%PRODUCTNAME</item> Help</link></paragraph>
+<paragraph l10n="U" role="listitem" id="par_id3155552" xml-lang="en-US">Access 
to all functions by keyboard. The keys that replace the mouse actions are 
listed in the <link name="%PRODUCTNAME Help" 
href="text/shared/guide/keyboard.xhp"><item 
type="productname">%PRODUCTNAME</item> Help</link></paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3149177" l10n="U" xml-lang="en-US" 
oldref="3">Improved readability of screen contents</paragraph>
+<paragraph role="listitem" id="par_id3149177" l10n="U" 
xml-lang="en-US">Improved readability of screen contents</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3146957" l10n="U" xml-lang="en-US" 
oldref="8">Zooming of on-screen user interface for menus, icons, and 
documents</paragraph>
-<paragraph xml-lang="en-US" oldref="12" l10n="U" role="listitem" 
id="par_id3145071">The user interface is scalable through your <switchinline 
select="sys"><caseinline select="UNIX">Window 
Manager</caseinline><defaultinline>operating 
system</defaultinline></switchinline> settings. The default font size for 
dialogs is 12pt, corresponding to a scale of 100%. You can also change the font 
size for dialogs in <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences< [...]
+<paragraph role="listitem" id="par_id3146957" l10n="U" 
xml-lang="en-US">Zooming of on-screen user interface for menus, icons, and 
documents</paragraph>
+<paragraph xml-lang="en-US" l10n="U" role="listitem" id="par_id3145071">The 
user interface is scalable through your <switchinline select="sys"><caseinline 
select="UNIX">Window Manager</caseinline><defaultinline>operating 
system</defaultinline></switchinline> settings. The default font size for 
dialogs is 12pt, corresponding to a scale of 100%. You can also change the font 
size for dialogs in <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline> [...]
 </listitem>
 </list>
-<paragraph role="note" id="par_id3152349" l10n="U" xml-lang="en-US" 
oldref="2">Please note that accessibility support relies on Java technology for 
communications with assistive technology tools. This means that the first 
program startup may take a few seconds longer, because the Java runtime 
environment has to be started as well.</paragraph>
+<paragraph role="note" id="par_id3152349" l10n="U" xml-lang="en-US">Please 
note that accessibility support relies on Java technology for communications 
with assistive technology tools. This means that the first program startup may 
take a few seconds longer, because the Java runtime environment has to be 
started as well.</paragraph>
 <section id="relatedtopics">
 <embed href="text/shared/guide/assistive.xhp#assistive"/>
-<paragraph l10n="U" role="paragraph" id="par_id3149578" xml-lang="en-US" 
oldref="9"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - View" 
href="text/shared/optionen/01010800.xhp"><item 
type="productname">%PRODUCTNAME</item> - View</link></paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3150084" xml-lang="en-US" 
oldref="10"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - Appearance" 
href="text/shared/optionen/01012000.xhp"><item 
type="productname">%PRODUCTNAME</item> - Appearance</link></paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3150771" xml-lang="en-US" 
oldref="11"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - 
Accessibility" href="text/shared/optionen/01013000.xhp"><item 
type="productname">%PRODUCTNAME</item> - Accessibility</link></paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3149578" 
xml-lang="en-US"><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - View" 
href="text/shared/optionen/01010800.xhp"><item 
type="productname">%PRODUCTNAME</item> - View</link></paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3150084" 
xml-lang="en-US"><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - Appearance" 
href="text/shared/optionen/01012000.xhp"><item 
type="productname">%PRODUCTNAME</item> - Appearance</link></paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3150771" 
xml-lang="en-US"><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - <link name="%PRODUCTNAME - 
Accessibility" href="text/shared/optionen/01013000.xhp"><item 
type="productname">%PRODUCTNAME</item> - Accessibility</link></paragraph>
 <embed href="text/shared/guide/keyboard.xhp#keyboard"/>
 <embed href="text/shared/04/01010000.xhp#common_keys"/>
 </section>
diff --git a/main/helpcontent2/source/text/shared/guide/border_table.xhp 
b/main/helpcontent2/source/text/shared/guide/border_table.xhp
index 165a6deb54..8a977c3e8f 100644
--- a/main/helpcontent2/source/text/shared/guide/border_table.xhp
+++ b/main/helpcontent2/source/text/shared/guide/border_table.xhp
@@ -36,46 +36,46 @@
 <bookmark_value>frames; around tables</bookmark_value>
 <bookmark_value>defining;table borders</bookmark_value>
 </bookmark><comment>mw deleted "adding;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3155805" role="heading" level="1" 
l10n="U" oldref="16"><variable id="border_table"><link 
href="text/shared/guide/border_table.xhp" name="Defining Borders for Tables and 
Table Cells">Defining Borders for Tables and Table Cells</link>
+<paragraph xml-lang="en-US" id="hd_id3155805" role="heading" level="1" 
l10n="U"><variable id="border_table"><link 
href="text/shared/guide/border_table.xhp" name="Defining Borders for Tables and 
Table Cells">Defining Borders for Tables and Table Cells</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3147008" role="heading" level="2" 
l10n="U" oldref="1">Setting a Predefined Border Style</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147008" role="heading" level="2" 
l10n="U">Setting a Predefined Border Style</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3146957" role="listitem" l10n="U" 
oldref="2">Select the table cells that you want to modify.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146957" role="listitem" l10n="U">Select 
the table cells that you want to modify.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156346" role="listitem" l10n="CHG" 
oldref="3">Click the <emph>Borders</emph> icon on the <emph>Table</emph> 
toolbar (Writer) or on the <emph>Line and Filling</emph> bar to open the 
<emph>Borders</emph> window.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156346" role="listitem" 
l10n="CHG">Click the <emph>Borders</emph> icon on the <emph>Table</emph> 
toolbar (Writer) or on the <emph>Line and Filling</emph> bar to open the 
<emph>Borders</emph> window.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3143270" role="listitem" l10n="U" 
oldref="5">Click one of the predefined border styles.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156156" role="listitem" l10n="U" 
oldref="6">This <emph>adds</emph> the selected style to the current border 
style of the table cells. Select the blank border style at the top left of the 
<emph>Borders</emph> window to clear all border styles.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3143270" role="listitem" l10n="U">Click 
one of the predefined border styles.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156156" role="listitem" l10n="U">This 
<emph>adds</emph> the selected style to the current border style of the table 
cells. Select the blank border style at the top left of the 
<emph>Borders</emph> window to clear all border styles.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="hd_id3153666" role="heading" level="2" 
l10n="U" oldref="7">Setting a Customized Border Style</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153666" role="heading" level="2" 
l10n="U">Setting a Customized Border Style</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3152472" role="listitem" l10n="U" 
oldref="8">Select the table cells that you want to modify.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152472" role="listitem" l10n="U">Select 
the table cells that you want to modify.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147265" role="listitem" l10n="CHG" 
oldref="9">Choose <emph>Table - Table Properties - Borders</emph> (Writer) or 
<emph>Format - Cells - Borders</emph> (Calc).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147265" role="listitem" 
l10n="CHG">Choose <emph>Table - Table Properties - Borders</emph> (Writer) or 
<emph>Format - Cells - Borders</emph> (Calc).</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3159413" role="listitem" l10n="U" 
oldref="10">In the <emph>User-defined</emph> area select the edge(s) that you 
want to appear in a common layout. Click on an edge in the preview to toggle 
the selection of an edge.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159413" role="listitem" l10n="U">In the 
<emph>User-defined</emph> area select the edge(s) that you want to appear in a 
common layout. Click on an edge in the preview to toggle the selection of an 
edge.</paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_id31594132" role="listitem" l10n="NEW">If 
you select more than one row or column, you can change the middle lines between 
rows or columns. Select the middle markers in the <emph>User-defined</emph> 
area.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153526" role="listitem" l10n="U" 
oldref="11">Select a line style and color for the selected border style in the 
<emph>Line</emph> area. These settings apply to all border lines that are 
included in the selected border style.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153526" role="listitem" l10n="U">Select 
a line style and color for the selected border style in the <emph>Line</emph> 
area. These settings apply to all border lines that are included in the 
selected border style.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3145606" role="listitem" l10n="U" 
oldref="12">Repeat the last two steps for every border edge.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145606" role="listitem" l10n="U">Repeat 
the last two steps for every border edge.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156422" role="listitem" l10n="U" 
oldref="13">Select the distance between the border lines and the page contents 
in the <emph>Spacing to contents</emph> area.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156422" role="listitem" l10n="U">Select 
the distance between the border lines and the page contents in the 
<emph>Spacing to contents</emph> area.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149807" role="listitem" l10n="U" 
oldref="14">Click <emph>OK</emph> to apply the changes.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149807" role="listitem" l10n="U">Click 
<emph>OK</emph> to apply the changes.</paragraph>
 </listitem>
 </list>
 <section id="relatedtopics">
diff --git 
a/main/helpcontent2/source/text/shared/guide/copytext2application.xhp 
b/main/helpcontent2/source/text/shared/guide/copytext2application.xhp
index be4b1e81d1..7d3f92fd59 100644
--- a/main/helpcontent2/source/text/shared/guide/copytext2application.xhp
+++ b/main/helpcontent2/source/text/shared/guide/copytext2application.xhp
@@ -39,44 +39,43 @@
 <bookmark_value>copying;data from text documents</bookmark_value>
 <bookmark_value>pasting;data from text documents</bookmark_value>
 </bookmark><comment>mw added "pasting; and changed "drag and drop;""</comment>
-<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="1" 
l10n="U" oldref="3"><variable id="copytext2application"><link 
href="text/shared/guide/copytext2application.xhp" name="Inserting Data From 
Text Documents">Inserting Data From Text Documents</link>
+<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="1" 
l10n="U"><variable id="copytext2application"><link 
href="text/shared/guide/copytext2application.xhp" name="Inserting Data From 
Text Documents">Inserting Data From Text Documents</link>
 </variable></paragraph>
-<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" l10n="U" 
oldref="4">You can insert text into other document types, such as spreadsheets 
and presentations. Note that there is a difference between whether the text is 
inserted into a text frame, a spreadsheet cell, or into the outline view of a 
presentation.</paragraph>
+<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" l10n="U">You 
can insert text into other document types, such as spreadsheets and 
presentations. Note that there is a difference between whether the text is 
inserted into a text frame, a spreadsheet cell, or into the outline view of a 
presentation.</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U" 
oldref="5">If you copy text to the clipboard, you can paste it with or without 
text attributes. Use the shortcut keys <switchinline select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C
 to copy and <switchinline select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V
 to paste.</paragraph>
+<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U">If you 
copy text to the clipboard, you can paste it with or without text attributes. 
Use the shortcut keys <switchinline select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C
 to copy and <switchinline select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V
 to paste.</paragraph>
 </listitem>
 </list>
 <table id="tbl_id3166460">
 <tablerow>
 <tablecell colspan="" rowspan="">
 <paragraph role="paragraph" id="par_id3152349" xml-lang="en-US" l10n="E">
-<image id="img_id3143270" src="res/commandimagelist/sc_paste.png" 
width="5.64mm" height="5.64mm"><alt id="alt_id3143270" 
xml-lang="en-US">Icon</alt>
-</image></paragraph>
+<image id="img_id3143270" src="res/commandimagelist/sc_paste.png" 
width="5.64mm" height="5.64mm"><alt id="alt_id3143270" 
xml-lang="en-US">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3158430" xml-lang="en-US" l10n="CHG" 
oldref="12">To select the format in which the clipboard contents will be 
pasted, click the arrow next to the <emph>Paste</emph> icon on the Standard 
bar, or choose <emph>Edit - Paste Special</emph>, then select the proper 
format.</paragraph>
+<paragraph role="paragraph" id="par_id3158430" xml-lang="en-US" l10n="CHG">To 
select the format in which the clipboard contents will be pasted, click the 
arrow next to the <emph>Paste</emph> icon on the Standard bar, or choose 
<emph>Edit - Paste Special</emph>, then select the proper format.</paragraph>
 </tablecell>
 </tablerow>
 </table>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3156155" xml-lang="en-US" l10n="U" 
oldref="6">If a text document contains headings formatted with the Heading 
Paragraph Style, choose <emph>File - Send - Outline to Presentation</emph>. A 
new presentation document is created, which contains the headings as an 
outline.</paragraph>
+<paragraph role="listitem" id="par_id3156155" xml-lang="en-US" l10n="U">If a 
text document contains headings formatted with the Heading Paragraph Style, 
choose <emph>File - Send - Outline to Presentation</emph>. A new presentation 
document is created, which contains the headings as an outline.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3145316" xml-lang="en-US" l10n="U" 
oldref="9">If you want to transfer each heading together with its accompanying 
paragraphs, select the <emph>File - Send - AutoAbstract to Presentation</emph> 
command. You must have formatted the headings with a corresponding Paragraph 
Style to be able to see this command.</paragraph>
+<paragraph role="listitem" id="par_id3145316" xml-lang="en-US" l10n="U">If you 
want to transfer each heading together with its accompanying paragraphs, select 
the <emph>File - Send - AutoAbstract to Presentation</emph> command. You must 
have formatted the headings with a corresponding Paragraph Style to be able to 
see this command.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Copying Text Using Drag-and-Drop</paragraph>
+<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2" 
l10n="U">Copying Text Using Drag-and-Drop</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3147303" xml-lang="en-US" l10n="U" 
oldref="7">If you select text and drag it into a spreadsheet with 
drag-and-drop, it will be inserted as text into the cell where you release the 
mouse.</paragraph>
+<paragraph role="listitem" id="par_id3147303" xml-lang="en-US" l10n="U">If you 
select text and drag it into a spreadsheet with drag-and-drop, it will be 
inserted as text into the cell where you release the mouse.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3149655" xml-lang="en-US" l10n="U" 
oldref="8">If you drag text to the normal view of a presentation, an OLE object 
is inserted as a $[officename] plug-in.</paragraph>
+<paragraph role="listitem" id="par_id3149655" xml-lang="en-US" l10n="U">If you 
drag text to the normal view of a presentation, an OLE object is inserted as a 
$[officename] plug-in.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150793" xml-lang="en-US" l10n="U" 
oldref="11">If you drag the text to the outline view of a presentation, it will 
be inserted at the cursor location.</paragraph>
+<paragraph role="listitem" id="par_id3150793" xml-lang="en-US" l10n="U">If you 
drag the text to the outline view of a presentation, it will be inserted at the 
cursor location.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/shared/guide/insert_specialchar.xhp 
b/main/helpcontent2/source/text/shared/guide/insert_specialchar.xhp
index c054bd2152..19a9dfe04c 100644
--- a/main/helpcontent2/source/text/shared/guide/insert_specialchar.xhp
+++ b/main/helpcontent2/source/text/shared/guide/insert_specialchar.xhp
@@ -37,30 +37,30 @@
 <bookmark_value>accents</bookmark_value>
 <bookmark_value>compose key to insert special characters</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><variable id="insert_specialchar"><link 
href="text/shared/guide/insert_specialchar.xhp" name="Inserting Special 
Characters">Inserting Special Characters</link>
+<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1" 
l10n="U"><variable id="insert_specialchar"><link 
href="text/shared/guide/insert_specialchar.xhp" name="Inserting Special 
Characters">Inserting Special Characters</link>
 </variable></paragraph>
-<paragraph role="paragraph" id="par_id3147576" xml-lang="en-US" l10n="U" 
oldref="2">This function allows you to insert special characters, such as check 
marks, boxes, and telephone symbols, into your text.</paragraph>
+<paragraph role="paragraph" id="par_id3147576" xml-lang="en-US" l10n="U">This 
function allows you to insert special characters, such as check marks, boxes, 
and telephone symbols, into your text.</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3155535" xml-lang="en-US" l10n="U" 
oldref="3">To view a selection of all characters, choose <emph>Insert - Special 
Character</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3155535" xml-lang="en-US" l10n="U">To 
view a selection of all characters, choose <emph>Insert - Special 
Character</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3147275" xml-lang="en-US" l10n="U" 
oldref="6">In the large selection field click the desired character or several 
characters in succession. The characters are displayed at the bottom of the 
dialog. When you close the dialog with <emph>OK</emph>, all displayed 
characters in the selected font are inserted in the current 
document.</paragraph>
+<paragraph role="listitem" id="par_id3147275" xml-lang="en-US" l10n="U">In the 
large selection field click the desired character or several characters in 
succession. The characters are displayed at the bottom of the dialog. When you 
close the dialog with <emph>OK</emph>, all displayed characters in the selected 
font are inserted in the current document.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153031" xml-lang="en-US" l10n="CHG" 
oldref="4">In any text input field (such as the input fields in the <emph>Find 
&amp; Replace</emph> dialog) you can press Shift+<switchinline 
select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S
 to open the <emph>Special Characters</emph> dialog.</paragraph>
+<paragraph role="listitem" id="par_id3153031" xml-lang="en-US" l10n="CHG">In 
any text input field (such as the input fields in the <emph>Find &amp; 
Replace</emph> dialog) you can press Shift+<switchinline 
select="sys"><caseinline 
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S
 to open the <emph>Special Characters</emph> dialog.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3155630" xml-lang="en-US" l10n="U" 
oldref="7"><switchinline select="sys"><caseinline select="UNIX">At present 
there are three ways of entering letters with accents directly from the 
keyboard.
+<paragraph role="paragraph" id="par_id3155630" xml-lang="en-US" 
l10n="U"><switchinline select="sys"><caseinline select="UNIX">At present there 
are three ways of entering letters with accents directly from the keyboard.
 </caseinline></switchinline></paragraph>
-<paragraph role="paragraph" id="par_id3154897" xml-lang="en-US" l10n="U" 
oldref="8"><switchinline select="sys"><caseinline 
select="UNIX"><emph>Solaris:</emph> Using a Sun keyboard. First press the 
Compose key to the right of the space bar, then enter the first and second 
modifiers.
+<paragraph role="paragraph" id="par_id3154897" xml-lang="en-US" 
l10n="U"><switchinline select="sys"><caseinline 
select="UNIX"><emph>Solaris:</emph> Using a Sun keyboard. First press the 
Compose key to the right of the space bar, then enter the first and second 
modifiers.
 </caseinline></switchinline></paragraph>
-<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U" 
oldref="9"><switchinline select="sys"><caseinline select="UNIX"><emph>Linux / 
NetBSD:</emph> Using the dead-keys. In an xterm window first press the (´) or 
(`) key. The character should not appear on the screen. Now press a letter, 
such as "e". The e is given an accent, é or è. If not, then check in the 
XF86Config file if a "nodeadkeys" XkbdVariant has been loaded there and replace 
it. You may also have set the envi [...]
+<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" 
l10n="U"><switchinline select="sys"><caseinline select="UNIX"><emph>Linux / 
NetBSD:</emph> Using the dead-keys. In an xterm window first press the (´) or 
(`) key. The character should not appear on the screen. Now press a letter, 
such as "e". The e is given an accent, é or è. If not, then check in the 
XF86Config file if a "nodeadkeys" XkbdVariant has been loaded there and replace 
it. You may also have set the environment var [...]
 </caseinline></switchinline></paragraph>
-<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US" l10n="U" 
oldref="10"><switchinline select="sys"><caseinline select="UNIX"><emph>All Unix 
systems:</emph> (Alt Graph) as additional compose key. The (Alt Graph) key can 
work in $[officename] like the Compose key, if you set the environment variable 
SAL_ALTGR_COMPOSE. The (Alt Graph) key must trigger a mode_switch, so, for 
example, xmodmap -e "keysym Alt_R = Mode_switch" must be set. First press (Alt 
Graph), then the first mod [...]
+<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US" 
l10n="U"><switchinline select="sys"><caseinline select="UNIX"><emph>All Unix 
systems:</emph> (Alt Graph) as additional compose key. The (Alt Graph) key can 
work in $[officename] like the Compose key, if you set the environment variable 
SAL_ALTGR_COMPOSE. The (Alt Graph) key must trigger a mode_switch, so, for 
example, xmodmap -e "keysym Alt_R = Mode_switch" must be set. First press (Alt 
Graph), then the first modifier, then  [...]
 </caseinline></switchinline></paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
-<paragraph role="paragraph" id="par_id3149047" xml-lang="en-US" l10n="U" 
oldref="5"><link href="text/shared/01/04100000.xhp" name="Special 
Characters">Special Characters</link></paragraph>
-<paragraph role="paragraph" id="par_id3153896" xml-lang="en-US" l10n="U" 
oldref="11"><link href="text/shared/01/06040200.xhp" 
name="AutoCorrect">AutoCorrect</link></paragraph>
+<paragraph role="paragraph" id="par_id3149047" xml-lang="en-US" l10n="U"><link 
href="text/shared/01/04100000.xhp" name="Special Characters">Special 
Characters</link></paragraph>
+<paragraph role="paragraph" id="par_id3153896" xml-lang="en-US" l10n="U"><link 
href="text/shared/01/06040200.xhp" 
name="AutoCorrect">AutoCorrect</link></paragraph>
 </body>
 </helpdocument>
diff --git 
a/main/helpcontent2/source/text/simpress/guide/animated_slidechange.xhp 
b/main/helpcontent2/source/text/simpress/guide/animated_slidechange.xhp
index eb80840297..3ebb6d6ab0 100644
--- a/main/helpcontent2/source/text/simpress/guide/animated_slidechange.xhp
+++ b/main/helpcontent2/source/text/simpress/guide/animated_slidechange.xhp
@@ -37,49 +37,49 @@
 <bookmark_value>deleting; slide transition effects</bookmark_value>
 <bookmark_value>effects;animated slide transitions</bookmark_value>
 </bookmark><comment>MW changed "removing;..." to "deleting;..."</comment>
-<paragraph role="heading" id="hd_id3153820" xml-lang="en-US" level="1" 
l10n="U" oldref="46"><variable id="animated_slidechange"><link 
href="text/simpress/guide/animated_slidechange.xhp" name="Animating Slide 
Transitions">Animating Slide Transitions</link>
+<paragraph role="heading" id="hd_id3153820" xml-lang="en-US" level="1" 
l10n="U"><variable id="animated_slidechange"><link 
href="text/simpress/guide/animated_slidechange.xhp" name="Animating Slide 
Transitions">Animating Slide Transitions</link>
 </variable></paragraph>
-<paragraph role="paragraph" id="par_id3150049" xml-lang="en-US" l10n="U" 
oldref="67">You can apply a special effect that plays when you display a 
slide.</paragraph>
-<paragraph role="heading" id="hd_id3153811" xml-lang="en-US" level="3" 
l10n="U" oldref="68">To apply a transition effect to a slide</paragraph>
+<paragraph role="paragraph" id="par_id3150049" xml-lang="en-US" l10n="U">You 
can apply a special effect that plays when you display a slide.</paragraph>
+<paragraph role="heading" id="hd_id3153811" xml-lang="en-US" level="3" 
l10n="U">To apply a transition effect to a slide</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="paragraph" id="par_id3145086" xml-lang="en-US" l10n="U" 
oldref="50">In <emph>Normal</emph> view, select the slide that you want to add 
the transition effect to.</paragraph>
+<paragraph role="paragraph" id="par_id3145086" xml-lang="en-US" l10n="U">In 
<emph>Normal</emph> view, select the slide that you want to add the transition 
effect to.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3150655" xml-lang="en-US" l10n="CHG" 
oldref="70">On the <emph>Sidebar</emph>, click <emph>Slide 
Transition</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3150655" xml-lang="en-US" l10n="CHG">On 
the <emph>Sidebar</emph>, click <emph>Slide Transition</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3154554" xml-lang="en-US" l10n="CHG" 
oldref="52">Select a slide transition from the list.</paragraph>
+<paragraph role="paragraph" id="par_id3154554" xml-lang="en-US" 
l10n="CHG">Select a slide transition from the list.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3149022" xml-lang="en-US" l10n="CHG" 
oldref="74">You can preview the transition effect in the document 
window.</paragraph>
-<paragraph role="heading" id="hd_id3147562" xml-lang="en-US" level="3" 
l10n="U" oldref="75">To apply the same transition effect to more than one 
slide</paragraph>
+<paragraph role="paragraph" id="par_id3149022" xml-lang="en-US" l10n="CHG">You 
can preview the transition effect in the document window.</paragraph>
+<paragraph role="heading" id="hd_id3147562" xml-lang="en-US" level="3" 
l10n="U">To apply the same transition effect to more than one slide</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="paragraph" id="par_id3150263" xml-lang="en-US" l10n="CHG" 
oldref="48">In <emph>Slide Sorter</emph> view, select the slides that you want 
to add the transition effect to.</paragraph>
-<paragraph role="paragraph" id="par_id3148826" xml-lang="en-US" l10n="U" 
oldref="49">If you want, you can use the <emph>Zoom</emph> toolbar 
+<paragraph role="paragraph" id="par_id3150263" xml-lang="en-US" l10n="CHG">In 
<emph>Slide Sorter</emph> view, select the slides that you want to add the 
transition effect to.</paragraph>
+<paragraph role="paragraph" id="par_id3148826" xml-lang="en-US" l10n="U">If 
you want, you can use the <emph>Zoom</emph> toolbar 
 <image id="img_id3151172" src="res/commandimagelist/sc_zoom.png" 
width="0.222inch" height="0.222inch"><alt id="alt_id3151172" 
xml-lang="en-US">Icon</alt>
 </image> to change the view magnification for the slides.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3154269" xml-lang="en-US" l10n="CHG" 
oldref="78">On the Sidebar, click Slide Transition.</paragraph>
+<paragraph role="paragraph" id="par_id3154269" xml-lang="en-US" l10n="CHG">On 
the Sidebar, click Slide Transition.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3154102" xml-lang="en-US" l10n="U" 
oldref="79">Select a slide transition from the list.</paragraph>
+<paragraph role="paragraph" id="par_id3154102" xml-lang="en-US" 
l10n="U">Select a slide transition from the list.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3153785" xml-lang="en-US" l10n="CHG" 
oldref="53">To preview the transition effect for a slide, click the small icon 
underneath the slide on the <emph>Slides Pane</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3149341" xml-lang="en-US" level="3" 
l10n="U" oldref="83">To remove a transition effect</paragraph>
+<paragraph role="paragraph" id="par_id3153785" xml-lang="en-US" l10n="CHG">To 
preview the transition effect for a slide, click the small icon underneath the 
slide on the <emph>Slides Pane</emph>.</paragraph>
+<paragraph role="heading" id="hd_id3149341" xml-lang="en-US" level="3" 
l10n="U">To remove a transition effect</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3151287" xml-lang="en-US" l10n="CHG" 
oldref="84">In <emph>Slide Sorter</emph> View, select the slides that you want 
to remove the transition effect from.</paragraph>
+<paragraph role="listitem" id="par_id3151287" xml-lang="en-US" l10n="CHG">In 
<emph>Slide Sorter</emph> View, select the slides that you want to remove the 
transition effect from.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3146930" xml-lang="en-US" l10n="CHG" 
oldref="85">Choose <emph>No Transition</emph> in the listbox on the 
<emph>Sidebar</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3146930" xml-lang="en-US" 
l10n="CHG">Choose <emph>No Transition</emph> in the listbox on the 
<emph>Sidebar</emph>.</paragraph>
 </listitem>
 </list>
 <section id="relatedtopics">
-<paragraph role="paragraph" id="par_id3149300" xml-lang="en-US" l10n="U" 
oldref="60"><link href="text/simpress/01/06040000.xhp" name="Slide 
Transition">Slide Transition</link></paragraph>
+<paragraph role="paragraph" id="par_id3149300" xml-lang="en-US" l10n="U"><link 
href="text/simpress/01/06040000.xhp" name="Slide Transition">Slide 
Transition</link></paragraph>
 <embed href="text/simpress/guide/animated_objects.xhp#animated_objects"/>
 </section>
 </body>
diff --git a/main/helpcontent2/source/text/swriter/01/05060800.xhp 
b/main/helpcontent2/source/text/swriter/01/05060800.xhp
index e1cf38a27b..53b5a968c6 100644
--- a/main/helpcontent2/source/text/swriter/01/05060800.xhp
+++ b/main/helpcontent2/source/text/swriter/01/05060800.xhp
@@ -37,39 +37,35 @@
 <bookmark_value>hyperlinks; for objects</bookmark_value>
 </bookmark>
 <bookmark xml-lang="en-US" branch="hid/SW_HID_FRM_URL" id="bm_id3153671" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3150980" role="heading" level="1" 
l10n="U" oldref="1"><link href="text/swriter/01/05060800.xhp" 
name="Hyperlink">Hyperlink</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154188" role="paragraph" l10n="U" 
oldref="2"><ahelp hid="HID_FRM_URL">Specify the properties of the hyperlink for 
the selected graphic, frame or OLE object.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150980" role="heading" level="1" 
l10n="U"><link href="text/swriter/01/05060800.xhp" 
name="Hyperlink">Hyperlink</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154188" role="paragraph" 
l10n="U"><ahelp hid="HID_FRM_URL">Specify the properties of the hyperlink for 
the selected graphic, frame or OLE object.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/swriter/00/00000405.xhp#grahyper"/>
 </section>
-<paragraph xml-lang="en-US" id="hd_id3155180" role="heading" level="2" 
l10n="U" oldref="3">Link to</paragraph>
-<paragraph xml-lang="en-US" id="par_id3143275" role="paragraph" l10n="U" 
oldref="4">Set the link properties.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155180" role="heading" level="2" 
l10n="U">Link to</paragraph>
+<paragraph xml-lang="en-US" id="par_id3143275" role="paragraph" l10n="U">Set 
the link properties.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_FRM_URL:ED_URL" 
id="bm_id3154825" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149485" role="heading" level="2" 
l10n="U" oldref="5">URL</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154831" role="paragraph" l10n="CHG" 
oldref="6"><ahelp hid="SW:EDIT:TP_FRM_URL:ED_URL">Enter the complete path to 
the file that you want to open.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149485" role="heading" level="2" 
l10n="U">URL</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154831" role="paragraph" 
l10n="CHG"><ahelp hid="SW:EDIT:TP_FRM_URL:ED_URL">Enter the complete path to 
the file that you want to open.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:PushButton:TP_FRM_URL:PB_SEARCH" 
id="bm_id3149103" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3151260" role="heading" level="2" l10n="U"
-oldref="17">Browse</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149109" role="paragraph" l10n="U" 
oldref="18"><ahelp hid="SW:PUSHBUTTON:TP_FRM_URL:PB_SEARCH">Locate the file 
that you want the hyperlink to open, and then click <emph>Open</emph>.</ahelp> 
The target file can be on your machine or on an <link 
href="text/shared/00/00000002.xhp#ftp" name="FTP server">FTP server</link> in 
the Internet.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3151260" role="heading" level="2" 
l10n="U">Browse</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149109" role="paragraph" 
l10n="U"><ahelp hid="SW:PUSHBUTTON:TP_FRM_URL:PB_SEARCH">Locate the file that 
you want the hyperlink to open, and then click <emph>Open</emph>.</ahelp> The 
target file can be on your machine or on an <link 
href="text/shared/00/00000002.xhp#ftp" name="FTP server">FTP server</link> in 
the Internet.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_FRM_URL:ED_NAME" 
id="bm_id3148983" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3148972" role="heading" level="2" l10n="U"
-oldref="19">Name</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147217" role="paragraph" l10n="U" 
oldref="20"><ahelp hid="SW:EDIT:TP_FRM_URL:ED_NAME">Enter a name for the 
hyperlink.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3148972" role="heading" level="2" 
l10n="U">Name</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147217" role="paragraph" 
l10n="U"><ahelp hid="SW:EDIT:TP_FRM_URL:ED_NAME">Enter a name for the 
hyperlink.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:ComboBox:TP_FRM_URL:CB_FRAME" 
id="bm_id3149035" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153636" role="heading" level="2" 
l10n="U" oldref="7">Frame</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149042" role="paragraph" l10n="U" 
oldref="8"><ahelp hid="SW:COMBOBOX:TP_FRM_URL:CB_FRAME">Specify the name of the 
frame where you want to open the targeted file.</ahelp> The predefined target 
frame names are described <link href="text/shared/01/01100500.xhp" 
name="here">here</link>.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3152772" role="heading" level="2" 
l10n="U" oldref="9">Image Map</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155138" role="paragraph" l10n="U" 
oldref="10">Select the type of <link 
href="text/shared/00/00000002.xhp#imagemap" name="ImageMap">ImageMap</link> 
that you want to use. The ImageMap settings override the hyperlink settings 
that you enter on this page.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153636" role="heading" level="2" 
l10n="U">Frame</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149042" role="paragraph" 
l10n="U"><ahelp hid="SW:COMBOBOX:TP_FRM_URL:CB_FRAME">Specify the name of the 
frame where you want to open the targeted file.</ahelp> The predefined target 
frame names are described <link href="text/shared/01/01100500.xhp" 
name="here">here</link>.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152772" role="heading" level="2" 
l10n="U">Image Map</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155138" role="paragraph" 
l10n="U">Select the type of <link href="text/shared/00/00000002.xhp#imagemap" 
name="ImageMap">ImageMap</link> that you want to use. The ImageMap settings 
override the hyperlink settings that you enter on this page.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:CheckBox:TP_FRM_URL:CB_SERVER" 
id="bm_id3149170" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153357" role="heading" level="2" l10n="U"
-oldref="13">Server-side image map</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149176" role="paragraph" l10n="U" 
oldref="14"><ahelp hid="SW:CHECKBOX:TP_FRM_URL:CB_SERVER">Uses a server-side 
image map.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153357" role="heading" level="2" 
l10n="U">Server-side image map</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149176" role="paragraph" 
l10n="U"><ahelp hid="SW:CHECKBOX:TP_FRM_URL:CB_SERVER">Uses a server-side image 
map.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:CheckBox:TP_FRM_URL:CB_CLIENT" 
id="bm_id3151029" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3156278" role="heading" level="2" l10n="U"
-oldref="15">Client-side image map</paragraph>
-<paragraph xml-lang="en-US" id="par_id3151036" role="paragraph" l10n="U" 
oldref="16"><ahelp hid="SW:CHECKBOX:TP_FRM_URL:CB_CLIENT">Uses the <link 
href="text/shared/01/02220000.xhp" name="image map">image map</link> that you 
created for the selected object.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3156278" role="heading" level="2" 
l10n="U">Client-side image map</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151036" role="paragraph" 
l10n="U"><ahelp hid="SW:CHECKBOX:TP_FRM_URL:CB_CLIENT">Uses the <link 
href="text/shared/01/02220000.xhp" name="image map">image map</link> that you 
created for the selected object.</ahelp></paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
-<paragraph xml-lang="en-US" id="par_id3151380" role="paragraph" l10n="U" 
oldref="21"><link href="text/shared/00/00000002.xhp#url" 
name="URL">URL</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3151380" role="paragraph" l10n="U"><link 
href="text/shared/00/00000002.xhp#url" name="URL">URL</link></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/hyphen_prevent.xhp 
b/main/helpcontent2/source/text/swriter/guide/hyphen_prevent.xhp
index 544b3cee42..97d01c8bb7 100644
--- a/main/helpcontent2/source/text/swriter/guide/hyphen_prevent.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/hyphen_prevent.xhp
@@ -34,27 +34,26 @@
 <bookmark_value>words;wrapping/not wrapping in text</bookmark_value>
 <bookmark_value>switching off;hyphenation for specific words</bookmark_value>
 </bookmark><comment>mw copied 2 entries from using_hyphen.xhp and added a new 
entry</comment>
-<paragraph xml-lang="en-US" id="hd_id3149695" role="heading" level="1" l10n="U"
-oldref="20"><variable id="hyphen_prevent"><link 
href="text/swriter/guide/hyphen_prevent.xhp" name="Preventing Hyphenation of 
Specific Words">Preventing Hyphenation of Specific Words</link>
+<paragraph xml-lang="en-US" id="hd_id3149695" role="heading" level="1" 
l10n="U"><variable id="hyphen_prevent"><link 
href="text/swriter/guide/hyphen_prevent.xhp" name="Preventing Hyphenation of 
Specific Words">Preventing Hyphenation of Specific Words</link>
 </variable></paragraph><comment>MW created this guide from splitting 
using_hyphen.xhp</comment>
 <paragraph xml-lang="en-US" id="par_id5640125" role="paragraph" l10n="NEW">If 
your text is <link href="text/swriter/guide/using_hyphen.xhp">automatically 
hyphenated</link> and certain hyphenated words look ugly, or if you want 
specific words never to be hyphenated you can switch off hyphenation for those 
words:</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153634" role="listitem" l10n="U" 
oldref="40">Choose <emph><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - Language Settings - Writing Aids</emph>
+<paragraph xml-lang="en-US" id="par_id3153634" role="listitem" l10n="U">Choose 
<emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - Language Settings - Writing Aids</emph>
 </paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153658" role="listitem" l10n="U" 
oldref="41">Select a dictionary in the <emph>User-defined dictionary</emph> 
list, and then click <emph>Edit</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147125" role="listitem" l10n="U" 
oldref="43">If the list is empty, click <emph>New</emph> to create a 
dictionary.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153658" role="listitem" l10n="U">Select 
a dictionary in the <emph>User-defined dictionary</emph> list, and then click 
<emph>Edit</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147125" role="listitem" l10n="U">If the 
list is empty, click <emph>New</emph> to create a dictionary.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150218" role="listitem" l10n="U" 
oldref="42">In the <emph>Word</emph> box, type the word you want to exclude 
from hyphenation, followed by an equal sign (=), for example, 
"pretentious=".</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150218" role="listitem" l10n="U">In the 
<emph>Word</emph> box, type the word you want to exclude from hyphenation, 
followed by an equal sign (=), for example, "pretentious=".</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150247" role="listitem" l10n="U" 
oldref="65">Click <emph>New</emph>, and then click 
<emph>Close</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150247" role="listitem" l10n="U">Click 
<emph>New</emph>, and then click <emph>Close</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3147036" role="tip" l10n="U" 
oldref="29">To quickly exclude a word from hyphenation, select the word, choose 
<emph>Format - Character</emph>, click the <emph>Font</emph> tab, and select 
"None" in the <emph>Language</emph> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147036" role="tip" l10n="U">To quickly 
exclude a word from hyphenation, select the word, choose <emph>Format - 
Character</emph>, click the <emph>Font</emph> tab, and select "None" in the 
<emph>Language</emph> box.</paragraph>
 <paragraph xml-lang="en-US" id="par_id0302200910262761" role="paragraph" 
l10n="NEW">Some words contain special characters that %PRODUCTNAME treats as a 
hyphen. If you do not want such words to be hyphenated, you can insert a 
special code that prevents hyphenation at the position where the special code 
is inserted. Proceed as follows:</paragraph>
 <list type="ordered">
 <listitem>
@@ -70,6 +69,6 @@ oldref="20"><variable id="hyphen_prevent"><link 
href="text/swriter/guide/hyphen_
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
 <embed href="text/swriter/guide/using_hyphen.xhp#using_hyphen"/>
-<paragraph xml-lang="en-US" id="par_id3154361" role="paragraph" l10n="U" 
oldref="46"><link href="text/swriter/01/05030200.xhp" name="Text Flow">Text 
Flow</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154361" role="paragraph" l10n="U"><link 
href="text/swriter/01/05030200.xhp" name="Text Flow">Text 
Flow</link></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/indices_enter.xhp 
b/main/helpcontent2/source/text/swriter/guide/indices_enter.xhp
index 3c4a817f6c..a3fac65ebd 100644
--- a/main/helpcontent2/source/text/swriter/guide/indices_enter.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/indices_enter.xhp
@@ -34,45 +34,43 @@
 <bookmark_value>tables of contents; defining entries in</bookmark_value>
 <bookmark_value>entries; defining in indexes/tables of 
contents</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3149689" role="heading" level="1" 
l10n="U" oldref="4"><variable id="indices_enter"><link 
href="text/swriter/guide/indices_enter.xhp" name="Defining Index or Table of 
Contents Entries">Defining Index or Table of Contents Entries</link>
+<paragraph xml-lang="en-US" id="hd_id3149689" role="heading" level="1" 
l10n="U"><variable id="indices_enter"><link 
href="text/swriter/guide/indices_enter.xhp" name="Defining Index or Table of 
Contents Entries">Defining Index or Table of Contents Entries</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3155862" role="heading" level="2" 
l10n="U" oldref="6">To Define Index Entries</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155862" role="heading" level="2" 
l10n="U">To Define Index Entries</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156380" role="listitem" l10n="U" 
oldref="7">Click in a word, or select the words in your document that you want 
to use as an index entry.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156380" role="listitem" l10n="U">Click 
in a word, or select the words in your document that you want to use as an 
index entry.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147409" role="listitem" l10n="U" 
oldref="9">Choose <emph>Insert - Indexes and Tables - Entry</emph>, and do one 
of the following:</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147409" role="listitem" l10n="U">Choose 
<emph>Insert - Indexes and Tables - Entry</emph>, and do one of the 
following:</paragraph>
 </listitem>
 </list>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3153417" xml-lang="en-US" l10n="U" 
oldref="11">To change the text that appears in the index, type the text that 
you want in the <emph>Entry</emph> box. The text that you type here does not 
replace the selected text in the document.</paragraph>
+<paragraph role="listitem" id="par_id3153417" xml-lang="en-US" l10n="U">To 
change the text that appears in the index, type the text that you want in the 
<emph>Entry</emph> box. The text that you type here does not replace the 
selected text in the document.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3154258" xml-lang="en-US" l10n="U" 
oldref="8">To add an index mark to similar words in your document, select 
<emph>Apply to all similar texts</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3154258" xml-lang="en-US" l10n="U">To add 
an index mark to similar words in your document, select <emph>Apply to all 
similar texts</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3155889" xml-lang="en-US" l10n="U" 
oldref="10">To add the entries to a custom index, click the <emph>New 
User-defined Index</emph> icon, enter the name of the index, and then click 
<emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3155889" xml-lang="en-US" l10n="U">To add 
the entries to a custom index, click the <emph>New User-defined Index</emph> 
icon, enter the name of the index, and then click <emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="hd_id3147119" role="heading" level="2" l10n="U"
-oldref="12">To Define Table of Contents Entries</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147132" role="paragraph" l10n="CHG" 
oldref="5">The best way to generate a table of contents is to apply the 
predefined heading paragraph styles, such as "Heading 1", to the paragraphs 
that you want to include in your table of contents.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3150230" role="heading" level="3" l10n="U"
-oldref="13">To Use a Custom Paragraph Style as a Table of Contents 
Entry</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147119" role="heading" level="2" 
l10n="U">To Define Table of Contents Entries</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147132" role="paragraph" l10n="CHG">The 
best way to generate a table of contents is to apply the predefined heading 
paragraph styles, such as "Heading 1", to the paragraphs that you want to 
include in your table of contents.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150230" role="heading" level="3" 
l10n="U">To Use a Custom Paragraph Style as a Table of Contents 
Entry</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150933" role="listitem" l10n="U" 
oldref="14">Choose <emph>Tools - Outline Numbering</emph> and click the 
<emph>Numbering</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150933" role="listitem" l10n="U">Choose 
<emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> 
tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150964" role="listitem" l10n="U" 
oldref="15">Select the paragraph style that you want to include in your table 
of contents in the <emph>Paragraph Style</emph> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150964" role="listitem" l10n="U">Select 
the paragraph style that you want to include in your table of contents in the 
<emph>Paragraph Style</emph> box.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150523" role="listitem" l10n="U" 
oldref="16">In the <emph>Level</emph> list, click the hierarchical level that 
you want to apply the paragraph style to.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150523" role="listitem" l10n="U">In the 
<emph>Level</emph> list, click the hierarchical level that you want to apply 
the paragraph style to.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153730" role="listitem" l10n="U" 
oldref="17">Click <emph>OK</emph>. You can now apply the style to headings in 
your document and include them in your table of contents.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153730" role="listitem" l10n="U">Click 
<emph>OK</emph>. You can now apply the style to headings in your document and 
include them in your table of contents.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/indices_userdef.xhp 
b/main/helpcontent2/source/text/swriter/guide/indices_userdef.xhp
index 3e6b0b73ff..98d70820ff 100644
--- a/main/helpcontent2/source/text/swriter/guide/indices_userdef.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/indices_userdef.xhp
@@ -33,54 +33,51 @@
 <bookmark_value>indexes; creating user-defined indexes</bookmark_value>
 <bookmark_value>user-defined indexes</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3154896" role="heading" level="1" l10n="U"
-oldref="30"><variable id="indices_userdef"><link 
href="text/swriter/guide/indices_userdef.xhp" name="User-Defined 
Indexes">User-Defined Indexes</link>
+<paragraph xml-lang="en-US" id="hd_id3154896" role="heading" level="1" 
l10n="U"><variable id="indices_userdef"><link 
href="text/swriter/guide/indices_userdef.xhp" name="User-Defined 
Indexes">User-Defined Indexes</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155184" role="paragraph" l10n="U" 
oldref="31">You can create as many user-defined indexes as you want.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3155915" role="heading" level="2" l10n="U"
-oldref="47">To Create a User-Defined Index</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155184" role="paragraph" l10n="U">You 
can create as many user-defined indexes as you want.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155915" role="heading" level="2" 
l10n="U">To Create a User-Defined Index</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155867" role="listitem" l10n="U" 
oldref="48">Select a word or words that you want to add to a user-defined 
index.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155867" role="listitem" l10n="U">Select 
a word or words that you want to add to a user-defined index.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153410" role="listitem" l10n="U" 
oldref="49">Choose <emph>Insert - Indexes and Tables - Entry</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153410" role="listitem" l10n="U">Choose 
<emph>Insert - Indexes and Tables - Entry</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154248" role="listitem" l10n="U" 
oldref="50">Click the <item type="menuitem">New User-defined Index</item> 
button next to the <item type="menuitem">Index</item> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154248" role="listitem" l10n="U">Click 
the <item type="menuitem">New User-defined Index</item> button next to the 
<item type="menuitem">Index</item> box.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="U" 
oldref="51">Type a name for the index in the <item type="menuitem">Name</item> 
box and click <item type="menuitem">OK</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="U">Type a 
name for the index in the <item type="menuitem">Name</item> box and click <item 
type="menuitem">OK</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147114" role="listitem" l10n="U" 
oldref="52">Click <item type="menuitem">Insert</item> to add the selected 
word(s) to the new index.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147114" role="listitem" l10n="U">Click 
<item type="menuitem">Insert</item> to add the selected word(s) to the new 
index.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147139" role="listitem" l10n="U" 
oldref="53">Click <item type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147139" role="listitem" l10n="U">Click 
<item type="menuitem">Close</item>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="hd_id3150231" role="heading" level="2" l10n="U"
-oldref="54">To Insert a User-Defined Index</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150231" role="heading" level="2" 
l10n="U">To Insert a User-Defined Index</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150933" role="listitem" l10n="U" 
oldref="32">Click in the document where you want to insert the 
index.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150933" role="listitem" l10n="U">Click 
in the document where you want to insert the index.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150952" role="listitem" l10n="U" 
oldref="33">Choose <emph>Insert - Indexes and Tables - Indexes and 
Tables</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150952" role="listitem" l10n="U">Choose 
<emph>Insert - Indexes and Tables - Indexes and Tables</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150509" role="listitem" l10n="U" 
oldref="55">On the <item type="menuitem">Index/Table</item> tab, select the 
name of the user-defined index that you created in the <item 
type="menuitem">Type</item> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150509" role="listitem" l10n="U">On the 
<item type="menuitem">Index/Table</item> tab, select the name of the 
user-defined index that you created in the <item type="menuitem">Type</item> 
box.</paragraph>
 </listitem>
 </list>
 <list type="ordered" startwith="4">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3146881" role="listitem" l10n="U" 
oldref="56">Select any options that you want.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146881" role="listitem" l10n="U">Select 
any options that you want.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3146897" role="listitem" l10n="U" 
oldref="34">Click <emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146897" role="listitem" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3150720" role="paragraph" l10n="U" 
oldref="20">If you want to use a different paragraph style as a table of 
contents entry, select <item type="menuitem">Styles</item>, and then click the 
(<item type="menuitem">...</item>) button next to the box. Click the style in 
the list, and then click the <item type="menuitem">&gt;&gt;</item> or the <item 
type="menuitem">&lt;&lt;</item> button to define the outline level for the 
paragraph style.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150720" role="paragraph" l10n="U">If 
you want to use a different paragraph style as a table of contents entry, 
select <item type="menuitem">Styles</item>, and then click the (<item 
type="menuitem">...</item>) button next to the box. Click the style in the 
list, and then click the <item type="menuitem">&gt;&gt;</item> or the <item 
type="menuitem">&lt;&lt;</item> button to define the outline level for the 
paragraph style.</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/insert_line.xhp 
b/main/helpcontent2/source/text/swriter/guide/insert_line.xhp
index 20680c4330..ff7fd36071 100644
--- a/main/helpcontent2/source/text/swriter/guide/insert_line.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/insert_line.xhp
@@ -35,24 +35,23 @@
 <bookmark_value>rules</bookmark_value>
 <bookmark_value>inserting; horizontal lines</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3151178" role="heading" level="1" l10n="U"
-oldref="76"><variable id="insert_line"><link 
href="text/swriter/guide/insert_line.xhp" name="Inserting a Horizontal 
Line">Inserting a Horizontal Line</link>
+<paragraph xml-lang="en-US" id="hd_id3151178" role="heading" level="1" 
l10n="U"><variable id="insert_line"><link 
href="text/swriter/guide/insert_line.xhp" name="Inserting a Horizontal 
Line">Inserting a Horizontal Line</link>
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_id2165898" role="tip" l10n="CHG">This 
guide is about inserting graphical rules. You can also insert other lines, see 
<link href="text/shared/guide/line_intext.xhp">Drawing Lines in 
Text</link>.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149691" role="listitem" l10n="U" 
oldref="82">Click in the document where you want to insert the line.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149691" role="listitem" l10n="U">Click 
in the document where you want to insert the line.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155186" role="listitem" l10n="CHG" 
oldref="77">Choose <emph>Insert - Horizontal Rule</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155186" role="listitem" 
l10n="CHG">Choose <emph>Insert - Horizontal Rule</emph>.</paragraph>
 </listitem>
 </list>
 <list type="ordered" startwith="3">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155902" role="listitem" l10n="U" 
oldref="83">Click the line that you want to insert in the 
<emph>Selection</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155902" role="listitem" l10n="U">Click 
the line that you want to insert in the <emph>Selection</emph> list.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147124" role="listitem" l10n="U" 
oldref="84">Click <emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147124" role="listitem" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
 <paragraph xml-lang="en-US" id="hd_id5338602" role="heading" level="2" 
l10n="NEW">The "Plain" type</paragraph>
@@ -75,16 +74,16 @@ oldref="76"><variable id="insert_line"><link 
href="text/swriter/guide/insert_lin
 </list>
 <paragraph xml-lang="en-US" id="hd_id8385265" role="heading" level="2" 
l10n="NEW">The graphical type</paragraph>
 <paragraph xml-lang="en-US" id="par_id2582476" role="paragraph" 
l10n="NEW">Select any rule type below of the "Plain" rule type. This inserts a 
new paragraph at the position of the cursor. A picture showing a graphical 
horizontal line is inserted.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150217" role="paragraph" l10n="U" 
oldref="78">The inserted line is anchored to the current paragraph and centered 
between the page margins.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150217" role="paragraph" l10n="U">The 
inserted line is anchored to the current paragraph and centered between the 
page margins.</paragraph>
 <list type="unordered">
 <listitem>
 <paragraph xml-lang="en-US" id="par_id2111575" role="paragraph" l10n="NEW">To 
edit the graphical line, right-click the line and choose 
<emph>Picture</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3150231" role="tip" l10n="U" 
oldref="79">You can also insert one of these lines by dragging it from the 
<emph>Rulers</emph> folder in the <emph>Gallery</emph> into the current 
document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150231" role="tip" l10n="U">You can 
also insert one of these lines by dragging it from the <emph>Rulers</emph> 
folder in the <emph>Gallery</emph> into the current document.</paragraph>
 <embed href="text/shared/00/00000004.xhp#related"/>
 <embed href="text/shared/guide/line_intext.xhp#line_intext"/>
 <embed href="text/shared/guide/insert_bitmap.xhp#insert_bitmap"/>
-<paragraph xml-lang="en-US" id="par_id3150944" role="paragraph" l10n="U" 
oldref="80"><link href="text/shared/01/gallery.xhp" 
name="Gallery">Gallery</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3150944" role="paragraph" l10n="U"><link 
href="text/shared/01/gallery.xhp" name="Gallery">Gallery</link></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/search_regexp.xhp 
b/main/helpcontent2/source/text/swriter/guide/search_regexp.xhp
index c85ac17467..a3f6ad40a9 100644
--- a/main/helpcontent2/source/text/swriter/guide/search_regexp.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/search_regexp.xhp
@@ -38,50 +38,48 @@
 <bookmark_value>invisible characters;finding</bookmark_value>
 <bookmark_value>paragraph marks;searching</bookmark_value>
 </bookmark><comment>mw deleted "wildcards;" and inserted wildcards 
crossreference</comment><comment>mw added "paragraph marks;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3150099" role="heading" level="1" l10n="U"
-oldref="15"><variable id="search_regexp"><link 
href="text/swriter/guide/search_regexp.xhp">Using Wildcards in Text 
Searches</link>
+<paragraph xml-lang="en-US" id="hd_id3150099" role="heading" level="1" 
l10n="U"><variable id="search_regexp"><link 
href="text/swriter/guide/search_regexp.xhp">Using Wildcards in Text 
Searches</link>
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_id0509200916345516" role="paragraph" 
l10n="NEW">Wildcards or placeholders can be used to search for some unspecified 
or even invisible characters.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155182" role="paragraph" 
oldref="50">You can use wildcards when you find and replace text in a document. 
For example, "s.n" finds "sun" and "son".</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155182" role="paragraph">You can use 
wildcards when you find and replace text in a document. For example, "s.n" 
finds "sun" and "son".</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155907" role="listitem" l10n="U" 
oldref="40">Choose <item type="menuitem">Edit - Find &amp; 
Replace</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155907" role="listitem" l10n="U">Choose 
<item type="menuitem">Edit - Find &amp; Replace</item>.</paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_id2142399" role="listitem" 
l10n="NEW">Click <item type="menuitem">More Options</item> to expand the 
dialog.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155861" role="listitem" l10n="U" 
oldref="41">Select the <item type="menuitem">Regular expressions</item> check 
box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155861" role="listitem" l10n="U">Select 
the <item type="menuitem">Regular expressions</item> check box.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149843" role="listitem" l10n="U" 
oldref="42">In the <item type="menuitem">Search for</item> box, type the search 
term and the wildcard(s) that you want to use in your search.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149843" role="listitem" l10n="U">In the 
<item type="menuitem">Search for</item> box, type the search term and the 
wildcard(s) that you want to use in your search.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U" 
oldref="51">Click <item type="menuitem">Find</item> or <item 
type="menuitem">Find All</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U">Click 
<item type="menuitem">Find</item> or <item type="menuitem">Find 
All</item>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="hd_id3153401" role="heading" level="2" l10n="U"
-oldref="52">Regular Expression Examples</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153401" role="heading" level="2" 
l10n="U">Regular Expression Examples</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149641" role="listitem" oldref="44">The 
wildcard for a single character is a period (.).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149641" role="listitem">The wildcard 
for a single character is a period (.).</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153136" role="listitem" oldref="43">The 
wildcard for zero or more occurrences of the previous character is an asterisk. 
For example: "123*" finds "12" "123", and "1233".</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153136" role="listitem">The wildcard 
for zero or more occurrences of the previous character is an asterisk. For 
example: "123*" finds "12" "123", and "1233".</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149609" role="listitem" oldref="45">The 
wildcard combination to search for zero or more occurrences of any character is 
a period and asterisk (.*).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149609" role="listitem">The wildcard 
combination to search for zero or more occurrences of any character is a period 
and asterisk (.*).</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149854" role="listitem" l10n="CHG" 
oldref="46">The wildcard for the end of a paragraph is a dollar sign ($). The 
wildcard character combination for the start of a paragraph is a caret and a 
period (^.).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149854" role="listitem" l10n="CHG">The 
wildcard for the end of a paragraph is a dollar sign ($). The wildcard 
character combination for the start of a paragraph is a caret and a period 
(^.).</paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_id0509200916345545" role="listitem" 
l10n="NEW">The wildcard for a tab character is \t.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3153414" role="note" l10n="CHG" 
oldref="49">A search using a regular expression will work only within one 
paragraph. To search using a regular expression in more than one paragraph, do 
a separate search in each paragraph.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153414" role="note" l10n="CHG">A search 
using a regular expression will work only within one paragraph. To search using 
a regular expression in more than one paragraph, do a separate search in each 
paragraph.</paragraph>
 <section id="relatedtopics">
-<paragraph xml-lang="en-US" id="par_id3149875" role="paragraph" l10n="U" 
oldref="48"><link href="text/shared/01/02100001.xhp" name="List of 
Wildcards">List of Wildcards</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149875" role="paragraph" l10n="U"><link 
href="text/shared/01/02100001.xhp" name="List of Wildcards">List of 
Wildcards</link></paragraph>
 </section>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/table_cells.xhp 
b/main/helpcontent2/source/text/swriter/guide/table_cells.xhp
index d0a317918d..8f455e3c98 100644
--- a/main/helpcontent2/source/text/swriter/guide/table_cells.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/table_cells.xhp
@@ -39,34 +39,33 @@
 <bookmark_value>deleting;rows/columns, by keyboard</bookmark_value>
 <bookmark_value>inserting;rows/columns, by keyboard</bookmark_value>
 </bookmark><comment>MW changed "adding;" to "inserting;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3156377" role="heading" level="1" l10n="U"
-oldref="22"><variable id="table_cells"><link 
href="text/swriter/guide/table_cells.xhp" name="Adding or Deleting a Row or 
Column to a Table Using the Keyboard">Adding or Deleting a Row or Column to a 
Table Using the Keyboard</link>
+<paragraph xml-lang="en-US" id="hd_id3156377" role="heading" level="1" 
l10n="U"><variable id="table_cells"><link 
href="text/swriter/guide/table_cells.xhp" name="Adding or Deleting a Row or 
Column to a Table Using the Keyboard">Adding or Deleting a Row or Column to a 
Table Using the Keyboard</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149487" role="paragraph" l10n="U" 
oldref="27">You can add or delete rows or columns in tables as well as split or 
merge table cells using the keyboard.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149487" role="paragraph" l10n="U">You 
can add or delete rows or columns in tables as well as split or merge table 
cells using the keyboard.</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155906" role="listitem" l10n="U" 
oldref="28">To insert a new row in a table, place the cursor in a table cell, 
press <switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3155906" role="listitem" l10n="U">To 
insert a new row in a table, place the cursor in a table cell, press 
<switchinline select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and 
then press the up or down arrow key. You can also move the cursor to the last 
cell in the table, and then press Tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147412" role="listitem" l10n="U" 
oldref="25">To insert a new column, place the cursor in a table cell, press 
<switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3147412" role="listitem" l10n="U">To 
insert a new column, place the cursor in a table cell, press <switchinline 
select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and 
then press the left or right arrow key.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3156096" role="listitem" l10n="U" 
oldref="29">To split a table cell instead of adding a column, press 
<switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3156096" role="listitem" l10n="U">To 
split a table cell instead of adding a column, press <switchinline 
select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and 
then hold down <switchinline select="sys"><caseinline select="MAC">Command
 </caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you 
press the left or right arrow key.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153408" role="listitem" l10n="U" 
oldref="26">To delete a row, place the cursor in a table cell, press 
<switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3153408" role="listitem" l10n="U">To 
delete a row, place the cursor in a table cell, press <switchinline 
select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and 
then press the up or down arrow key.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149626" role="listitem" l10n="U" 
oldref="30">To delete a column, place the cursor in a table cell, press 
<switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3149626" role="listitem" l10n="U">To 
delete a column, place the cursor in a table cell, press <switchinline 
select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and 
then press the left or the right arrow key.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149612" role="listitem" l10n="U" 
oldref="31">To merge a table into an adjacent cell, place the cursor in the 
cell, press <switchinline select="sys"><caseinline select="MAC">Option
+<paragraph xml-lang="en-US" id="par_id3149612" role="listitem" l10n="U">To 
merge a table into an adjacent cell, place the cursor in the cell, press 
<switchinline select="sys"><caseinline select="MAC">Option
 </caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, hold 
down <switchinline select="sys"><caseinline select="MAC">Command
 </caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then 
press the left or the right arrow key.</paragraph>
 </listitem>

Reply via email to