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

commit 6360a1265cdf92bed158eae42b4783785d45a7c7
Author: mseidel <[email protected]>
AuthorDate: Tue Apr 1 10:04:07 2025 +0200

    Remove 'oldref' entries (work in progress)
---
 .../text/scalc/guide/userdefined_function.xhp      | 50 ++++++++---------
 .../source/text/shared/01/05200200.xhp             | 50 ++++++++---------
 .../source/text/shared/01/05210400.xhp             | 52 +++++++++---------
 .../source/text/shared/01/06030000.xhp             | 46 ++++++++--------
 .../source/text/shared/01/06040300.xhp             | 30 +++++------
 .../source/text/shared/02/12090100.xhp             | 36 ++++++-------
 .../source/text/simpress/guide/background.xhp      | 40 +++++++-------
 .../source/text/simpress/guide/keyboard.xhp        | 58 ++++++++++----------
 .../source/text/swriter/01/05030800.xhp            | 52 ++++++++----------
 .../source/text/swriter/guide/text_nav_keyb.xhp    | 63 +++++++++++-----------
 10 files changed, 230 insertions(+), 247 deletions(-)

diff --git a/main/helpcontent2/source/text/scalc/guide/userdefined_function.xhp 
b/main/helpcontent2/source/text/scalc/guide/userdefined_function.xhp
index a556ad1b50..1ae1f235d0 100644
--- a/main/helpcontent2/source/text/scalc/guide/userdefined_function.xhp
+++ b/main/helpcontent2/source/text/scalc/guide/userdefined_function.xhp
@@ -37,72 +37,72 @@
 <bookmark_value>IDE; Basic IDE</bookmark_value>
 <bookmark_value>programming;functions</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3155411" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><variable id="userdefined_function"><link 
href="text/scalc/guide/userdefined_function.xhp" name="Defining Functions 
Yourself">User-Defined Functions</link>
+<paragraph role="heading" id="hd_id3155411" xml-lang="en-US" level="1" 
l10n="U"><variable id="userdefined_function"><link 
href="text/scalc/guide/userdefined_function.xhp" name="Defining Functions 
Yourself">User-Defined Functions</link>
 </variable></paragraph>
-<paragraph role="paragraph" id="par_id3153969" xml-lang="en-US" l10n="U" 
oldref="2">You can apply user-defined functions in $[officename] Calc in the 
following ways:</paragraph>
+<paragraph role="paragraph" id="par_id3153969" xml-lang="en-US" l10n="U">You 
can apply user-defined functions in $[officename] Calc in the following 
ways:</paragraph>
 <list type="unordered">
 <listitem>
-<paragraph role="listitem" id="par_id3145366" xml-lang="en-US" l10n="CHG" 
oldref="4">You can define your own functions using the Basic-IDE. This method 
requires a basic knowledge of programming.</paragraph>
+<paragraph role="listitem" id="par_id3145366" xml-lang="en-US" l10n="CHG">You 
can define your own functions using the Basic-IDE. This method requires a basic 
knowledge of programming.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3153768" xml-lang="en-US" l10n="CHG" 
oldref="3">You can program functions as <link href="text/scalc/01/04060111.xhp" 
name="add-ins">add-ins</link>. This method requires an advanced knowledge of 
programming.</paragraph>
+<paragraph role="listitem" id="par_id3153768" xml-lang="en-US" l10n="CHG">You 
can program functions as <link href="text/scalc/01/04060111.xhp" 
name="add-ins">add-ins</link>. This method requires an advanced knowledge of 
programming.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3149260" xml-lang="en-US" level="2" 
l10n="CHG" oldref="6">Defining A Function Using %PRODUCTNAME Basic</paragraph>
+<paragraph role="heading" id="hd_id3149260" xml-lang="en-US" level="2" 
l10n="CHG">Defining A Function Using %PRODUCTNAME Basic</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3148456" xml-lang="en-US" l10n="CHG" 
oldref="7">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item>.</paragraph>
+<paragraph role="listitem" id="par_id3148456" xml-lang="en-US" 
l10n="CHG">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3154510" xml-lang="en-US" l10n="U" 
oldref="8">Click the <emph>Edit</emph> button. You will now see the Basic 
IDE.</paragraph>
+<paragraph role="listitem" id="par_id3154510" xml-lang="en-US" l10n="U">Click 
the <emph>Edit</emph> button. You will now see the Basic IDE.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150327" xml-lang="en-US" l10n="CHG" 
oldref="9">Enter the function code. In this example, we define a <item 
type="literal">VOL(a; b; c)</item> function that calculates the volume of a 
rectangular solid with side lengths <item type="literal">a</item>, <item 
type="literal">b</item> and <item type="literal">c</item>:</paragraph>
+<paragraph role="listitem" id="par_id3150327" xml-lang="en-US" 
l10n="CHG">Enter the function code. In this example, we define a <item 
type="literal">VOL(a; b; c)</item> function that calculates the volume of a 
rectangular solid with side lengths <item type="literal">a</item>, <item 
type="literal">b</item> and <item type="literal">c</item>:</paragraph>
 <paragraph role="code" id="par_id9797426" xml-lang="en-US" l10n="NEW" 
localize="false">Function VOL(a, b, c)<br/>VOL = a*b*c<br/>End 
Function</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3155443" xml-lang="en-US" l10n="U" 
oldref="10">Close the Basic-IDE window.</paragraph>
-<paragraph role="listitem" id="par_id3150043" xml-lang="en-US" l10n="CHG" 
oldref="11">Your function is automatically saved in the default module and is 
now available. If you apply the function in a Calc document that is to be used 
on another computer, you can copy the function to the Calc document as 
described in the next section.</paragraph>
+<paragraph role="listitem" id="par_id3155443" xml-lang="en-US" l10n="U">Close 
the Basic-IDE window.</paragraph>
+<paragraph role="listitem" id="par_id3150043" xml-lang="en-US" l10n="CHG">Your 
function is automatically saved in the default module and is now available. If 
you apply the function in a Calc document that is to be used on another 
computer, you can copy the function to the Calc document as described in the 
next section.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3147340" xml-lang="en-US" level="2" 
l10n="U" oldref="18">Copying a Function To a Document</paragraph>
-<paragraph role="paragraph" id="par_id3145232" xml-lang="en-US" l10n="CHG" 
oldref="19">In stage 2 of "Defining A Function Using %PRODUCTNAME Basic", in 
the <emph>Macro</emph> dialog you clicked on <emph>Edit</emph>. As the default, 
in the <emph>Macro from</emph> field the <emph>My Macros - Standard - 
Module1</emph> module is selected. The <emph>Standard</emph> library resides 
locally in your user directory.</paragraph>
-<paragraph role="paragraph" id="par_id3154022" xml-lang="en-US" l10n="U" 
oldref="20">If you want to copy the user-defined function to a Calc 
document:</paragraph>
+<paragraph role="heading" id="hd_id3147340" xml-lang="en-US" level="2" 
l10n="U">Copying a Function To a Document</paragraph>
+<paragraph role="paragraph" id="par_id3145232" xml-lang="en-US" l10n="CHG">In 
stage 2 of "Defining A Function Using %PRODUCTNAME Basic", in the 
<emph>Macro</emph> dialog you clicked on <emph>Edit</emph>. As the default, in 
the <emph>Macro from</emph> field the <emph>My Macros - Standard - 
Module1</emph> module is selected. The <emph>Standard</emph> library resides 
locally in your user directory.</paragraph>
+<paragraph role="paragraph" id="par_id3154022" xml-lang="en-US" l10n="U">If 
you want to copy the user-defined function to a Calc document:</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3150304" xml-lang="en-US" l10n="CHG" 
oldref="21">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item> .</paragraph>
+<paragraph role="listitem" id="par_id3150304" xml-lang="en-US" 
l10n="CHG">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item> .</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150086" xml-lang="en-US" l10n="CHG" 
oldref="22">In the <emph>Macro from</emph> field select <emph>My Macros - 
Standard - Module1</emph> and click <emph>Edit</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3150086" xml-lang="en-US" l10n="CHG">In 
the <emph>Macro from</emph> field select <emph>My Macros - Standard - 
Module1</emph> and click <emph>Edit</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3166430" xml-lang="en-US" l10n="CHG" 
oldref="23">In the Basic-IDE, select the source of your user-defined function 
and copy it to the clipboard.</paragraph>
+<paragraph role="listitem" id="par_id3166430" xml-lang="en-US" l10n="CHG">In 
the Basic-IDE, select the source of your user-defined function and copy it to 
the clipboard.</paragraph>
 </listitem>
 <listitem>
 <paragraph role="listitem" id="par_idN1081D" xml-lang="en-US" l10n="NEW">Close 
the Basic-IDE.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150517" xml-lang="en-US" l10n="CHG" 
oldref="24">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item> .</paragraph>
+<paragraph role="listitem" id="par_id3150517" xml-lang="en-US" 
l10n="CHG">Choose <item type="menuitem">Tools - Macros - Organize Macros - 
%PRODUCTNAME Basic</item> .</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3145384" xml-lang="en-US" l10n="CHG" 
oldref="25">In the <emph>Macro from</emph> field select <emph>(Name of the Calc 
document) - Standard - Module1</emph>. Click <emph>Edit</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3145384" xml-lang="en-US" l10n="CHG">In 
the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - 
Standard - Module1</emph>. Click <emph>Edit</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148699" xml-lang="en-US" l10n="U" 
oldref="26">Paste the clipboard contents in the Basic-IDE of the 
document.</paragraph>
+<paragraph role="listitem" id="par_id3148699" xml-lang="en-US" l10n="U">Paste 
the clipboard contents in the Basic-IDE of the document.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3153305" xml-lang="en-US" level="2" 
l10n="U" oldref="12">Applying a User-defined Function in $[officename] 
Calc</paragraph>
-<paragraph role="paragraph" id="par_id3148869" xml-lang="en-US" l10n="CHG" 
oldref="13">Once you have defined the function <item type="literal">VOL(a; b; 
c)</item> in the Basic-IDE, you can apply it the same way as the built-in 
functions of $[officename] Calc.</paragraph>
+<paragraph role="heading" id="hd_id3153305" xml-lang="en-US" level="2" 
l10n="U">Applying a User-defined Function in $[officename] Calc</paragraph>
+<paragraph role="paragraph" id="par_id3148869" xml-lang="en-US" 
l10n="CHG">Once you have defined the function <item type="literal">VOL(a; b; 
c)</item> in the Basic-IDE, you can apply it the same way as the built-in 
functions of $[officename] Calc.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3148606" xml-lang="en-US" l10n="CHG" 
oldref="14">Open a Calc document and enter numbers for the function parameters 
<item type="literal">a</item>, <item type="literal">b</item>, and <item 
type="literal">c</item> in cells A1, B1, and C1.</paragraph>
+<paragraph role="listitem" id="par_id3148606" xml-lang="en-US" l10n="CHG">Open 
a Calc document and enter numbers for the function parameters <item 
type="literal">a</item>, <item type="literal">b</item>, and <item 
type="literal">c</item> in cells A1, B1, and C1.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3156019" xml-lang="en-US" l10n="CHG" 
oldref="15">Set the cursor in another cell and enter the following:</paragraph>
-<paragraph role="code" id="par_id3155264" xml-lang="en-US" l10n="U" 
oldref="16">=VOL(A1;B1;C1)</paragraph>
+<paragraph role="listitem" id="par_id3156019" xml-lang="en-US" l10n="CHG">Set 
the cursor in another cell and enter the following:</paragraph>
+<paragraph role="code" id="par_id3155264" xml-lang="en-US" 
l10n="U">=VOL(A1;B1;C1)</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3146776" xml-lang="en-US" l10n="CHG" 
oldref="17">The function is evaluated and you will see the result in the 
selected cell.</paragraph>
+<paragraph role="listitem" id="par_id3146776" xml-lang="en-US" l10n="CHG">The 
function is evaluated and you will see the result in the selected 
cell.</paragraph>
 </listitem>
 </list>
 <section id="relatedtopics">
diff --git a/main/helpcontent2/source/text/shared/01/05200200.xhp 
b/main/helpcontent2/source/text/shared/01/05200200.xhp
index 067bc4eec2..b45fb66e76 100644
--- a/main/helpcontent2/source/text/shared/01/05200200.xhp
+++ b/main/helpcontent2/source/text/shared/01/05200200.xhp
@@ -31,50 +31,50 @@
 <body>
 <section id="linienstile">
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_LINE_DEF" id="bm_id3150467" 
localize="false"/>
-<paragraph role="heading" id="hd_id3148919" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/01/05200200.xhp" name="Line 
Styles">Line Styles</link></paragraph>
-<paragraph role="paragraph" id="par_id3150146" xml-lang="en-US" l10n="U" 
oldref="2"><ahelp hid="HID_LINE_DEF">Edit or create dashed or dotted line 
styles.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3148919" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/05200200.xhp" name="Line Styles">Line 
Styles</link></paragraph>
+<paragraph role="paragraph" id="par_id3150146" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_LINE_DEF">Edit or create dashed or dotted line 
styles.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00040502.xhp#linienstile"/>
 </section>
-<paragraph role="heading" id="hd_id3147617" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Properties</paragraph>
+<paragraph role="heading" id="hd_id3147617" xml-lang="en-US" level="2" 
l10n="U">Properties</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_LINESTYLES" id="bm_id3147212" 
localize="false"/>
-<paragraph role="heading" id="hd_id3146873" xml-lang="en-US" level="3" 
l10n="U" oldref="15">Line style</paragraph>
-<paragraph role="paragraph" id="par_id3146807" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES">Select 
the style of line that you want to create.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3146873" xml-lang="en-US" level="3" 
l10n="U">Line style</paragraph>
+<paragraph role="paragraph" id="par_id3146807" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES">Select the 
style of line that you want to create.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_1" id="bm_id3151097" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_2" id="bm_id3152895" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149948" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Type</paragraph>
-<paragraph role="paragraph" id="par_id3149031" xml-lang="en-US" l10n="U" 
oldref="6"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2">Select the 
combination of dashes and dots that you want.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149948" xml-lang="en-US" level="3" 
l10n="U">Type</paragraph>
+<paragraph role="paragraph" id="par_id3149031" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2">Select the 
combination of dashes and dots that you want.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_1" id="bm_id3146067" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_2" id="bm_id3154230" 
localize="false"/>
-<paragraph role="heading" id="hd_id3148731" xml-lang="en-US" level="3" 
l10n="U" oldref="7">Number</paragraph>
-<paragraph role="paragraph" id="par_id3155351" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid="SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2">Enter 
the number of times that you want a dot or a dash to appear in a 
sequence.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3148731" xml-lang="en-US" level="3" 
l10n="U">Number</paragraph>
+<paragraph role="paragraph" id="par_id3155351" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2">Enter the 
number of times that you want a dot or a dash to appear in a 
sequence.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_1" 
id="bm_id3153935" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_2" 
id="bm_id3149283" localize="false"/>
-<paragraph role="heading" id="hd_id3154422" xml-lang="en-US" level="3" 
l10n="U" oldref="9">Length</paragraph>
-<paragraph role="paragraph" id="par_id3149640" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp 
hid="SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2">Enter the length of 
the dash.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154422" xml-lang="en-US" level="3" 
l10n="U">Length</paragraph>
+<paragraph role="paragraph" id="par_id3149640" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2">Enter the length of 
the dash.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_DISTANCE" 
id="bm_id3156414" localize="false"/>
-<paragraph role="heading" id="hd_id3093440" xml-lang="en-US" level="3" 
l10n="U" oldref="11">Spacing</paragraph>
-<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" l10n="U" 
oldref="12"><ahelp 
hid="SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE">Enter the amount of 
space that you want to leave between dots or dashes.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3093440" xml-lang="en-US" level="3" 
l10n="U">Spacing</paragraph>
+<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE">Enter the amount of 
space that you want to leave between dots or dashes.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:CheckBox:RID_SVXPAGE_LINE_DEF:CBX_SYNCHRONIZE" 
id="bm_id3147250" localize="false"/>
-<paragraph role="heading" id="hd_id3155805" xml-lang="en-US" level="3" 
l10n="U" oldref="13">Fit to line width</paragraph>
-<paragraph role="paragraph" id="par_id3147291" xml-lang="en-US" l10n="U" 
oldref="14"><ahelp 
hid="SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE">Automatically adjusts 
the entries relative to the length of the line.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155805" xml-lang="en-US" level="3" 
l10n="U">Fit to line width</paragraph>
+<paragraph role="paragraph" id="par_id3147291" xml-lang="en-US" 
l10n="U"><ahelp 
hid="SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE">Automatically adjusts 
the entries relative to the length of the line.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_ADD" id="bm_id3152551" 
localize="false"/>
-<paragraph role="heading" id="hd_id3155355" xml-lang="en-US" level="2" 
l10n="U" oldref="17">Add</paragraph>
-<paragraph role="paragraph" id="par_id3149827" xml-lang="en-US" l10n="U" 
oldref="18"><ahelp hid="SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD">Creates a 
new line style using the current settings.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155355" xml-lang="en-US" level="2" 
l10n="U">Add</paragraph>
+<paragraph role="paragraph" id="par_id3149827" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD">Creates a new 
line style using the current settings.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXDLG_NAME:EDT_STRING" 
id="bm_id3145313" localize="false"/>
-<paragraph role="heading" id="hd_id3155338" xml-lang="en-US" level="3" 
l10n="U" oldref="19">Name</paragraph>
-<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U" 
oldref="20"><ahelp hid="">Enter a name.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155338" xml-lang="en-US" level="3" 
l10n="U">Name</paragraph>
+<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" 
l10n="U"><ahelp hid="">Enter a name.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_MODIFY" id="bm_id3147011" 
localize="false"/>
-<paragraph role="heading" id="hd_id3155893" xml-lang="en-US" level="2" 
l10n="U" oldref="21">Modify</paragraph>
-<paragraph role="paragraph" id="par_id3157863" xml-lang="en-US" l10n="U" 
oldref="22"><ahelp hid="SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY">Updates 
the selected line style using the current settings. To change the name of the 
selected line style, enter a new name when prompted.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155893" xml-lang="en-US" level="2" 
l10n="U">Modify</paragraph>
+<paragraph role="paragraph" id="par_id3157863" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY">Updates 
the selected line style using the current settings. To change the name of the 
selected line style, enter a new name when prompted.</ahelp></paragraph>
 <embed href="text/shared/00/00000001.xhp#loeschen"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_LOAD" id="bm_id3149812" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" 
l10n="U" oldref="23">Load line style table</paragraph>
-<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U" 
oldref="24"><ahelp hid="SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD">Imports 
a list of line styles.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" 
l10n="U">Load line style table</paragraph>
+<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD">Imports a 
list of line styles.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_SAVE" id="bm_id3149579" 
localize="false"/>
-<paragraph role="heading" id="hd_id3148642" xml-lang="en-US" level="2" 
l10n="U" oldref="25">Save line style table</paragraph>
-<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" l10n="U" 
oldref="26"><ahelp hid="SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE">Saves 
the current list of line styles, so that you can load it again 
later.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3148642" xml-lang="en-US" level="2" 
l10n="U">Save line style table</paragraph>
+<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE">Saves the 
current list of line styles, so that you can load it again 
later.</ahelp></paragraph>
 <embed href="text/shared/00/00000001.xhp#vorschau"/>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/05210400.xhp 
b/main/helpcontent2/source/text/shared/01/05210400.xhp
index e4bdf4e38f..824f43389e 100644
--- a/main/helpcontent2/source/text/shared/01/05210400.xhp
+++ b/main/helpcontent2/source/text/shared/01/05210400.xhp
@@ -36,47 +36,47 @@
 <bookmark_value>dotted areas</bookmark_value>
 </bookmark>
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_AREA_HATCH" id="bm_id3155620" 
localize="false"/>
-<paragraph role="heading" id="hd_id3149962" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/01/05210400.xhp" 
name="Hatching">Hatching</link></paragraph>
-<paragraph role="paragraph" id="par_id3144436" xml-lang="en-US" l10n="U" 
oldref="2"><ahelp hid="HID_AREA_HATCH">Set the properties of a hatching 
pattern, or save and load hatching lists.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149962" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/05210400.xhp" 
name="Hatching">Hatching</link></paragraph>
+<paragraph role="paragraph" id="par_id3144436" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_AREA_HATCH">Set the properties of a hatching pattern, 
or save and load hatching lists.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/shared/00/00040502.xhp#schraffur"/>
 </section>
-<paragraph role="heading" id="hd_id3156042" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Properties</paragraph>
-<paragraph role="paragraph" id="par_id3147291" xml-lang="en-US" l10n="U" 
oldref="4">Define or modify a hatching pattern.</paragraph>
+<paragraph role="heading" id="hd_id3156042" xml-lang="en-US" level="2" 
l10n="U">Properties</paragraph>
+<paragraph role="paragraph" id="par_id3147291" xml-lang="en-US" 
l10n="U">Define or modify a hatching pattern.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE" 
id="bm_id3155392" localize="false"/>
-<paragraph role="heading" id="hd_id3147834" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Spacing</paragraph>
-<paragraph role="paragraph" id="par_id3147010" xml-lang="en-US" l10n="U" 
oldref="6"><ahelp 
hid="SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE">Enter the amount of 
space that you want to have between the hatch lines.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147834" xml-lang="en-US" level="3" 
l10n="U">Spacing</paragraph>
+<paragraph role="paragraph" id="par_id3147010" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE">Enter 
the amount of space that you want to have between the hatch 
lines.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE" id="bm_id3154289" 
localize="false"/>
-<paragraph role="heading" id="hd_id3155355" xml-lang="en-US" level="3" 
l10n="U" oldref="7">Angle</paragraph>
-<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE">Enter 
the rotation angle for the hatch lines, or click a position in the angle 
grid.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155355" xml-lang="en-US" level="3" 
l10n="U">Angle</paragraph>
+<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE">Enter the 
rotation angle for the hatch lines, or click a position in the angle 
grid.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_TPHATCH_CTRL" id="bm_id3150355" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="3" 
l10n="U" oldref="9">Angle grid</paragraph>
-<paragraph role="paragraph" id="par_id3147242" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid="HID_TPHATCH_CTRL">Click a position in the grid to 
define the rotation angle for the hatch lines.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="3" 
l10n="U">Angle grid</paragraph>
+<paragraph role="paragraph" id="par_id3147242" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_TPHATCH_CTRL">Click a position in the grid to define 
the rotation angle for the hatch lines.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_TYPE" id="bm_id3154898" 
localize="false"/>
-<paragraph role="heading" id="hd_id3155449" xml-lang="en-US" level="3" 
l10n="U" oldref="21">Line type</paragraph>
-<paragraph role="paragraph" id="par_id3152909" xml-lang="en-US" l10n="U" 
oldref="22"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE">Select the 
type of hatch lines that you want to use.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155449" xml-lang="en-US" level="3" 
l10n="U">Line type</paragraph>
+<paragraph role="paragraph" id="par_id3152909" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE">Select the 
type of hatch lines that you want to use.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_COLOR" id="bm_id3154307" 
localize="false"/>
-<paragraph role="heading" id="hd_id3150503" xml-lang="en-US" level="3" 
l10n="U" oldref="23">Line color</paragraph>
-<paragraph role="paragraph" id="par_id3149578" xml-lang="en-US" l10n="U" 
oldref="24"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR">Select the 
color of the hatch lines.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3159147" xml-lang="en-US" level="2" 
l10n="U" oldref="11">Hatches List</paragraph>
-<paragraph role="paragraph" id="par_id3149955" xml-lang="en-US" l10n="U" 
oldref="12">Lists the available hatching patterns. You can also modify or 
create your own hatching pattern. To save the list, click the <emph>Save 
Hatches List</emph> button. To display a different list, click the <emph>Load 
Hatches List</emph> button.</paragraph>
+<paragraph role="heading" id="hd_id3150503" xml-lang="en-US" level="3" 
l10n="U">Line color</paragraph>
+<paragraph role="paragraph" id="par_id3149578" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR">Select the 
color of the hatch lines.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3159147" xml-lang="en-US" level="2" 
l10n="U">Hatches List</paragraph>
+<paragraph role="paragraph" id="par_id3149955" xml-lang="en-US" l10n="U">Lists 
the available hatching patterns. You can also modify or create your own 
hatching pattern. To save the list, click the <emph>Save Hatches List</emph> 
button. To display a different list, click the <emph>Load Hatches List</emph> 
button.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_SVXPAGE_HATCH:LB_HATCHINGS" id="bm_id3153699" 
localize="false"/>
-<paragraph role="heading" id="hd_id3150670" xml-lang="en-US" level="3" 
l10n="U" oldref="13">Hatches list</paragraph>
-<paragraph role="paragraph" id="par_id3144438" xml-lang="en-US" l10n="U" 
oldref="14"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS">Lists the 
available hatching patterns. Click the hatching pattern that you want to apply, 
and then click <emph>OK</emph>.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150670" xml-lang="en-US" level="3" 
l10n="U">Hatches list</paragraph>
+<paragraph role="paragraph" id="par_id3144438" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS">Lists the 
available hatching patterns. Click the hatching pattern that you want to apply, 
and then click <emph>OK</emph>.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_HATCH:BTN_ADD" id="bm_id3155389" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153823" xml-lang="en-US" level="3" 
l10n="U" oldref="15">Add</paragraph>
-<paragraph role="paragraph" id="par_id3148924" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp hid="SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD">Adds a custom 
hatching pattern to the current list. Specify the properties of your hatching 
pattern, and then click this button.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153823" xml-lang="en-US" level="3" 
l10n="U">Add</paragraph>
+<paragraph role="paragraph" id="par_id3148924" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD">Adds a custom 
hatching pattern to the current list. Specify the properties of your hatching 
pattern, and then click this button.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_HATCH:BTN_MODIFY" id="bm_id3146848" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147620" xml-lang="en-US" level="3" 
l10n="U" oldref="17">Modify</paragraph>
-<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U" 
oldref="18"><ahelp hid="SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY">Applies 
the current hatching properties to the selected hatching pattern. If you want, 
you can save the pattern under a different name.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147620" xml-lang="en-US" level="3" 
l10n="U">Modify</paragraph>
+<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY">Applies the 
current hatching properties to the selected hatching pattern. If you want, you 
can save the pattern under a different name.</ahelp></paragraph>
 <embed href="text/shared/00/00000001.xhp#loeschen"/>
 <embed href="text/shared/00/00000001.xhp#vorschau"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ImageButton:RID_SVXPAGE_HATCH:BTN_LOAD" id="bm_id3153896" 
localize="false"/>
-<paragraph role="heading" id="hd_id3147304" xml-lang="en-US" level="2" 
l10n="U" oldref="25">Load Hatches List</paragraph>
-<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" l10n="U" 
oldref="26"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD">Loads a 
different list of hatching patterns.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147304" xml-lang="en-US" level="2" 
l10n="U">Load Hatches List</paragraph>
+<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD">Loads a 
different list of hatching patterns.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui:ImageButton:RID_SVXPAGE_HATCH:BTN_SAVE" id="bm_id3156435" 
localize="false"/>
-<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U" oldref="27">Save Hatches List</paragraph>
-<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" l10n="U" 
oldref="28"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE">Saves the 
current list of hatching patterns, so that you can load it 
later.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U">Save Hatches List</paragraph>
+<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE">Saves the 
current list of hatching patterns, so that you can load it 
later.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/06030000.xhp 
b/main/helpcontent2/source/text/shared/01/06030000.xhp
index d34cbfc8c4..8bcb3cdba4 100644
--- a/main/helpcontent2/source/text/shared/01/06030000.xhp
+++ b/main/helpcontent2/source/text/shared/01/06030000.xhp
@@ -31,10 +31,10 @@
 <body>
 <section id="pipette">
 <bookmark xml-lang="en-US" branch="hid/.uno:BmpMask" id="bm_id3085157" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156324" xml-lang="en-US" level="1" 
l10n="CHG" oldref="1"><link href="text/shared/01/06030000.xhp" name="Color 
Replacer">Color Replacer</link></paragraph>
-<paragraph role="paragraph" id="par_id3145138" xml-lang="en-US" l10n="CHG" 
oldref="2"><ahelp hid=".uno:BmpMask">Opens the Color Replacer dialog, where you 
can replace colors in bitmap and meta file graphics.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156324" xml-lang="en-US" level="1" 
l10n="CHG"><link href="text/shared/01/06030000.xhp" name="Color Replacer">Color 
Replacer</link></paragraph>
+<paragraph role="paragraph" id="par_id3145138" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".uno:BmpMask">Opens the Color Replacer dialog, where you 
can replace colors in bitmap and meta file graphics.</ahelp></paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="U" 
oldref="24">You can replace up to four different colors at one time.</paragraph>
+<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="U">You 
can replace up to four different colors at one time.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000406.xhp#etpip"/>
 </section>
@@ -52,46 +52,46 @@
 </image></paragraph>
 </tablecell>
 <tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="CHG" 
oldref="3">Color Replacer</paragraph>
+<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" 
l10n="CHG">Color Replacer</paragraph>
 </tablecell>
 </tablerow>
 </table>
 <bookmark xml-lang="en-US" branch="hid/SVX_HID_BMPMASK_TBI_PIPETTE" 
id="bm_id3155535" localize="false"/>
-<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" l10n="CHG" 
oldref="4"><ahelp hid="." visibility="hidden">Select one of the four source 
color boxes. Move the mouse pointer over the selected image, and then click the 
color that you want to replace.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" 
l10n="CHG"><ahelp hid="." visibility="hidden">Select one of the four source 
color boxes. Move the mouse pointer over the selected image, and then click the 
color that you want to replace.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/SVX_HID_BMPMASK_CTL_PIPETTE" 
id="bm_id3147010" localize="false"/>
-<paragraph role="heading" id="hd_id3149827" xml-lang="en-US" level="2" 
l10n="CHG" oldref="5">Color Replacer color</paragraph>
-<paragraph role="paragraph" id="par_id3146957" xml-lang="en-US" l10n="CHG" 
oldref="6"><ahelp hid=".">Displays the color in the selected image that 
directly underlies the current mouse pointer position. This features only works 
if the Color Replacer tool is selected.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149827" xml-lang="en-US" level="2" 
l10n="CHG">Color Replacer color</paragraph>
+<paragraph role="paragraph" id="par_id3146957" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Displays the color in the selected image that 
directly underlies the current mouse pointer position. This features only works 
if the Color Replacer tool is selected.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/svx:PushButton:RID_SVXDLG_BMPMASK:BTN_EXEC" id="bm_id3155942" 
localize="false"/>
-<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Replace</paragraph>
-<paragraph role="paragraph" id="par_id3154983" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid="SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC">Replaces the 
selected source colors in the current image with the colors that you specify in 
the <emph>Replace with</emph> boxes.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" 
l10n="U" oldref="9">Colors</paragraph>
-<paragraph role="paragraph" id="par_id3153031" xml-lang="en-US" l10n="U" 
oldref="10">Lists the source colors and the replacement colors.</paragraph>
+<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" 
l10n="U">Replace</paragraph>
+<paragraph role="paragraph" id="par_id3154983" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC">Replaces the 
selected source colors in the current image with the colors that you specify in 
the <emph>Replace with</emph> boxes.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" 
l10n="U">Colors</paragraph>
+<paragraph role="paragraph" id="par_id3153031" xml-lang="en-US" l10n="U">Lists 
the source colors and the replacement colors.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_1" 
id="bm_id3150977" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_2" 
id="bm_id3153253" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_3" 
id="bm_id3146138" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_4" 
id="bm_id3153321" localize="false"/>
-<paragraph role="heading" id="hd_id3149416" xml-lang="en-US" level="3" 
l10n="U" oldref="11">Source color checkbox</paragraph>
-<paragraph role="paragraph" id="par_id3149819" xml-lang="en-US" l10n="U" 
oldref="12"><ahelp hid="SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4">Select this 
checkbox to replace the current <emph>Source color</emph> with the color that 
you specify in the <emph>Replace with</emph> box.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149416" xml-lang="en-US" level="3" 
l10n="U">Source color checkbox</paragraph>
+<paragraph role="paragraph" id="par_id3149819" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4">Select this 
checkbox to replace the current <emph>Source color</emph> with the color that 
you specify in the <emph>Replace with</emph> box.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/SVX_HID_BMPMASK_CTL_QCOL_1" 
id="bm_id3157909" localize="false"/>
-<paragraph role="heading" id="hd_id3159116" xml-lang="en-US" level="3" 
l10n="U" oldref="13">Source color</paragraph>
-<paragraph role="paragraph" id="par_id3149903" xml-lang="en-US" l10n="CHG" 
oldref="14"><ahelp hid=".">Displays the color in the selected image that you 
want to replace. To set the source color, click here, click the Color Replacer, 
and then click a color in the selected image.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3159116" xml-lang="en-US" level="3" 
l10n="U">Source color</paragraph>
+<paragraph role="paragraph" id="par_id3149903" xml-lang="en-US" 
l10n="CHG"><ahelp hid=".">Displays the color in the selected image that you 
want to replace. To set the source color, click here, click the Color Replacer, 
and then click a color in the selected image.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/svx:MetricField:RID_SVXDLG_BMPMASK:SP_1" id="bm_id3158431" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/svx:MetricField:RID_SVXDLG_BMPMASK:SP_2" id="bm_id3146848" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/svx:MetricField:RID_SVXDLG_BMPMASK:SP_3" id="bm_id3149516" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/svx:MetricField:RID_SVXDLG_BMPMASK:SP_4" id="bm_id3147620" 
localize="false"/>
-<paragraph role="heading" id="hd_id3150085" xml-lang="en-US" level="3" 
l10n="U" oldref="15">Tolerance</paragraph>
-<paragraph role="paragraph" id="par_id3144438" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp hid="SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4">Set the 
tolerance for replacing a source color in the source image. To replace colors 
that are similar to the color that you selected, enter a low value. To replace 
a wider range of colors, enter a higher value.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150085" xml-lang="en-US" level="3" 
l10n="U">Tolerance</paragraph>
+<paragraph role="paragraph" id="par_id3144438" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4">Set the tolerance 
for replacing a source color in the source image. To replace colors that are 
similar to the color that you selected, enter a low value. To replace a wider 
range of colors, enter a higher value.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/svx:ListBox:RID_SVXDLG_BMPMASK:LB_1" 
id="bm_id3159256" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:ListBox:RID_SVXDLG_BMPMASK:LB_2" 
id="bm_id3155831" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:ListBox:RID_SVXDLG_BMPMASK:LB_3" 
id="bm_id3156326" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/svx:ListBox:RID_SVXDLG_BMPMASK:LB_4" 
id="bm_id3152350" localize="false"/>
-<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="3" 
l10n="U" oldref="17">Replace with</paragraph>
-<paragraph role="paragraph" id="par_id3154173" xml-lang="en-US" l10n="U" 
oldref="18"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4">Lists the 
available replacement colors. To modify the current list of colors, deselect 
the image, choose <emph>Format - Area</emph>, and then click the 
<emph>Colors</emph> tab.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="3" 
l10n="U">Replace with</paragraph>
+<paragraph role="paragraph" id="par_id3154173" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4">Lists the available 
replacement colors. To modify the current list of colors, deselect the image, 
choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> 
tab.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_TRANS" id="bm_id3149244" 
localize="false"/>
-<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="3" 
l10n="U" oldref="19">Transparency</paragraph>
-<paragraph role="paragraph" id="par_id3154905" xml-lang="en-US" l10n="U" 
oldref="20"><ahelp hid="SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS">Replaces 
transparent areas in the current image with the color that you 
select.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="3" 
l10n="U">Transparency</paragraph>
+<paragraph role="paragraph" id="par_id3154905" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS">Replaces 
transparent areas in the current image with the color that you 
select.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/svx:ListBox:RID_SVXDLG_BMPMASK:LB_TRANS" id="bm_id3153061" 
localize="false"/>
-<paragraph role="heading" id="hd_id3145087" xml-lang="en-US" level="3" 
l10n="U" oldref="21">Transparency</paragraph>
-<paragraph role="paragraph" id="par_id3148946" xml-lang="en-US" l10n="U" 
oldref="22"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS">Select the 
color to replace the transparent areas in the current image.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145087" xml-lang="en-US" level="3" 
l10n="U">Transparency</paragraph>
+<paragraph role="paragraph" id="par_id3148946" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS">Select the color 
to replace the transparent areas in the current image.</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/06040300.xhp 
b/main/helpcontent2/source/text/shared/01/06040300.xhp
index 4215145f18..7a4a7a5a17 100644
--- a/main/helpcontent2/source/text/shared/01/06040300.xhp
+++ b/main/helpcontent2/source/text/shared/01/06040300.xhp
@@ -31,44 +31,44 @@
 <body>
 <section id="ausnahmen">
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_OFAPAGE_AUTOCORR_EXCEPT" 
id="bm_id3150347" localize="false"/>
-<paragraph role="heading" id="hd_id3150278" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/01/06040300.xhp" 
name="Exceptions">Exceptions</link></paragraph>
-<paragraph role="paragraph" id="par_id3152876" xml-lang="en-US" l10n="U" 
oldref="2"><ahelp hid="HID_OFAPAGE_AUTOCORR_EXCEPT">Specify the abbreviations 
or letter combinations that you do not want $[officename] to correct 
automatically.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150278" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/01/06040300.xhp" 
name="Exceptions">Exceptions</link></paragraph>
+<paragraph role="paragraph" id="par_id3152876" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_OFAPAGE_AUTOCORR_EXCEPT">Specify the abbreviations or 
letter combinations that you do not want $[officename] to correct 
automatically.</ahelp></paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3154926" xml-lang="en-US" l10n="U" 
oldref="17">The exceptions that you define depend on the current language 
setting. If you want, you can change the language setting by selecting a 
different language in the <emph>Replacements and exceptions for language</emph> 
box.</paragraph>
+<paragraph role="paragraph" id="par_id3154926" xml-lang="en-US" l10n="U">The 
exceptions that you define depend on the current language setting. If you want, 
you can change the language setting by selecting a different language in the 
<emph>Replacements and exceptions for language</emph> box.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000406.xhp#autokoausnahmen"/>
 </section>
 <section id="sprache">
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_AUTOCORR_LANGUAGE" 
id="bm_id3150902" localize="false"/>
-<paragraph role="heading" id="hd_id3149205" xml-lang="en-US" level="2" 
l10n="U" oldref="15">Replacements and exceptions for language:</paragraph>
-<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U" 
oldref="16"><ahelp hid="HID_AUTOCORR_LANGUAGE">Select the language for which 
you want to create or edit the replacement rules.</ahelp> $[officename] first 
searches for exceptions that are defined for the language at the current cursor 
position in the document, and then searches the remaining languages.</paragraph>
+<paragraph role="heading" id="hd_id3149205" xml-lang="en-US" level="2" 
l10n="U">Replacements and exceptions for language:</paragraph>
+<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" 
l10n="U"><ahelp hid="HID_AUTOCORR_LANGUAGE">Select the language for which you 
want to create or edit the replacement rules.</ahelp> $[officename] first 
searches for exceptions that are defined for the language at the current cursor 
position in the document, and then searches the remaining languages.</paragraph>
 </section>
 <!-- removed HID OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV" id="bm_id9220557" 
localize="false"/>
-<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Abbreviations (no subsequent capital)</paragraph>
-<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" l10n="U" 
oldref="4"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV">Type 
an abbreviation followed by a period, and then click <emph>New</emph>. This 
prevents $[officename] from automatically capitalizing the first letter of the 
word that comes after the period at the end of the 
abbreviation.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="2" 
l10n="U">Abbreviations (no subsequent capital)</paragraph>
+<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" 
l10n="U"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV">Type an 
abbreviation followed by a period, and then click <emph>New</emph>. This 
prevents $[officename] from automatically capitalizing the first letter of the 
word that comes after the period at the end of the 
abbreviation.</ahelp></paragraph>
 <!-- removed HID OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV" 
id="bm_id1217383" localize="false"/>
-<paragraph role="paragraph" id="par_id3149751" xml-lang="en-US" l10n="U" 
oldref="13"><ahelp 
hid="OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV">Lists the 
abbreviations that are not automatically corrected.</ahelp> To remove an item 
from the list, select the item, and then click <emph>Delete</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3149751" xml-lang="en-US" 
l10n="U"><ahelp 
hid="OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV">Lists the 
abbreviations that are not automatically corrected.</ahelp> To remove an item 
from the list, select the item, and then click <emph>Delete</emph>.</paragraph>
 <!-- removed HID OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS" 
id="bm_id4391613" localize="false"/>
-<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Words with TWo INitial CApitals</paragraph>
-<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U" 
oldref="7"><ahelp 
hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS">Type the word or 
abbreviation that starts with two capital letters that you do not want 
$[officename] to change to one initial capital. For example, enter PC to 
prevent $[officename] from changing PC to Pc.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="2" 
l10n="U">Words with TWo INitial CApitals</paragraph>
+<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" 
l10n="U"><ahelp 
hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS">Type the word or 
abbreviation that starts with two capital letters that you do not want 
$[officename] to change to one initial capital. For example, enter PC to 
prevent $[officename] from changing PC to Pc.</ahelp></paragraph>
 <!-- removed HID OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS" 
id="bm_id8192083" localize="false"/>
-<paragraph role="paragraph" id="par_id3143271" xml-lang="en-US" l10n="U" 
oldref="14"><ahelp 
hid="OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS">Lists the words 
or abbreviations that start with two initial capitals that are not 
automatically corrected. All words which start with two capital letters are 
listed in the field.</ahelp> To remove an item from the list, select the item, 
and then click <emph>Delete</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3143271" xml-lang="en-US" 
l10n="U"><ahelp 
hid="OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS">Lists the words 
or abbreviations that start with two initial capitals that are not 
automatically corrected. All words which start with two capital letters are 
listed in the field.</ahelp> To remove an item from the list, select the item, 
and then click <emph>Delete</emph>.</paragraph>
 <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWABBREV -->
 <!-- removed HID 
OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWABBREV" 
id="bm_id7159031" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS" 
id="bm_id2211066" localize="false"/>
-<paragraph role="heading" id="hd_id3155503" xml-lang="en-US" level="3" 
l10n="U" oldref="8">New</paragraph>
-<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp 
hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS">Adds the 
current entry to the list of exceptions.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155503" xml-lang="en-US" level="3" 
l10n="U">New</paragraph>
+<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" 
l10n="U"><ahelp 
hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS">Adds the 
current entry to the list of exceptions.</ahelp></paragraph>
 <embed href="text/shared/00/00000001.xhp#loeschen1"/>
 <!-- removed HID OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOABBREV -->
 <!-- removed HID OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOABBREV" 
id="bm_id8066347" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS" 
id="bm_id6384777" localize="false"/>
-<paragraph role="heading" id="hd_id3149762" xml-lang="en-US" level="3" 
l10n="U" oldref="10">AutoInclude</paragraph>
-<paragraph role="paragraph" id="par_id3155829" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp 
hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS">Automatically 
adds abbreviations or words that start with two capital letters to the 
corresponding list of exceptions. This feature only works if the <emph>Correct 
TWo INitial CApitals</emph> option or the <emph>Capitalize first letter of 
every sentence</emph> option are selected in the <emph>[T]</emph> column 
on<link href="text/shared/ [...]
+<paragraph role="heading" id="hd_id3149762" xml-lang="en-US" level="3" 
l10n="U">AutoInclude</paragraph>
+<paragraph role="paragraph" id="par_id3155829" xml-lang="en-US" 
l10n="U"><ahelp 
hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS">Automatically 
adds abbreviations or words that start with two capital letters to the 
corresponding list of exceptions. This feature only works if the <emph>Correct 
TWo INitial CApitals</emph> option or the <emph>Capitalize first letter of 
every sentence</emph> option are selected in the <emph>[T]</emph> column 
on<link href="text/shared/01/06040100. [...]
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/02/12090100.xhp 
b/main/helpcontent2/source/text/shared/02/12090100.xhp
index 1949545f59..0fe33eedec 100644
--- a/main/helpcontent2/source/text/shared/02/12090100.xhp
+++ b/main/helpcontent2/source/text/shared/02/12090100.xhp
@@ -31,57 +31,53 @@
 <body>
 <bookmark xml-lang="en-US" branch="hid/.uno:DataFilterStandardFilter" 
id="bm_id9065823" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/.uno:DataFilterStandardFilter" 
id="bm_id3154232" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3151097" role="heading" level="1" 
l10n="U" oldref="1">Standard Filter</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149716" role="paragraph" l10n="U" 
oldref="2"><ahelp hid=".uno:DataFilterStandardFilter">Specifies the logical 
conditions to filter your table data.</ahelp> This dialog is available for 
spreadsheet documents, database tables and database forms. The dialog for 
databases does not contain the <emph>More Options</emph> button.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3151097" role="heading" level="1" 
l10n="U">Standard Filter</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149716" role="paragraph" 
l10n="U"><ahelp hid=".uno:DataFilterStandardFilter">Specifies the logical 
conditions to filter your table data.</ahelp> This dialog is available for 
spreadsheet documents, database tables and database forms. The dialog for 
databases does not contain the <emph>More Options</emph> button.</paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000409.xhp#dnfitdf"/>
 </section>
 <switch select="appl">
 <case select="CALC">
-<paragraph xml-lang="en-US" id="par_idN105EE" role="paragraph" l10n="NEW">
-<embedvar href="text/scalc/guide/filters.xhp#filters"/>
-</paragraph>
+<paragraph xml-lang="en-US" id="par_idN105EE" role="paragraph" 
l10n="NEW"><embedvar href="text/scalc/guide/filters.xhp#filters"/></paragraph>
 </case>
 </switch>
-<paragraph xml-lang="en-US" id="hd_id3155555" role="heading" level="2" 
l10n="U" oldref="3">Filter criteria</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147834" role="paragraph" l10n="U" 
oldref="4">You can define a filter by indicating the type of line, the name of 
the field, a logical condition and a value or a combination of 
arguments.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155555" role="heading" level="2" 
l10n="U">Filter criteria</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147834" role="paragraph" l10n="U">You 
can define a filter by indicating the type of line, the name of the field, a 
logical condition and a value or a combination of arguments.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_OP1" 
id="bm_id3153683" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_OP2" 
id="bm_id3147577" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND2" id="bm_id3155892" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND3" id="bm_id3150774" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149751" role="heading" level="2" 
l10n="U" oldref="5">Operator</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149177" role="paragraph" l10n="U" 
oldref="6"><ahelp hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHERECOND3">For the 
following arguments, you can choose between the logical operators AND / 
OR.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149751" role="heading" level="2" 
l10n="U">Operator</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149177" role="paragraph" 
l10n="U"><ahelp hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHERECOND3">For the 
following arguments, you can choose between the logical operators AND / 
OR.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_FIELD1" 
id="bm_id3153682" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_FIELD2" 
id="bm_id3155942" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_FIELD3" 
id="bm_id3150693" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD1" id="bm_id3153345" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD2" id="bm_id3155535" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD3" id="bm_id3148538" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149182" role="heading" level="2" 
l10n="U" oldref="7">Field name</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149398" role="paragraph" l10n="U" 
oldref="8"><ahelp 
hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHEREFIELD3">Specifies the field names 
from the current table to set them in the argument.</ahelp> You will see the 
column identifiers if no text is available for the field names.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149182" role="heading" level="2" 
l10n="U">Field name</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149398" role="paragraph" 
l10n="U"><ahelp hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHEREFIELD3">Specifies 
the field names from the current table to set them in the argument.</ahelp> You 
will see the column identifiers if no text is available for the field 
names.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_COND1" 
id="bm_id3149811" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_COND2" 
id="bm_id3153760" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCDLG_FILTER:LB_COND3" 
id="bm_id3153126" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP1" id="bm_id3159270" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP2" id="bm_id3148990" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP3" id="bm_id3153252" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="2" 
l10n="U" oldref="9">Condition</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150254" role="paragraph" l10n="U" 
oldref="10"><ahelp 
hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHERECOMP3">Specifies the <link 
href="text/shared/02/12090101.xhp" name="comparative operators">comparative 
operators</link> through which the entries in the <emph>Field name</emph> and 
<emph>Value</emph> fields can be linked.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="2" 
l10n="U">Condition</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150254" role="paragraph" 
l10n="U"><ahelp hid="DBACCESS_LISTBOX_DLG_FILTERCRIT_LB_WHERECOMP3">Specifies 
the <link href="text/shared/02/12090101.xhp" name="comparative 
operators">comparative operators</link> through which the entries in the 
<emph>Field name</emph> and <emph>Value</emph> fields can be 
linked.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/sc:ComboBox:RID_SCDLG_FILTER:ED_VAL1" 
id="bm_id3155136" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ComboBox:RID_SCDLG_FILTER:ED_VAL2" 
id="bm_id3148492" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sc:ComboBox:RID_SCDLG_FILTER:ED_VAL3" 
id="bm_id3150276" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE1" id="bm_id3146949" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE2" id="bm_id3153700" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE3" id="bm_id3159400" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149166" role="heading" level="2" l10n="U"
-oldref="11">Value</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149795" role="paragraph" l10n="U" 
oldref="12"><ahelp hid="DBACCESS_EDIT_DLG_FILTERCRIT_ET_WHEREVALUE3">Specifies 
a value to filter the field.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="par_id3150976" role="paragraph" l10n="U" 
oldref="14">The <emph>Value</emph> list box contains all possible values for 
the specified <emph>Field name</emph> . Choose the value to be used in the 
filter. You can also choose the <emph>- empty -</emph> or <emph>-not empty 
-</emph> entries.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156118" role="paragraph" l10n="U" 
oldref="15">If you use the filter function in database tables or forms, then 
type the value in the <emph>Value</emph> text box to be used for 
filtering.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149166" role="heading" level="2" 
l10n="U">Value</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149795" role="paragraph" 
l10n="U"><ahelp hid="DBACCESS_EDIT_DLG_FILTERCRIT_ET_WHEREVALUE3">Specifies a 
value to filter the field.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="par_id3150976" role="paragraph" l10n="U">The 
<emph>Value</emph> list box contains all possible values for the specified 
<emph>Field name</emph> . Choose the value to be used in the filter. You can 
also choose the <emph>- empty -</emph> or <emph>-not empty -</emph> 
entries.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156118" role="paragraph" l10n="U">If 
you use the filter function in database tables or forms, then type the value in 
the <emph>Value</emph> text box to be used for filtering.</paragraph>
 <switch select="appl">
 <case select="CALC">
-<paragraph xml-lang="en-US" id="hd_id3153061" role="heading" level="2" l10n="U"
-oldref="13"><link href="text/scalc/01/12040201.xhp" name="More Options">More 
Options</link></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153061" role="heading" level="2" 
l10n="U"><link href="text/scalc/01/12040201.xhp" name="More Options">More 
Options</link></paragraph>
 <embed href="text/scalc/01/12040201.xhp#zusaetzetext"/>
 </case>
 </switch>
diff --git a/main/helpcontent2/source/text/simpress/guide/background.xhp 
b/main/helpcontent2/source/text/simpress/guide/background.xhp
index 1cead17756..06b9252378 100644
--- a/main/helpcontent2/source/text/simpress/guide/background.xhp
+++ b/main/helpcontent2/source/text/simpress/guide/background.xhp
@@ -34,53 +34,53 @@
 <bookmark_value>slide masters; changing backgrounds</bookmark_value>
 <bookmark_value>slides;changing backgrounds</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3150199" xml-lang="en-US" level="1" 
l10n="U" oldref="33">
+<paragraph role="heading" id="hd_id3150199" xml-lang="en-US" level="1" 
l10n="U">
 <variable id="background">
 <link href="text/simpress/guide/background.xhp" name="Changing the Slide 
Background Fill">Changing the Slide Background Fill</link>
 </variable>
 </paragraph>
-<paragraph role="paragraph" id="par_id3155067" xml-lang="en-US" l10n="U" 
oldref="34">You can change the background color or the background fill of the 
current slide or all of the slides in your document. For a background fill, you 
can use hatching, a gradient, or a bitmap image.</paragraph>
-<paragraph role="paragraph" id="par_id3148701" xml-lang="en-US" l10n="CHG" 
oldref="36">If you want to change the background fill for all of the slides, 
choose <emph>View - Master - Slide Master</emph>. To change the background fill 
of a single slide, choose <emph>View - Normal</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3155067" xml-lang="en-US" l10n="U">You 
can change the background color or the background fill of the current slide or 
all of the slides in your document. For a background fill, you can use 
hatching, a gradient, or a bitmap image.</paragraph>
+<paragraph role="paragraph" id="par_id3148701" xml-lang="en-US" l10n="CHG">If 
you want to change the background fill for all of the slides, choose <emph>View 
- Master - Slide Master</emph>. To change the background fill of a single 
slide, choose <emph>View - Normal</emph>.</paragraph>
 <comment>insert help id when available</comment>
 <paragraph role="paragraph" id="par_id624713" xml-lang="en-US" l10n="NEW">
 <ahelp hid="." visibility="hidden">Click Set Background Picture for Slide in 
the context menu of a slide in Normal view to select a bitmap file. This file 
is used as a background picture.</ahelp>
 </paragraph>
 <comment>removed a para, #63970</comment>
-<paragraph role="heading" id="hd_id3150534" xml-lang="en-US" level="3" 
l10n="U" oldref="49">To use a color, gradient, or hatching pattern for the 
slide background</paragraph>
+<paragraph role="heading" id="hd_id3150534" xml-lang="en-US" level="3" 
l10n="U">To use a color, gradient, or hatching pattern for the slide 
background</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3149942" xml-lang="en-US" l10n="U" 
oldref="50">Choose <emph>Format - Page</emph>, and then click on the 
<emph>Background</emph> tab.</paragraph>
+<paragraph role="listitem" id="par_id3149942" xml-lang="en-US" l10n="U">Choose 
<emph>Format - Page</emph>, and then click on the <emph>Background</emph> 
tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148725" xml-lang="en-US" l10n="U" 
oldref="51">In the <emph>Fill</emph> area, do one of the following:</paragraph>
-<paragraph role="listitem" id="par_id3153040" xml-lang="en-US" l10n="U" 
oldref="52">Select <emph>Color</emph>, and then click a color in the 
list.</paragraph>
-<paragraph role="listitem" id="par_id3150866" xml-lang="en-US" l10n="U" 
oldref="53">Select <emph>Gradient</emph>, and then click a gradient style in 
the list.</paragraph>
-<paragraph role="listitem" id="par_id3150338" xml-lang="en-US" l10n="U" 
oldref="54">Select <emph>Hatching</emph>, and then click a hatching style in 
the list.</paragraph>
+<paragraph role="listitem" id="par_id3148725" xml-lang="en-US" l10n="U">In the 
<emph>Fill</emph> area, do one of the following:</paragraph>
+<paragraph role="listitem" id="par_id3153040" xml-lang="en-US" l10n="U">Select 
<emph>Color</emph>, and then click a color in the list.</paragraph>
+<paragraph role="listitem" id="par_id3150866" xml-lang="en-US" l10n="U">Select 
<emph>Gradient</emph>, and then click a gradient style in the list.</paragraph>
+<paragraph role="listitem" id="par_id3150338" xml-lang="en-US" l10n="U">Select 
<emph>Hatching</emph>, and then click a hatching style in the list.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3150021" xml-lang="en-US" l10n="U" 
oldref="55">Click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3150021" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3145244" xml-lang="en-US" level="3" 
l10n="U" oldref="56">To use an image for the slide background</paragraph>
-<paragraph role="paragraph" id="par_id3148394" xml-lang="en-US" l10n="U" 
oldref="57">You can display an entire image as a slide background, or you can 
tile the image to produce a patterned background.</paragraph>
+<paragraph role="heading" id="hd_id3145244" xml-lang="en-US" level="3" 
l10n="U">To use an image for the slide background</paragraph>
+<paragraph role="paragraph" id="par_id3148394" xml-lang="en-US" l10n="U">You 
can display an entire image as a slide background, or you can tile the image to 
produce a patterned background.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3156064" xml-lang="en-US" l10n="U" 
oldref="58">Choose <emph>Format - Page</emph>, and then click on the 
<emph>Background</emph> tab.</paragraph>
+<paragraph role="listitem" id="par_id3156064" xml-lang="en-US" l10n="U">Choose 
<emph>Format - Page</emph>, and then click on the <emph>Background</emph> 
tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3145356" xml-lang="en-US" l10n="U" 
oldref="59">In the <emph>Fill</emph> area, select <emph>Bitmap</emph>, and then 
click an image in the list.</paragraph>
-<paragraph role="note" id="par_id3150757" xml-lang="en-US" l10n="U" 
oldref="60">If you want to use a custom image for the slide background, close 
the <emph>Page Setup</emph> dialog, and then choose <emph>Format - Area</emph>. 
Click the <emph>Bitmaps</emph> tab, and then click <emph>Import</emph>. Locate 
the image you want to import and click <emph>Open</emph>. When you return to 
the <emph>Background</emph> tab, the image you imported will be in the 
<emph>Bitmap</emph> list.</paragraph>
+<paragraph role="listitem" id="par_id3145356" xml-lang="en-US" l10n="U">In the 
<emph>Fill</emph> area, select <emph>Bitmap</emph>, and then click an image in 
the list.</paragraph>
+<paragraph role="note" id="par_id3150757" xml-lang="en-US" l10n="U">If you 
want to use a custom image for the slide background, close the <emph>Page 
Setup</emph> dialog, and then choose <emph>Format - Area</emph>. Click the 
<emph>Bitmaps</emph> tab, and then click <emph>Import</emph>. Locate the image 
you want to import and click <emph>Open</emph>. When you return to the 
<emph>Background</emph> tab, the image you imported will be in the 
<emph>Bitmap</emph> list.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3153151" xml-lang="en-US" l10n="U" 
oldref="61">Do one of the following:</paragraph>
-<paragraph role="paragraph" id="par_id3150263" xml-lang="en-US" l10n="U" 
oldref="62">To display the entire image as the background, clear the 
<emph>Tile</emph> check box in the <emph>Position</emph> area, and then select 
<emph>AutoFit</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id3149756" xml-lang="en-US" l10n="U" 
oldref="63">To tile the image on the background, select <emph>Tile</emph>, and 
set the <emph>Size</emph>, <emph>Position</emph>, and <emph>Offset</emph> 
options for the image.</paragraph>
+<paragraph role="paragraph" id="par_id3153151" xml-lang="en-US" l10n="U">Do 
one of the following:</paragraph>
+<paragraph role="paragraph" id="par_id3150263" xml-lang="en-US" l10n="U">To 
display the entire image as the background, clear the <emph>Tile</emph> check 
box in the <emph>Position</emph> area, and then select 
<emph>AutoFit</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3149756" xml-lang="en-US" l10n="U">To 
tile the image on the background, select <emph>Tile</emph>, and set the 
<emph>Size</emph>, <emph>Position</emph>, and <emph>Offset</emph> options for 
the image.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="paragraph" id="par_id3154934" xml-lang="en-US" l10n="U" 
oldref="64">Click <emph>OK</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3154934" xml-lang="en-US" l10n="U">Click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="paragraph" id="par_id3158403" xml-lang="en-US" l10n="U" 
oldref="47">This modification is only valid for the current presentation 
document.</paragraph>
+<paragraph role="paragraph" id="par_id3158403" xml-lang="en-US" l10n="U">This 
modification is only valid for the current presentation document.</paragraph>
 <paragraph role="heading" id="par_idN10820" xml-lang="en-US" level="3" 
l10n="NEW">To save a new slide master as a template</paragraph>
 <list type="ordered">
 <listitem>
diff --git a/main/helpcontent2/source/text/simpress/guide/keyboard.xhp 
b/main/helpcontent2/source/text/simpress/guide/keyboard.xhp
index 6b657fe04f..cfd342215d 100644
--- a/main/helpcontent2/source/text/simpress/guide/keyboard.xhp
+++ b/main/helpcontent2/source/text/simpress/guide/keyboard.xhp
@@ -33,56 +33,52 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3154702">
 <bookmark_value>accessibility; $[officename] Impress</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3154702" xml-lang="en-US" level="1" 
l10n="CHG" oldref="1"><variable id="keyboard"><link 
href="text/simpress/guide/keyboard.xhp" name="Using Shortcut Keys in 
$[officename] Impress">Using Shortcut Keys in $[officename] Impress</link>
+<paragraph role="heading" id="hd_id3154702" xml-lang="en-US" level="1" 
l10n="CHG"><variable id="keyboard"><link 
href="text/simpress/guide/keyboard.xhp" name="Using Shortcut Keys in 
$[officename] Impress">Using Shortcut Keys in $[officename] Impress</link>
 </variable></paragraph>
 <embed href="text/shared/00/00000099.xhp#keys"/>
-<paragraph role="paragraph" id="par_id3148610" xml-lang="en-US" l10n="U" 
oldref="11">You can use the keyboard to access $[officename] Impress commands 
as well as to navigate through the workspace. $[officename] Impress uses the 
same shortcut keys as $[officename] Draw to create <link 
href="text/sdraw/guide/keyboard.xhp" name="drawing objects">drawing 
objects</link>.</paragraph>
-<paragraph role="heading" id="hd_id3149602" xml-lang="en-US" level="2" 
l10n="U" oldref="18">Selecting placeholders</paragraph>
-<paragraph role="paragraph" id="par_id3150212" xml-lang="en-US" l10n="U" 
oldref="10">$[officename] Impress <emph>AutoLayouts</emph> use placeholders for 
slide titles, text, and objects. To select a placeholder, press <item 
type="keycode">Ctrl+Enter</item>. To move to the next placeholder, press <item 
type="keycode">Ctrl+Enter</item> again.</paragraph>
-<paragraph role="note" id="par_id3166467" xml-lang="en-US" l10n="U" 
oldref="9">If you press <item type="keycode">Ctrl+Enter</item> after you reach 
the last placeholder in a slide, a new slide is inserted after the current 
slide. The new slide uses the same layout as the current slide.</paragraph>
+<paragraph role="paragraph" id="par_id3148610" xml-lang="en-US" l10n="U">You 
can use the keyboard to access $[officename] Impress commands as well as to 
navigate through the workspace. $[officename] Impress uses the same shortcut 
keys as $[officename] Draw to create <link href="text/sdraw/guide/keyboard.xhp" 
name="drawing objects">drawing objects</link>.</paragraph>
+<paragraph role="heading" id="hd_id3149602" xml-lang="en-US" level="2" 
l10n="U">Selecting placeholders</paragraph>
+<paragraph role="paragraph" id="par_id3150212" xml-lang="en-US" 
l10n="U">$[officename] Impress <emph>AutoLayouts</emph> use placeholders for 
slide titles, text, and objects. To select a placeholder, press <item 
type="keycode">Ctrl+Enter</item>. To move to the next placeholder, press <item 
type="keycode">Ctrl+Enter</item> again.</paragraph>
+<paragraph role="note" id="par_id3166467" xml-lang="en-US" l10n="U">If you 
press <item type="keycode">Ctrl+Enter</item> after you reach the last 
placeholder in a slide, a new slide is inserted after the current slide. The 
new slide uses the same layout as the current slide.</paragraph>
 <embed href="text/sdraw/guide/keyboard.xhp#all"/>
-<paragraph role="heading" id="hd_id3157871" xml-lang="en-US" level="2" 
l10n="U" oldref="8">During a Slide Show</paragraph>
-<paragraph role="paragraph" id="par_id3150650" xml-lang="en-US" l10n="U" 
oldref="7">To start a slide show, press <item 
type="keycode">Ctrl+F2</item>.</paragraph>
-<paragraph role="heading" id="hd_id3149354" xml-lang="en-US" level="3" 
l10n="U" oldref="5">Advance to the next slide or to the next animation 
effect</paragraph>
-<paragraph role="paragraph" id="par_id3148728" xml-lang="en-US" l10n="U" 
oldref="4">
-<item type="keycode">Spacebar</item>
+<paragraph role="heading" id="hd_id3157871" xml-lang="en-US" level="2" 
l10n="U">During a Slide Show</paragraph>
+<paragraph role="paragraph" id="par_id3150650" xml-lang="en-US" l10n="U">To 
start a slide show, press <item type="keycode">Ctrl+F2</item>.</paragraph>
+<paragraph role="heading" id="hd_id3149354" xml-lang="en-US" level="3" 
l10n="U">Advance to the next slide or to the next animation effect</paragraph>
+<paragraph role="paragraph" id="par_id3148728" xml-lang="en-US" l10n="U"><item 
type="keycode">Spacebar</item></paragraph>
+<paragraph role="heading" id="hd_id3153035" xml-lang="en-US" level="3" 
l10n="U">Advance to the next slide without playing object animation 
effects</paragraph>
+<paragraph role="paragraph" id="par_id3155263" xml-lang="en-US" 
l10n="CHG"><item type="keycode"><switchinline select="sys"><caseinline 
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+PageDown</item>
 </paragraph>
-<paragraph role="heading" id="hd_id3153035" xml-lang="en-US" level="3" 
l10n="U" oldref="19">Advance to the next slide without playing object animation 
effects</paragraph>
-<paragraph role="paragraph" id="par_id3155263" xml-lang="en-US" l10n="CHG" 
oldref="20">
-<item type="keycode"><switchinline select="sys"><caseinline 
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+PageDown</item>
+<paragraph role="heading" id="hd_id3154558" xml-lang="en-US" level="3" 
l10n="U">Return to previous slide</paragraph>
+<paragraph role="paragraph" id="par_id3145590" xml-lang="en-US" 
l10n="CHG"><item type="keycode"><switchinline select="sys"><caseinline 
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+PageUp</item>
 </paragraph>
-<paragraph role="heading" id="hd_id3154558" xml-lang="en-US" level="3" 
l10n="U" oldref="3">Return to previous slide</paragraph>
-<paragraph role="paragraph" id="par_id3145590" xml-lang="en-US" l10n="CHG" 
oldref="2">
-<item type="keycode"><switchinline select="sys"><caseinline 
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+PageUp</item>
-</paragraph>
-<paragraph role="heading" id="hd_id3153003" xml-lang="en-US" level="3" 
l10n="U" oldref="12">Go to a specific slide</paragraph>
-<paragraph role="paragraph" id="par_id3154501" xml-lang="en-US" l10n="U" 
oldref="13">Type the page number of the slide, and then press <item 
type="keycode">Enter</item>.</paragraph>
-<paragraph role="heading" id="hd_id3150337" xml-lang="en-US" level="2" 
l10n="U" oldref="14">Slide Sorter</paragraph>
-<paragraph role="paragraph" id="par_id3153732" xml-lang="en-US" l10n="U" 
oldref="21">When you first switch to Slide Sorter, press <item 
type="keycode">Enter</item> to change the keyboard focus to the workspace. 
Otherwise, press <item type="keycode">F6</item> to navigate to the workspace, 
and then press <item type="keycode">Enter</item>.</paragraph>
-<paragraph role="heading" id="hd_id3149882" xml-lang="en-US" level="3" 
l10n="U" oldref="22">Selecting and deselecting slides</paragraph>
-<paragraph role="paragraph" id="par_id3155930" xml-lang="en-US" l10n="U" 
oldref="15">Use the arrow keys to navigate to the slide that you want to 
select, and then press the <item type="keycode">Spacebar</item>. To add to the 
selection, use the arrow keys to navigate to the slide(s) that you want to add, 
and press <item type="keycode">Spacebar</item> again. To deselect a slide, 
navigate to the slide, and then press <item 
type="keycode">Spacebar</item>.</paragraph>
-<paragraph role="heading" id="hd_id3145248" xml-lang="en-US" level="3" 
l10n="U" oldref="23">Copying a slide:</paragraph>
+<paragraph role="heading" id="hd_id3153003" xml-lang="en-US" level="3" 
l10n="U">Go to a specific slide</paragraph>
+<paragraph role="paragraph" id="par_id3154501" xml-lang="en-US" l10n="U">Type 
the page number of the slide, and then press <item 
type="keycode">Enter</item>.</paragraph>
+<paragraph role="heading" id="hd_id3150337" xml-lang="en-US" level="2" 
l10n="U">Slide Sorter</paragraph>
+<paragraph role="paragraph" id="par_id3153732" xml-lang="en-US" l10n="U">When 
you first switch to Slide Sorter, press <item type="keycode">Enter</item> to 
change the keyboard focus to the workspace. Otherwise, press <item 
type="keycode">F6</item> to navigate to the workspace, and then press <item 
type="keycode">Enter</item>.</paragraph>
+<paragraph role="heading" id="hd_id3149882" xml-lang="en-US" level="3" 
l10n="U">Selecting and deselecting slides</paragraph>
+<paragraph role="paragraph" id="par_id3155930" xml-lang="en-US" l10n="U">Use 
the arrow keys to navigate to the slide that you want to select, and then press 
the <item type="keycode">Spacebar</item>. To add to the selection, use the 
arrow keys to navigate to the slide(s) that you want to add, and press <item 
type="keycode">Spacebar</item> again. To deselect a slide, navigate to the 
slide, and then press <item type="keycode">Spacebar</item>.</paragraph>
+<paragraph role="heading" id="hd_id3145248" xml-lang="en-US" level="3" 
l10n="U">Copying a slide:</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3156060" xml-lang="en-US" l10n="U" 
oldref="16">Use the arrow keys to navigate to the slide that you want to copy, 
and then press <item type="keycode">Ctrl+C</item>.</paragraph>
+<paragraph role="listitem" id="par_id3156060" xml-lang="en-US" l10n="U">Use 
the arrow keys to navigate to the slide that you want to copy, and then press 
<item type="keycode">Ctrl+C</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148769" xml-lang="en-US" l10n="U" 
oldref="24">Move to the slide where you want to paste the copied slide, and 
then press <item type="keycode">Ctrl+V</item>.</paragraph>
+<paragraph role="listitem" id="par_id3148769" xml-lang="en-US" l10n="U">Move 
to the slide where you want to paste the copied slide, and then press <item 
type="keycode">Ctrl+V</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3148388" xml-lang="en-US" l10n="U" 
oldref="25">Select <emph>Before</emph> or <emph>After</emph> the current slide, 
and then click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3148388" xml-lang="en-US" l10n="U">Select 
<emph>Before</emph> or <emph>After</emph> the current slide, and then click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3155367" xml-lang="en-US" level="3" 
l10n="U" oldref="26">Moving a slide:</paragraph>
+<paragraph role="heading" id="hd_id3155367" xml-lang="en-US" level="3" 
l10n="U">Moving a slide:</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph role="listitem" id="par_id3155987" xml-lang="en-US" l10n="CHG" 
oldref="27">Use the arrow keys to navigate to the slide that you want to move, 
and then press <item type="keycode">Ctrl+X</item>.</paragraph>
+<paragraph role="listitem" id="par_id3155987" xml-lang="en-US" l10n="CHG">Use 
the arrow keys to navigate to the slide that you want to move, and then press 
<item type="keycode">Ctrl+X</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3147171" xml-lang="en-US" l10n="CHG" 
oldref="28">Navigate to the slide where you want to move the slide, and then 
press <item type="keycode">Ctrl+V</item>.</paragraph>
+<paragraph role="listitem" id="par_id3147171" xml-lang="en-US" 
l10n="CHG">Navigate to the slide where you want to move the slide, and then 
press <item type="keycode">Ctrl+V</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph role="listitem" id="par_id3083282" xml-lang="en-US" l10n="U" 
oldref="29">Select <emph>Before</emph> or <emph>After</emph> the current slide, 
and then click <emph>OK</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3083282" xml-lang="en-US" l10n="U">Select 
<emph>Before</emph> or <emph>After</emph> the current slide, and then click 
<emph>OK</emph>.</paragraph>
 </listitem>
 </list>
 <section id="relatedtopics">
diff --git a/main/helpcontent2/source/text/swriter/01/05030800.xhp 
b/main/helpcontent2/source/text/swriter/01/05030800.xhp
index 6536e5c4d7..a00f898e13 100644
--- a/main/helpcontent2/source/text/swriter/01/05030800.xhp
+++ b/main/helpcontent2/source/text/swriter/01/05030800.xhp
@@ -31,55 +31,47 @@
 <body>
 <section id="numerierung">
 <bookmark xml-lang="en-US" branch="hid/SW_HID_NUMPARA" id="bm_id3145415" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3151173" role="heading" level="1" 
l10n="CHG"
-oldref="1"><link href="text/swriter/01/05030800.xhp" name="Numbering">Outline 
&amp; Numbering</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154100" role="paragraph" l10n="U" 
oldref="2"><ahelp hid="HID_NUMPARA">Adds or removes outline level, numbering, 
or bullets from the paragraph. You can also select the style of numbering to 
use, and reset the numbering in a numbered list.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3151173" role="heading" level="1" 
l10n="CHG"><link href="text/swriter/01/05030800.xhp" name="Numbering">Outline 
&amp; Numbering</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154100" role="paragraph" 
l10n="U"><ahelp hid="HID_NUMPARA">Adds or removes outline level, numbering, or 
bullets from the paragraph. You can also select the style of numbering to use, 
and reset the numbering in a numbered list.</ahelp></paragraph>
 </section>
 <section id="howtoget">
 <embed href="text/swriter/00/00000405.xhp#abnumerierung"/>
 </section>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3153536" role="listitem" l10n="CHG" 
oldref="14">To change the numbering options for paragraphs that use the same 
paragraph style, choose <emph>Format - Styles and Formatting</emph>, and then 
click the <emph>Paragraph Styles</emph> icon. Right-click the style in the 
list, choose <emph>Modify</emph>, and then click the <emph>Outline &amp; 
Numbering</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153536" role="listitem" l10n="CHG">To 
change the numbering options for paragraphs that use the same paragraph style, 
choose <emph>Format - Styles and Formatting</emph>, and then click the 
<emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose 
<emph>Modify</emph>, and then click the <emph>Outline &amp; Numbering</emph> 
tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154470" role="listitem" l10n="CHG" 
oldref="26">To change the numbering options for selected paragraphs, choose 
<emph>Format -</emph><link href="text/shared/01/05030000.xhp" 
name="Paragraph"><emph>Paragraph</emph></link>, and then click the 
<emph>Outline &amp; Numbering</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154470" role="listitem" l10n="CHG">To 
change the numbering options for selected paragraphs, choose <emph>Format 
-</emph><link href="text/shared/01/05030000.xhp" 
name="Paragraph"><emph>Paragraph</emph></link>, and then click the 
<emph>Outline &amp; Numbering</emph> tab.</paragraph>
 </listitem>
 </list>
 <bookmark xml-lang="en-US" branch="hid/SW_LISTBOX_TP_NUMPARA_LB_OUTLINE_LEVEL" 
id="bm_id1209200804144764" localize="false"/>
 <paragraph xml-lang="en-US" id="hd_id1209200804371034" role="heading" 
level="2" l10n="NEW">Outline level</paragraph>
 <paragraph xml-lang="en-US" id="par_id1209200804371097" role="paragraph" 
l10n="NEW"><ahelp hid=".">Assigns an outline level from 1 to 10 to the selected 
paragraphs or Paragraph Style.</ahelp> Select <emph>Body text</emph> to reset 
the outline level.</paragraph><comment>removed two old paras</comment>
-<paragraph xml-lang="en-US" id="hd_id3143283" role="heading" level="2" 
l10n="U" oldref="5">Numbering</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3143283" role="heading" level="2" 
l10n="U">Numbering</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_NUMPARA:LB_NUMBER_STYLE" 
id="bm_id3154200" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3154188" role="heading" level="2" 
l10n="CHG"
-oldref="3">Numbering Style</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155178" role="paragraph" l10n="U" 
oldref="4"><ahelp hid="SW:LISTBOX:TP_NUMPARA:LB_NUMBER_STYLE">Select the <link 
href="text/swriter/01/05130004.xhp" name="Numbering Style">Numbering 
Style</link> that you want to apply to the paragraph.</ahelp> These styles are 
also listed in the <link href="text/swriter/01/05140000.xhp" name="Styles and 
Formatting">Styles and Formatting</link> window if you click the 
<emph>Numbering Style</emph> icon.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149106" role="paragraph" l10n="U" 
oldref="7">This section only appears when you edit the properties of the 
current paragraph by choosing <emph>Format - Paragraph</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3154188" role="heading" level="2" 
l10n="CHG">Numbering Style</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155178" role="paragraph" 
l10n="U"><ahelp hid="SW:LISTBOX:TP_NUMPARA:LB_NUMBER_STYLE">Select the <link 
href="text/swriter/01/05130004.xhp" name="Numbering Style">Numbering 
Style</link> that you want to apply to the paragraph.</ahelp> These styles are 
also listed in the <link href="text/swriter/01/05140000.xhp" name="Styles and 
Formatting">Styles and Formatting</link> window if you click the 
<emph>Numbering Style</emph> icon.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149106" role="paragraph" l10n="U">This 
section only appears when you edit the properties of the current paragraph by 
choosing <emph>Format - Paragraph</emph>.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/sw:TriStateBox:TP_NUMPARA:CB_NEW_START" 
id="bm_id3151262" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3151250" role="heading" level="2" 
l10n="U" oldref="8">Restart at this paragraph</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154831" role="paragraph" l10n="U" 
oldref="9"><ahelp hid="SW:TRISTATEBOX:TP_NUMPARA:CB_NEW_START">Restarts the 
numbering at the current paragraph.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3151250" role="heading" level="2" 
l10n="U">Restart at this paragraph</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154831" role="paragraph" 
l10n="U"><ahelp hid="SW:TRISTATEBOX:TP_NUMPARA:CB_NEW_START">Restarts the 
numbering at the current paragraph.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:TriStateBox:TP_NUMPARA:CB_NUMBER_NEW_START" id="bm_id3148973" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147096" role="heading" level="2" l10n="U"
-oldref="24">Start with</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148979" role="paragraph" l10n="U" 
oldref="25"><ahelp hid="SW_TRISTATEBOX_TP_NUMPARA_CB_NUMBER_NEW_START">Select 
this check box, and then enter the number that you want to assign to the 
paragraph.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147096" role="heading" level="2" 
l10n="U">Start with</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148979" role="paragraph" 
l10n="U"><ahelp hid="SW_TRISTATEBOX_TP_NUMPARA_CB_NUMBER_NEW_START">Select this 
check box, and then enter the number that you want to assign to the 
paragraph.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:NumericField:TP_NUMPARA:NF_NEW_START" id="bm_id3149043" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147226" role="heading" level="2" l10n="U"
-oldref="10">"Start with" spin button</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153632" role="paragraph" l10n="U" 
oldref="11"><ahelp hid="SW:NUMERICFIELD:TP_NUMPARA:NF_NEW_START">Enter the 
number that you want to assign to the paragraph.</ahelp> The following 
paragraphs are numbered consecutively from the number that you enter 
here.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3147581" role="heading" level="2" l10n="U"
-oldref="15">Line numbering</paragraph>
-<paragraph xml-lang="en-US" id="par_id3152771" role="paragraph" l10n="U" 
oldref="16">Specify the <link href="text/swriter/01/06180000.xhp" name="Line 
numbering">Line numbering</link> options. To add line numbers to your document, 
choose <emph>Tools - Line Numbering</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147226" role="heading" level="2" 
l10n="U">"Start with" spin button</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153632" role="paragraph" 
l10n="U"><ahelp hid="SW:NUMERICFIELD:TP_NUMPARA:NF_NEW_START">Enter the number 
that you want to assign to the paragraph.</ahelp> The following paragraphs are 
numbered consecutively from the number that you enter here.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147581" role="heading" level="2" 
l10n="U">Line numbering</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152771" role="paragraph" 
l10n="U">Specify the <link href="text/swriter/01/06180000.xhp" name="Line 
numbering">Line numbering</link> options. To add line numbers to your document, 
choose <emph>Tools - Line Numbering</emph>.</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:TriStateBox:TP_NUMPARA:CB_COUNT_PARA" id="bm_id3153357" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153345" role="heading" level="2" l10n="U"
-oldref="17">Include this paragraph in line numbering</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156267" role="paragraph" l10n="U" 
oldref="18"><ahelp hid="SW:TRISTATEBOX:TP_NUMPARA:CB_COUNT_PARA">Includes the 
current paragraph in the line numbering.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153345" role="heading" level="2" 
l10n="U">Include this paragraph in line numbering</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156267" role="paragraph" 
l10n="U"><ahelp hid="SW:TRISTATEBOX:TP_NUMPARA:CB_COUNT_PARA">Includes the 
current paragraph in the line numbering.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:TriStateBox:TP_NUMPARA:CB_RESTART_PARACOUNT" id="bm_id3151038" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3151026" role="heading" level="2" l10n="U"
-oldref="19">Restart at this paragraph</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149168" role="paragraph" l10n="U" 
oldref="20"><ahelp 
hid="SW:TRISTATEBOX:TP_NUMPARA:CB_RESTART_PARACOUNT">Restarts the line 
numbering at the current paragraph, or at the number that you 
enter.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3151026" role="heading" level="2" 
l10n="U">Restart at this paragraph</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149168" role="paragraph" 
l10n="U"><ahelp hid="SW:TRISTATEBOX:TP_NUMPARA:CB_RESTART_PARACOUNT">Restarts 
the line numbering at the current paragraph, or at the number that you 
enter.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/sw:NumericField:TP_NUMPARA:NF_RESTART_PARA" id="bm_id3155906" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145775" role="heading" level="2" l10n="U"
-oldref="21">Start with</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149355" role="paragraph" l10n="U" 
oldref="22"><ahelp hid="SW:NUMERICFIELD:TP_NUMPARA:NF_RESTART_PARA">Enter the 
number at which to restart the line numbering</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145775" role="heading" level="2" 
l10n="U">Start with</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149355" role="paragraph" 
l10n="U"><ahelp hid="SW:NUMERICFIELD:TP_NUMPARA:NF_RESTART_PARA">Enter the 
number at which to restart the line numbering</ahelp></paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/text_nav_keyb.xhp 
b/main/helpcontent2/source/text/swriter/guide/text_nav_keyb.xhp
index 782cd07993..f7596353e5 100644
--- a/main/helpcontent2/source/text/swriter/guide/text_nav_keyb.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/text_nav_keyb.xhp
@@ -35,10 +35,9 @@
 <bookmark_value>selecting;text, with keyboard</bookmark_value>
 <bookmark_value>keyboard; navigating and selecting in text</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3159260" role="heading" level="1" l10n="U"
-oldref="33"><variable id="text_nav_keyb"><link 
href="text/swriter/guide/text_nav_keyb.xhp" name="Navigating and Selecting With 
the Keyboard">Navigating and Selecting With the Keyboard</link>
+<paragraph xml-lang="en-US" id="hd_id3159260" role="heading" level="1" 
l10n="U"><variable id="text_nav_keyb"><link 
href="text/swriter/guide/text_nav_keyb.xhp" name="Navigating and Selecting With 
the Keyboard">Navigating and Selecting With the Keyboard</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155179" role="paragraph" l10n="U" 
oldref="13">You can navigate through a document and make selections with the 
keyboard.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155179" role="paragraph" l10n="U">You 
can navigate through a document and make selections with the 
keyboard.</paragraph>
 <list type="unordered">
 <listitem>
 <paragraph xml-lang="en-US" id="par_id1031200810571916" role="listitem" 
l10n="NEW">To move the cursor, press the key or key combination given in the 
following table.</paragraph>
@@ -50,106 +49,106 @@ oldref="33"><variable id="text_nav_keyb"><link 
href="text/swriter/guide/text_nav
 <table id="tbl_id3149487">
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3155918" role="tablehead" l10n="U" 
oldref="23">Key</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155918" role="tablehead" 
l10n="U">Key</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3155870" role="tablehead" l10n="U" 
oldref="24">Function</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155870" role="tablehead" 
l10n="U">Function</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3156220" role="tablehead" l10n="U" 
oldref="25">
+<paragraph xml-lang="en-US" id="par_id3156220" role="tablehead" l10n="U">
 <emph>+</emph><switchinline select="sys"><caseinline 
select="MAC"><emph>Command key</emph>
 </caseinline><defaultinline><emph>Ctrl 
key</emph></defaultinline></switchinline></paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3156113" role="tablecontent" l10n="U" 
oldref="26">Right, left arrow keys</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156113" role="tablecontent" 
l10n="U">Right, left arrow keys</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3150105" role="tablecontent" l10n="U" 
oldref="27">Moves the cursor one character to the left or to the 
right.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150105" role="tablecontent" 
l10n="U">Moves the cursor one character to the left or to the right.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153418" role="tablecontent" l10n="U" 
oldref="28">Moves the cursor one word to the left or to the right.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153418" role="tablecontent" 
l10n="U">Moves the cursor one word to the left or to the right.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149629" role="tablecontent" l10n="U" 
oldref="29">Up, down arrow keys</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149629" role="tablecontent" 
l10n="U">Up, down arrow keys</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149949" role="tablecontent" l10n="U" 
oldref="30">Moves the cursor up or down one line.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149949" role="tablecontent" 
l10n="U">Moves the cursor up or down one line.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149972" role="tablecontent" l10n="U" 
oldref="31">(<switchinline select="sys"><caseinline select="MAC">Command+Option
+<paragraph xml-lang="en-US" id="par_id3149972" role="tablecontent" 
l10n="U">(<switchinline select="sys"><caseinline select="MAC">Command+Option
 </caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>) Moves the 
current paragraph up or down.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149624" role="tablecontent" l10n="U" 
oldref="32">Home</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149624" role="tablecontent" 
l10n="U">Home</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149871" role="tablecontent" l10n="U" 
oldref="56">Moves the cursor to the beginning of the current line.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149871" role="tablecontent" 
l10n="U">Moves the cursor to the beginning of the current line.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3145108" role="tablecontent" l10n="U" 
oldref="34">Moves the cursor to the beginning of the document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145108" role="tablecontent" 
l10n="U">Moves the cursor to the beginning of the document.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149586" role="tablecontent" l10n="U" 
oldref="35">Home</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156237" role="tablecontent" l10n="U" 
oldref="36">In a table</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149586" role="tablecontent" 
l10n="U">Home</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156237" role="tablecontent" l10n="U">In 
a table</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3156260" role="tablecontent" l10n="U" 
oldref="37">Moves the cursor to the beginning of the contents in the current 
cell.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156260" role="tablecontent" 
l10n="U">Moves the cursor to the beginning of the contents in the current 
cell.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3145409" role="tablecontent" l10n="U" 
oldref="38">Moves the cursor to the beginning of the contents of the current 
cell. Press again to move the cursor to the first cell in the table. Press 
again to move the cursor to the beginning of the document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145409" role="tablecontent" 
l10n="U">Moves the cursor to the beginning of the contents of the current cell. 
Press again to move the cursor to the first cell in the table. Press again to 
move the cursor to the beginning of the document.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3154410" role="tablecontent" l10n="U" 
oldref="41">End</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154410" role="tablecontent" 
l10n="U">End</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153372" role="tablecontent" l10n="U" 
oldref="42">Moves the cursor to the end of the current line.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153372" role="tablecontent" 
l10n="U">Moves the cursor to the end of the current line.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3154235" role="tablecontent" l10n="U" 
oldref="43">Moves the cursor to the end of the document</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154235" role="tablecontent" 
l10n="U">Moves the cursor to the end of the document</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3154262" role="tablecontent" l10n="U" 
oldref="44">End</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154850" role="tablecontent" l10n="U" 
oldref="45">In a table</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154262" role="tablecontent" 
l10n="U">End</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154850" role="tablecontent" l10n="U">In 
a table</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3154873" role="tablecontent" l10n="U" 
oldref="46">Moves to the end of the contents in the current cell.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154873" role="tablecontent" 
l10n="U">Moves to the end of the contents in the current cell.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3155894" role="tablecontent" l10n="U" 
oldref="47">Moves the cursor to the end of the contents of the current cell. 
Press again to move the cursor to the last cell in the table. Press again to 
move the cursor to the end of the document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155894" role="tablecontent" 
l10n="U">Moves the cursor to the end of the contents of the current cell. Press 
again to move the cursor to the last cell in the table. Press again to move the 
cursor to the end of the document.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3155944" role="tablecontent" l10n="U" 
oldref="50">PgUp</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155944" role="tablecontent" 
l10n="U">PgUp</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3148678" role="tablecontent" l10n="U" 
oldref="54">Scrolls up one page.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148678" role="tablecontent" 
l10n="U">Scrolls up one page.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3148701" role="tablecontent" l10n="U" 
oldref="52">Moves the cursor to the header.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148701" role="tablecontent" 
l10n="U">Moves the cursor to the header.</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149998" role="tablecontent" l10n="U" 
oldref="53">PgDn</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149998" role="tablecontent" 
l10n="U">PgDn</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153018" role="tablecontent" l10n="U" 
oldref="51">Scroll down one page.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153018" role="tablecontent" 
l10n="U">Scroll down one page.</paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3148949" role="tablecontent" l10n="U" 
oldref="55">Moves the cursor to the footer.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148949" role="tablecontent" 
l10n="U">Moves the cursor to the footer.</paragraph>
 </tablecell>
 </tablerow>
 </table>

Reply via email to