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 1a922a2853 Remove 'oldref' entries (work in progress)
1a922a2853 is described below
commit 1a922a2853313aa519308538da98ce1f6a7d377b
Author: mseidel <[email protected]>
AuthorDate: Sat Jan 11 13:06:50 2025 +0100
Remove 'oldref' entries (work in progress)
---
.../source/text/sbasic/shared/03080801.xhp | 53 +++++++++++-----------
.../source/text/scalc/guide/address_auto.xhp | 11 ++---
.../source/text/shared/01/password_dlg.xhp | 20 ++++----
.../source/text/shared/02/01170300.xhp | 26 +++++------
.../source/text/shared/05/00000150.xhp | 24 +++++-----
.../source/text/shared/autopi/01090300.xhp | 32 ++++++-------
.../source/text/shared/guide/data_report.xhp | 20 ++++----
.../source/text/shared/guide/dragdrop_graphic.xhp | 18 ++++----
.../source/text/swriter/guide/auto_numbering.xhp | 25 +++++-----
.../text/swriter/guide/spellcheck_dialog.xhp | 23 +++++-----
10 files changed, 121 insertions(+), 131 deletions(-)
diff --git a/main/helpcontent2/source/text/sbasic/shared/03080801.xhp
b/main/helpcontent2/source/text/sbasic/shared/03080801.xhp
index ae333ffcfd..4fae8b46b6 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03080801.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03080801.xhp
@@ -33,35 +33,34 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3150616">
<bookmark_value>Hex function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03080801.xhp" name="Hex
Function [Runtime]">Hex Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3145136" xml-lang="en-US" l10n="U"
oldref="2">Returns a string that represents the hexadecimal value of a
number.</paragraph>
+<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03080801.xhp" name="Hex Function
[Runtime]">Hex Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3145136" xml-lang="en-US"
l10n="U">Returns a string that represents the hexadecimal value of a
number.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3147573" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U"
oldref="4">Hex (Number)</paragraph>
-<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2"
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3159414" xml-lang="en-US" l10n="U"
oldref="6">String</paragraph>
-<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2"
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US" l10n="U"
oldref="8">
-<emph>Number:</emph> Any numeric expression that you want to convert to a
hexadecimal number.</paragraph>
+<paragraph role="heading" id="hd_id3147573" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U">Hex
(Number)</paragraph>
+<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2"
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3159414" xml-lang="en-US"
l10n="U">String</paragraph>
+<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US"
l10n="U"><emph>Number:</emph> Any numeric expression that you want to convert
to a hexadecimal number.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
<embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3154365" xml-lang="en-US" level="2"
l10n="U" oldref="9">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3145420" xml-lang="en-US" l10n="U"
oldref="29">Sub ExampleHex</paragraph>
-<paragraph role="paragraph" id="par_id3156214" xml-lang="en-US" l10n="U"
oldref="30">REM uses BasicFormulas in $[officename] Calc</paragraph>
-<paragraph role="paragraph" id="par_id3153970" xml-lang="en-US" l10n="U"
oldref="31">Dim a2, b2, c2 as String</paragraph>
-<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U"
oldref="32">a2 = "&H3E8"</paragraph>
-<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U"
oldref="33">b2 = Hex2Int(a2)</paragraph>
-<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U"
oldref="34">MsgBox b2</paragraph>
-<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U"
oldref="35">c2 = Int2Hex(b2)</paragraph>
-<paragraph role="paragraph" id="par_id3147427" xml-lang="en-US" l10n="U"
oldref="36">MsgBox c2</paragraph>
-<paragraph role="paragraph" id="par_id3147435" xml-lang="en-US" l10n="U"
oldref="37">End Sub</paragraph>
-<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U"
oldref="19">Function Hex2Int( sHex As String ) As Long</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U"
oldref="20">REM Returns a Long-Integer from a hexadecimal value.</paragraph>
-<paragraph role="paragraph" id="par_id3148616" xml-lang="en-US" l10n="U"
oldref="21">Hex2Int = clng( sHex )</paragraph>
-<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U"
oldref="22">End Function</paragraph>
-<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U"
oldref="24">Function Int2Hex( iLong As Long) As String</paragraph>
-<paragraph role="paragraph" id="par_id3147215" xml-lang="en-US" l10n="U"
oldref="25">REM Calculates a hexadecimal value in Integer.</paragraph>
-<paragraph role="paragraph" id="par_id3148575" xml-lang="en-US" l10n="U"
oldref="26">Int2Hex = "&H" & Hex( iLong )</paragraph>
-<paragraph role="paragraph" id="par_id3151073" xml-lang="en-US" l10n="U"
oldref="27">End Function</paragraph>
+<paragraph role="heading" id="hd_id3154365" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3145420" xml-lang="en-US" l10n="U">Sub
ExampleHex</paragraph>
+<paragraph role="paragraph" id="par_id3156214" xml-lang="en-US" l10n="U">REM
uses BasicFormulas in $[officename] Calc</paragraph>
+<paragraph role="paragraph" id="par_id3153970" xml-lang="en-US" l10n="U">Dim
a2, b2, c2 as String</paragraph>
+<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U">a2 =
"&H3E8"</paragraph>
+<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U">b2 =
Hex2Int(a2)</paragraph>
+<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US"
l10n="U">MsgBox b2</paragraph>
+<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U">c2 =
Int2Hex(b2)</paragraph>
+<paragraph role="paragraph" id="par_id3147427" xml-lang="en-US"
l10n="U">MsgBox c2</paragraph>
+<paragraph role="paragraph" id="par_id3147435" xml-lang="en-US" l10n="U">End
Sub</paragraph>
+<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US"
l10n="U">Function Hex2Int( sHex As String ) As Long</paragraph>
+<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U">REM
Returns a Long-Integer from a hexadecimal value.</paragraph>
+<paragraph role="paragraph" id="par_id3148616" xml-lang="en-US"
l10n="U">Hex2Int = clng( sHex )</paragraph>
+<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U">End
Function</paragraph>
+<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US"
l10n="U">Function Int2Hex( iLong As Long) As String</paragraph>
+<paragraph role="paragraph" id="par_id3147215" xml-lang="en-US" l10n="U">REM
Calculates a hexadecimal value in Integer.</paragraph>
+<paragraph role="paragraph" id="par_id3148575" xml-lang="en-US"
l10n="U">Int2Hex = "&H" & Hex( iLong )</paragraph>
+<paragraph role="paragraph" id="par_id3151073" xml-lang="en-US" l10n="U">End
Function</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/guide/address_auto.xhp
b/main/helpcontent2/source/text/scalc/guide/address_auto.xhp
index 447f8bd304..f27d9786da 100644
--- a/main/helpcontent2/source/text/scalc/guide/address_auto.xhp
+++ b/main/helpcontent2/source/text/scalc/guide/address_auto.xhp
@@ -42,17 +42,16 @@
<bookmark_value>rows; finding labels automatically</bookmark_value>
<bookmark_value>recognizing; column and row labels</bookmark_value>
</bookmark><comment>mw changes "names;..." entry to "text in
cells;..."</comment><comment>mw inserted three index entries from
text/shared/optionen/01060500.xhp. Changed "finding;..." entry to
"recognizing;..." entry. Adding (Calc) is no longer necessary in this
file.</comment>
-<paragraph xml-lang="en-US" id="hd_id3148797" role="heading" level="1" l10n="U"
-oldref="20"><variable id="address_auto"><link
href="text/scalc/guide/address_auto.xhp" name="Recognizing Names as
Addressing">Recognizing Names as Addressing</link>
+<paragraph xml-lang="en-US" id="hd_id3148797" role="heading" level="1"
l10n="U"><variable id="address_auto"><link
href="text/scalc/guide/address_auto.xhp" name="Recognizing Names as
Addressing">Recognizing Names as Addressing</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3152597" role="paragraph" l10n="CHG"
oldref="21">You can use cells with text to refer to the rows or to the columns
that contain the cells.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152597" role="paragraph" l10n="CHG">You
can use cells with text to refer to the rows or to the columns that contain the
cells.</paragraph>
<comment>removed table as a workaround for issue 108715</comment>
<paragraph xml-lang="en-US" id="par_id3156283" role="paragraph" l10n="E">
<image id="img_id3154942" src="res/helpimg/names_as_addressing.png"
width="2.1291in" height="0.8709in" localize="true"><alt xml-lang="en-US"
id="alt_id3154942">Example spreadsheet</alt>
</image></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154512" role="paragraph" l10n="CHG"
oldref="22">In the example spreadsheet, you can use the string <item
type="literal">'Column One'</item> in a formula to refer to the cell range
<item type="literal">B3</item> to <item type="literal">B5</item>, or <item
type="literal">'Column Two'</item> for the cell range <item
type="literal">C2</item> to <item type="literal">C5</item>. You can also use
<item type="literal">'Row One'</item> for the cell range <ite [...]
-<paragraph xml-lang="en-US" id="par_id3155443" role="paragraph" l10n="CHG"
oldref="24">This function is active by default. To turn this function off,
choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>
and clear the <emph>Automatically find column and row labels</emph> check
box.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149210" role="tip" l10n="CHG"
oldref="37">If you want a name to be automatically recognized by Calc, the name
must start with a letter and be composed of alphanumeric characters. If you
enter the name in the formula yourself, enclose the name in single quotation
marks ('). If a single quotation mark appears in a name, you must enter a
backslash in front of the quotation mark, for example, <item
type="literal">'Harry\'s Bar'.</item>
+<paragraph xml-lang="en-US" id="par_id3154512" role="paragraph" l10n="CHG">In
the example spreadsheet, you can use the string <item type="literal">'Column
One'</item> in a formula to refer to the cell range <item
type="literal">B3</item> to <item type="literal">B5</item>, or <item
type="literal">'Column Two'</item> for the cell range <item
type="literal">C2</item> to <item type="literal">C5</item>. You can also use
<item type="literal">'Row One'</item> for the cell range <item type="lite [...]
+<paragraph xml-lang="en-US" id="par_id3155443" role="paragraph"
l10n="CHG">This function is active by default. To turn this function off,
choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>
and clear the <emph>Automatically find column and row labels</emph> check
box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149210" role="tip" l10n="CHG">If you
want a name to be automatically recognized by Calc, the name must start with a
letter and be composed of alphanumeric characters. If you enter the name in the
formula yourself, enclose the name in single quotation marks ('). If a single
quotation mark appears in a name, you must enter a backslash in front of the
quotation mark, for example, <item type="literal">'Harry\'s Bar'.</item>
</paragraph>
<section id="relatedtopics"><comment>mw changed reference to deleted Calc
guide address_byname.xhp to refer to Calc guide
value_with_name.xhp</comment><comment>UFI: changed embedvar links to embed
links</comment><embed
href="text/scalc/guide/value_with_name.xhp#value_with_name"/>
<embed href="text/scalc/01/04070400.xhp#define_label_range"/>
diff --git a/main/helpcontent2/source/text/shared/01/password_dlg.xhp
b/main/helpcontent2/source/text/shared/01/password_dlg.xhp
index eec481b544..f9f83fc881 100644
--- a/main/helpcontent2/source/text/shared/01/password_dlg.xhp
+++ b/main/helpcontent2/source/text/shared/01/password_dlg.xhp
@@ -30,9 +30,8 @@
</meta>
<body>
<section id="passwort">
-<paragraph xml-lang="en-US" id="hd_id3146902" role="heading" level="1" l10n="U"
-oldref="63"><link href="text/shared/01/password_dlg.xhp"
name="Password">Password</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154350" role="paragraph" l10n="U"
oldref="64">Assigns a password to prevent users from making unauthorized
changes.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3146902" role="heading" level="1"
l10n="U"><link href="text/shared/01/password_dlg.xhp"
name="Password">Password</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154350" role="paragraph"
l10n="U">Assigns a password to prevent users from making unauthorized
changes.</paragraph>
<embed href="text/shared/01/password_main.xhp#password_rules"/>
<paragraph xml-lang="en-US" id="par_id31222" role="paragraph" l10n="NEW">The
open password must be entered to open the file.</paragraph>
<paragraph xml-lang="en-US" id="par_id313339" role="paragraph" l10n="NEW">The
permission password must be entered to edit the document.</paragraph>
@@ -41,19 +40,16 @@ oldref="63"><link href="text/shared/01/password_dlg.xhp"
name="Password">Passwor
<bookmark xml-lang="en-US" branch="hid/SC_HID_PASSWD_TABLE" id="bm_id3154044"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD"
id="bm_id3154099" localize="false"/>
<bookmark xml-lang="en-US"
branch="hid/uui:Edit:DLG_UUI_PASSWORD_CRT:ED_PASSWORD_CRT"
id="bm_id0928200904183274" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3146857" role="heading" level="2" l10n="U"
-oldref="65">Password</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150502" role="paragraph" l10n="CHG"
oldref="62"><ahelp hid="HID_PASSWD_TABLE">Type a password. A password is case
sensitive.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3146857" role="heading" level="2"
l10n="U">Password</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150502" role="paragraph"
l10n="CHG"><ahelp hid="HID_PASSWD_TABLE">Type a password. A password is case
sensitive.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM"
id="bm_id3149495" localize="false"/>
<bookmark xml-lang="en-US" branch="hid/sfx.Edit.2316.28" id="bm_id3155524"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/SC_HID_PASSWD_DOC" id="bm_id3154863"
localize="false"/>
<bookmark xml-lang="en-US"
branch="hid/uui:Edit:DLG_UUI_PASSWORD_CRT:ED_PASSWORD_REPEAT"
id="bm_id0928200904190676" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153029" role="heading" level="2" l10n="U"
-oldref="66">Confirm</paragraph>
-<paragraph xml-lang="en-US" id="par_id3151100" role="paragraph" l10n="U"
oldref="67"><ahelp hid=".">Re-enter the password.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3155351" role="heading" level="2" l10n="U"
-oldref="68">Undoing password protection</paragraph>
-<paragraph xml-lang="en-US" id="par_id3146109" role="paragraph" l10n="CHG"
oldref="69">To remove a password, open the document, then save without
password.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153029" role="heading" level="2"
l10n="U">Confirm</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151100" role="paragraph"
l10n="U"><ahelp hid=".">Re-enter the password.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155351" role="heading" level="2"
l10n="U">Undoing password protection</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146109" role="paragraph" l10n="CHG">To
remove a password, open the document, then save without password.</paragraph>
<bookmark xml-lang="en-US" branch="hid/HID_DLG_PASSWORD_TO_OPEN_MODIFY_MORE"
id="bm_id09233676" localize="false"/>
<paragraph xml-lang="en-US" id="par_id31323250502" role="paragraph"
l10n="NEW"><ahelp hid="." visibility="hidden">Click to show or hide the file
sharing password options.</ahelp></paragraph>
</section>
diff --git a/main/helpcontent2/source/text/shared/02/01170300.xhp
b/main/helpcontent2/source/text/shared/02/01170300.xhp
index 9ac9778323..5fb52837b7 100644
--- a/main/helpcontent2/source/text/shared/02/01170300.xhp
+++ b/main/helpcontent2/source/text/shared/02/01170300.xhp
@@ -32,30 +32,30 @@
<section id="tabordner">
<bookmark xml-lang="en-US" branch="hid/.uno:TabDialog" id="bm_id9009761"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:TabDialog" id="bm_id3154841"
localize="false"/>
-<paragraph role="heading" id="hd_id3146959" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/shared/02/01170300.xhp" name="Tab
Order">Tab Order</link></paragraph>
-<paragraph role="paragraph" id="par_id3150347" xml-lang="en-US" l10n="CHG"
oldref="2"><variable id="text"><ahelp hid=".uno:TabDialog">In the <emph>Tab
Order</emph> dialog you can modify the order in which control fields get the
focus when the user presses the tab key.</ahelp>
+<paragraph role="heading" id="hd_id3146959" xml-lang="en-US" level="1"
l10n="U"><link href="text/shared/02/01170300.xhp" name="Tab Order">Tab
Order</link></paragraph>
+<paragraph role="paragraph" id="par_id3150347" xml-lang="en-US"
l10n="CHG"><variable id="text"><ahelp hid=".uno:TabDialog">In the <emph>Tab
Order</emph> dialog you can modify the order in which control fields get the
focus when the user presses the tab key.</ahelp>
</variable><comment>the button Activation Order on Form Design toolbar opens
the Tab Order dialog</comment></paragraph>
</section>
<section id="howtoget">
<embed href="text/shared/00/00040501.xhp#tabordner"/>
</section>
-<paragraph role="paragraph" id="par_id3109850" xml-lang="en-US" l10n="U"
oldref="3">If form elements are inserted into a document, <item
type="productname">%PRODUCTNAME</item> automatically determines in which order
to move from one control to the next when using the Tab key. Every new control
added is automatically placed at the end of this series. In the <emph>Tab
Order</emph> dialog, you can adapt the order of this series to your individual
needs.</paragraph>
-<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U"
oldref="12">You can also define the index of a control through its specific
properties by entering the desired value under <link
href="text/shared/02/01170101.xhp" name="Order"><emph>Order</emph></link> in
the <emph>Properties</emph> dialog of the control.</paragraph>
-<paragraph role="paragraph" id="par_id3149760" xml-lang="en-US" l10n="CHG"
oldref="13">A radio button inside a group can only be accessed by the Tab key
when one of the radio buttons is set to "selected". If you have designed a
group of radio buttons where no button is set to "selected", then the user will
not be able to access the group or any of the radio buttons by
keyboard.</paragraph>
+<paragraph role="paragraph" id="par_id3109850" xml-lang="en-US" l10n="U">If
form elements are inserted into a document, <item
type="productname">%PRODUCTNAME</item> automatically determines in which order
to move from one control to the next when using the Tab key. Every new control
added is automatically placed at the end of this series. In the <emph>Tab
Order</emph> dialog, you can adapt the order of this series to your individual
needs.</paragraph>
+<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U">You
can also define the index of a control through its specific properties by
entering the desired value under <link href="text/shared/02/01170101.xhp"
name="Order"><emph>Order</emph></link> in the <emph>Properties</emph> dialog of
the control.</paragraph>
+<paragraph role="paragraph" id="par_id3149760" xml-lang="en-US" l10n="CHG">A
radio button inside a group can only be accessed by the Tab key when one of the
radio buttons is set to "selected". If you have designed a group of radio
buttons where no button is set to "selected", then the user will not be able to
access the group or any of the radio buttons by keyboard.</paragraph>
<bookmark xml-lang="en-US" branch="hid/HID_TABORDER_CONTROLS"
id="bm_id3153114" localize="false"/>
-<paragraph role="heading" id="hd_id3149140" xml-lang="en-US" level="2"
l10n="U" oldref="4">Controls</paragraph>
-<paragraph role="paragraph" id="par_id3150789" xml-lang="en-US" l10n="U"
oldref="5"><ahelp hid="HID_TABORDER_CONTROLS">Lists all controls in the form.
These controls can be selected with the tab key in the given order from top to
bottom.</ahelp> Select a control from the <emph>Controls</emph> list to assign
the desired position in the tab order.</paragraph>
+<paragraph role="heading" id="hd_id3149140" xml-lang="en-US" level="2"
l10n="U">Controls</paragraph>
+<paragraph role="paragraph" id="par_id3150789" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TABORDER_CONTROLS">Lists all controls in the form.
These controls can be selected with the tab key in the given order from top to
bottom.</ahelp> Select a control from the <emph>Controls</emph> list to assign
the desired position in the tab order.</paragraph>
<!-- removed HID SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_UP -->
<!-- removed HID pcr_PushButton_RID_DLG_TABORDER_PB_MOVE_UP -->
-<paragraph role="heading" id="hd_id3153750" xml-lang="en-US" level="2"
l10n="U" oldref="6">Move Up</paragraph>
-<paragraph role="paragraph" id="par_id3154751" xml-lang="en-US" l10n="U"
oldref="7"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_UP">Click
the <emph>Move Up</emph> button to shift the selected control one position
higher in the tab order.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153750" xml-lang="en-US" level="2"
l10n="U">Move Up</paragraph>
+<paragraph role="paragraph" id="par_id3154751" xml-lang="en-US"
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_UP">Click the
<emph>Move Up</emph> button to shift the selected control one position higher
in the tab order.</ahelp></paragraph>
<!-- removed HID SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_DOWN -->
<!-- removed HID pcr_PushButton_RID_DLG_TABORDER_PB_MOVE_DOWN -->
-<paragraph role="heading" id="hd_id3155339" xml-lang="en-US" level="2"
l10n="U" oldref="8">Move Down</paragraph>
-<paragraph role="paragraph" id="par_id3154823" xml-lang="en-US" l10n="U"
oldref="9"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_DOWN">Click
the <emph>Move Down</emph> button to shift the selected control one position
lower in the tab order.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155339" xml-lang="en-US" level="2"
l10n="U">Move Down</paragraph>
+<paragraph role="paragraph" id="par_id3154823" xml-lang="en-US"
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_MOVE_DOWN">Click
the <emph>Move Down</emph> button to shift the selected control one position
lower in the tab order.</ahelp></paragraph>
<!-- removed HID SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_AUTO_ORDER -->
<!-- removed HID pcr_PushButton_RID_DLG_TABORDER_PB_AUTO_ORDER -->
-<paragraph role="heading" id="hd_id3154288" xml-lang="en-US" level="2"
l10n="U" oldref="10">Automatic Sort</paragraph>
-<paragraph role="paragraph" id="par_id3153748" xml-lang="en-US" l10n="U"
oldref="11"><ahelp
hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_AUTO_ORDER">Click the
<emph>Automatic Sort</emph> button to automatically sort the controls according
to their position in the document.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154288" xml-lang="en-US" level="2"
l10n="U">Automatic Sort</paragraph>
+<paragraph role="paragraph" id="par_id3153748" xml-lang="en-US"
l10n="U"><ahelp hid="SVX_PUSHBUTTON_RID_SVXDLG_TAB_ORDER_PB_AUTO_ORDER">Click
the <emph>Automatic Sort</emph> button to automatically sort the controls
according to their position in the document.</ahelp></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/05/00000150.xhp
b/main/helpcontent2/source/text/shared/05/00000150.xhp
index e7d8e90985..5cb83a7e51 100644
--- a/main/helpcontent2/source/text/shared/05/00000150.xhp
+++ b/main/helpcontent2/source/text/shared/05/00000150.xhp
@@ -33,43 +33,43 @@
<bookmark_value>Help; bookmarks</bookmark_value>
<bookmark_value>bookmarks; Help</bookmark_value>
</bookmark>
-<paragraph role="paragraph" id="par_id3153244" l10n="E" xml-lang="en-US"
oldref="1" localize="false"/>
-<paragraph id="hd_id3154349" role="heading" level="1" oldref="2" l10n="U"
xml-lang="en-US"><variable id="doc_title"><link
href="text/shared/05/00000150.xhp" name="Managing Bookmarks">Managing
Bookmarks</link></variable></paragraph>
+<paragraph role="paragraph" id="par_id3153244" l10n="E" xml-lang="en-US"
localize="false"/>
+<paragraph id="hd_id3154349" role="heading" level="1" l10n="U"
xml-lang="en-US"><variable id="doc_title"><link
href="text/shared/05/00000150.xhp" name="Managing Bookmarks">Managing
Bookmarks</link></variable></paragraph>
<bookmark branch="hid/sfx2:Edit:DLG_HELP_ADDBOOKMARK:ED_BOOKMARK_TITLE"
xml-lang="en-US" id="bm_id3143284"/>
-<paragraph l10n="U" role="paragraph" id="par_id3154840" xml-lang="en-US"
oldref="11"><ahelp hid="SFX2_EDIT_DLG_HELP_ADDBOOKMARK_ED_BOOKMARK_TITLE"
visibility="hidden">Displays the name of the bookmarked page. You can also type
a new name for the bookmark.</ahelp></paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3154840"
xml-lang="en-US"><ahelp hid="SFX2_EDIT_DLG_HELP_ADDBOOKMARK_ED_BOOKMARK_TITLE"
visibility="hidden">Displays the name of the bookmarked page. You can also type
a new name for the bookmark.</ahelp></paragraph>
<table id="tbl_id3154228">
<tablerow>
<tablecell>
-<paragraph l10n="E" role="paragraph" id="par_id3149140" xml-lang="en-US"
oldref=""><image src="sfx2/res/favourite.png" id="img_id3149549"><alt
xml-lang="en-US" id="alt_id3149549">Icon</alt></image></paragraph>
+<paragraph l10n="E" role="paragraph" id="par_id3149140"
xml-lang="en-US"><image src="sfx2/res/favourite.png" id="img_id3149549"><alt
xml-lang="en-US" id="alt_id3149549">Icon</alt></image></paragraph>
</tablecell>
<tablecell>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3145314" l10n="U"
oldref="10">Use the <emph>Add to Bookmarks</emph> icon to set a bookmark for
the current page shown in the Help.</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3145314" l10n="U">Use
the <emph>Add to Bookmarks</emph> icon to set a bookmark for the current page
shown in the Help.</paragraph>
</tablecell>
</tablerow>
</table>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3149827" l10n="U"
oldref="3">You can find the bookmarks on the <emph>Bookmarks</emph> tab
page.</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3149827" l10n="U">You
can find the bookmarks on the <emph>Bookmarks</emph> tab page.</paragraph>
<list type="unordered">
<listitem>
<bookmark branch="hid/sfx2:ListBox:TP_HELP_BOOKMARKS:LB_BOOKMARKS"
xml-lang="en-US" id="bm_id3156410"/>
-<paragraph l10n="U" role="listitem" id="par_id3145345" xml-lang="en-US"
oldref="4"><ahelp hid="SFX2_LISTBOX_TP_HELP_BOOKMARKS_LB_BOOKMARKS"
visibility="visible">Double-clicking a bookmark or pressing the Return key
opens the assigned page in Help. A right-click opens the context
menu.</ahelp></paragraph>
+<paragraph l10n="U" role="listitem" id="par_id3145345" xml-lang="en-US"><ahelp
hid="SFX2_LISTBOX_TP_HELP_BOOKMARKS_LB_BOOKMARKS"
visibility="visible">Double-clicking a bookmark or pressing the Return key
opens the assigned page in Help. A right-click opens the context
menu.</ahelp></paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3166410" l10n="U" xml-lang="en-US"
oldref="5">Use the Del key to delete a selected bookmark.</paragraph>
+<paragraph role="listitem" id="par_id3166410" l10n="U" xml-lang="en-US">Use
the Del key to delete a selected bookmark.</paragraph>
</listitem>
</list>
-<paragraph role="paragraph" id="par_id3145382" l10n="U" xml-lang="en-US"
oldref="6">The following commands are on the context menu of a
bookmark:</paragraph>
+<paragraph role="paragraph" id="par_id3145382" l10n="U" xml-lang="en-US">The
following commands are on the context menu of a bookmark:</paragraph>
<list type="unordered">
<listitem>
<bookmark branch="hid/SFX2_HID_HELP_BOOKMARKS_OPEN" xml-lang="en-US"
id="bm_id3152909"/>
-<paragraph l10n="U" xml-lang="en-US" role="listitem" id="par_id3147573"
oldref="7"><emph>Display</emph> - <ahelp hid="HID_HELP_BOOKMARKS_OPEN"
visibility="visible">Displays the selected help subject.</ahelp></paragraph>
+<paragraph l10n="U" xml-lang="en-US" role="listitem"
id="par_id3147573"><emph>Display</emph> - <ahelp hid="HID_HELP_BOOKMARKS_OPEN"
visibility="visible">Displays the selected help subject.</ahelp></paragraph>
</listitem>
<listitem>
<bookmark branch="hid/SFX2_HID_HELP_BOOKMARKS_RENAME" xml-lang="en-US"
id="bm_id3154380"/>
-<paragraph l10n="U" xml-lang="en-US" role="listitem" id="par_id3150771"
oldref="8"><emph>Rename</emph> - <ahelp hid="HID_HELP_BOOKMARKS_RENAME"
visibility="visible">Opens a dialog for entering another name for the
bookmark.</ahelp></paragraph>
+<paragraph l10n="U" xml-lang="en-US" role="listitem"
id="par_id3150771"><emph>Rename</emph> - <ahelp hid="HID_HELP_BOOKMARKS_RENAME"
visibility="visible">Opens a dialog for entering another name for the
bookmark.</ahelp></paragraph>
</listitem>
<listitem>
<bookmark branch="hid/SFX2_HID_HELP_BOOKMARKS_DELETE" xml-lang="en-US"
id="bm_id3153665"/>
-<paragraph l10n="U" xml-lang="en-US" role="listitem" id="par_id3153087"
oldref="9"><emph>Delete</emph> - <ahelp hid="HID_HELP_BOOKMARKS_DELETE"
visibility="visible">Deletes the bookmark selected.</ahelp></paragraph>
+<paragraph l10n="U" xml-lang="en-US" role="listitem"
id="par_id3153087"><emph>Delete</emph> - <ahelp hid="HID_HELP_BOOKMARKS_DELETE"
visibility="visible">Deletes the bookmark selected.</ahelp></paragraph>
</listitem>
</list>
<section id="relatedtopics">
diff --git a/main/helpcontent2/source/text/shared/autopi/01090300.xhp
b/main/helpcontent2/source/text/shared/autopi/01090300.xhp
index 05870958b4..1b01432634 100644
--- a/main/helpcontent2/source/text/shared/autopi/01090300.xhp
+++ b/main/helpcontent2/source/text/shared/autopi/01090300.xhp
@@ -31,32 +31,32 @@
</meta>
<body>
<section id="arrangecontrols">
-<paragraph role="heading" id="hd_id3163829" xml-lang="en-US" level="1"
l10n="CHG" oldref="1"><link href="text/shared/autopi/01090300.xhp" name="Form
Wizard - Arrange Controls">Form Wizard - Arrange Controls</link></paragraph>
-<paragraph role="paragraph" id="par_id3153539" xml-lang="en-US" l10n="U"
oldref="2">On this page of the Wizard, you can select the layout of the created
form.</paragraph>
+<paragraph role="heading" id="hd_id3163829" xml-lang="en-US" level="1"
l10n="CHG"><link href="text/shared/autopi/01090300.xhp" name="Form Wizard -
Arrange Controls">Form Wizard - Arrange Controls</link></paragraph>
+<paragraph role="paragraph" id="par_id3153539" xml-lang="en-US" l10n="U">On
this page of the Wizard, you can select the layout of the created
form.</paragraph>
</section>
<section id="howtoget">
<embed href="text/shared/00/00000401.xhp#autopilotformular"/>
</section>
-<paragraph role="heading" id="hd_id3150791" xml-lang="en-US" level="2"
l10n="U" oldref="27">Label placement</paragraph>
+<paragraph role="heading" id="hd_id3150791" xml-lang="en-US" level="2"
l10n="U">Label placement</paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDALIGNLEFT"
id="bm_id3154365" localize="false"/>
-<paragraph role="heading" id="hd_id3153379" xml-lang="en-US" level="3"
l10n="U" oldref="28">Align left</paragraph>
-<paragraph role="paragraph" id="par_id3151210" xml-lang="en-US" l10n="U"
oldref="29"><ahelp hid="HID_DLGFORM_CMDALIGNLEFT">The labels are
left-aligned.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153379" xml-lang="en-US" level="3"
l10n="U">Align left</paragraph>
+<paragraph role="paragraph" id="par_id3151210" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDALIGNLEFT">The labels are
left-aligned.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDALIGNRIGHT"
id="bm_id3125865" localize="false"/>
-<paragraph role="heading" id="hd_id3149169" xml-lang="en-US" level="3"
l10n="U" oldref="30">Align right</paragraph>
-<paragraph role="paragraph" id="par_id3148672" xml-lang="en-US" l10n="U"
oldref="31"><ahelp hid="HID_DLGFORM_CMDALIGNRIGHT">The labels are
right-aligned.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153682" xml-lang="en-US" level="2"
l10n="CHG" oldref="3">Arrangement of the main form</paragraph>
+<paragraph role="heading" id="hd_id3149169" xml-lang="en-US" level="3"
l10n="U">Align right</paragraph>
+<paragraph role="paragraph" id="par_id3148672" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDALIGNRIGHT">The labels are
right-aligned.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153682" xml-lang="en-US" level="2"
l10n="CHG">Arrangement of the main form</paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDLEFTLABELED"
id="bm_id3154823" localize="false"/>
-<paragraph role="heading" id="hd_id3155892" xml-lang="en-US" level="3"
l10n="U" oldref="4">Columnar - Labels Left</paragraph>
-<paragraph role="paragraph" id="par_id3149388" xml-lang="en-US" l10n="U"
oldref="10"><ahelp hid="HID_DLGFORM_CMDLEFTLABELED">Aligns the database fields
column-wise with the labels to the left of the fields.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155892" xml-lang="en-US" level="3"
l10n="U">Columnar - Labels Left</paragraph>
+<paragraph role="paragraph" id="par_id3149388" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDLEFTLABELED">Aligns the database fields
column-wise with the labels to the left of the fields.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDTOPLABELED"
id="bm_id3166460" localize="false"/>
-<paragraph role="heading" id="hd_id3145345" xml-lang="en-US" level="3"
l10n="U" oldref="5">Columnar - Labels on Top</paragraph>
-<paragraph role="paragraph" id="par_id3150355" xml-lang="en-US" l10n="U"
oldref="11"><ahelp hid="HID_DLGFORM_CMDTOPLABELED">Aligns the database fields
column-wise with the labels above the field.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145345" xml-lang="en-US" level="3"
l10n="U">Columnar - Labels on Top</paragraph>
+<paragraph role="paragraph" id="par_id3150355" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDTOPLABELED">Aligns the database fields
column-wise with the labels above the field.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDTABLESTYLE"
id="bm_id3146948" localize="false"/>
-<paragraph role="heading" id="hd_id3147209" xml-lang="en-US" level="3"
l10n="U" oldref="16">As Data Sheet</paragraph>
-<paragraph role="paragraph" id="par_id3153824" xml-lang="en-US" l10n="U"
oldref="17"><ahelp hid="HID_DLGFORM_CMDTABLESTYLE">Aligns the database fields
in a tabular form.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147209" xml-lang="en-US" level="3"
l10n="U">As Data Sheet</paragraph>
+<paragraph role="paragraph" id="par_id3153824" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDTABLESTYLE">Aligns the database fields in a
tabular form.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDTOPJUSTIFIED"
id="bm_id3149762" localize="false"/>
-<paragraph role="heading" id="hd_id3154897" xml-lang="en-US" level="3"
l10n="U" oldref="8">In Blocks - Labels Above</paragraph>
-<paragraph role="paragraph" id="par_id3155421" xml-lang="en-US" l10n="U"
oldref="14"><ahelp hid="HID_DLGFORM_CMDTOPJUSTIFIED">Arranges the labels above
the corresponding data.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154897" xml-lang="en-US" level="3"
l10n="U">In Blocks - Labels Above</paragraph>
+<paragraph role="paragraph" id="par_id3155421" xml-lang="en-US"
l10n="U"><ahelp hid="HID_DLGFORM_CMDTOPJUSTIFIED">Arranges the labels above the
corresponding data.</ahelp></paragraph>
<paragraph role="heading" id="par_idN106C9" xml-lang="en-US" level="2"
l10n="NEW">Arrangement of the subform</paragraph>
<paragraph role="heading" id="par_idN106D5" xml-lang="en-US" level="3"
l10n="NEW">Columnar - Labels Left</paragraph>
<paragraph role="paragraph" id="par_idN106D9" xml-lang="en-US"
l10n="NEW"><ahelp hid=".">Aligns the database fields column-wise with the
labels to the left of the fields.</ahelp></paragraph>
diff --git a/main/helpcontent2/source/text/shared/guide/data_report.xhp
b/main/helpcontent2/source/text/shared/guide/data_report.xhp
index a15da43c9d..7e0f74b239 100644
--- a/main/helpcontent2/source/text/shared/guide/data_report.xhp
+++ b/main/helpcontent2/source/text/shared/guide/data_report.xhp
@@ -38,20 +38,20 @@
<bookmark_value>templates;database reports</bookmark_value>
<bookmark_value>reports;templates</bookmark_value>
</bookmark>
-<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" l10n="E"
oldref="29" localize="false"/>
-<paragraph role="heading" id="hd_id3149178" xml-lang="en-US" level="1"
l10n="CHG" oldref="1"><variable id="data_report"><link
href="text/shared/guide/data_report.xhp" name="Create, Use, and Edit Database
Reports">Using and Editing Database Reports</link>
+<paragraph role="paragraph" id="par_id3147834" xml-lang="en-US" l10n="E"
localize="false"/>
+<paragraph role="heading" id="hd_id3149178" xml-lang="en-US" level="1"
l10n="CHG"><variable id="data_report"><link
href="text/shared/guide/data_report.xhp" name="Create, Use, and Edit Database
Reports">Using and Editing Database Reports</link>
</variable></paragraph>
-<paragraph role="heading" id="hd_id3145609" xml-lang="en-US" level="2"
l10n="CHG" oldref="13">Using a Report</paragraph>
-<paragraph role="paragraph" id="par_id3147265" xml-lang="en-US" l10n="CHG"
oldref="14">%PRODUCTNAME stores the information about the created reports in
the database file.</paragraph>
+<paragraph role="heading" id="hd_id3145609" xml-lang="en-US" level="2"
l10n="CHG">Using a Report</paragraph>
+<paragraph role="paragraph" id="par_id3147265" xml-lang="en-US"
l10n="CHG">%PRODUCTNAME stores the information about the created reports in the
database file.</paragraph>
<list type="ordered">
<listitem>
-<paragraph role="listitem" id="par_id3154758" xml-lang="en-US" l10n="CHG"
oldref="15">Choose <emph>File - Open</emph> and select the database
file.</paragraph>
+<paragraph role="listitem" id="par_id3154758" xml-lang="en-US"
l10n="CHG">Choose <emph>File - Open</emph> and select the database
file.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3151054" xml-lang="en-US" l10n="CHG"
oldref="16">In the database file window, click the <emph>Reports</emph>
icon.</paragraph>
+<paragraph role="listitem" id="par_id3151054" xml-lang="en-US" l10n="CHG">In
the database file window, click the <emph>Reports</emph> icon.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3156280" xml-lang="en-US" l10n="CHG"
oldref="18">Double-click one of the report names to open the report.</paragraph>
+<paragraph role="listitem" id="par_id3156280" xml-lang="en-US"
l10n="CHG">Double-click one of the report names to open the report.</paragraph>
<paragraph role="note" id="par_idN1077D" xml-lang="en-US" l10n="CHG">These
links are added automatically when you create a new report by the Report Wizard
or in the Report Builder window.</paragraph>
</listitem>
</list>
@@ -64,13 +64,13 @@
<paragraph role="paragraph" id="par_id8138065" xml-lang="en-US" l10n="NEW">The
Report Builder window opens with the report's information loaded.</paragraph>
<paragraph role="paragraph" id="par_id5086825" xml-lang="en-US" l10n="NEW">Use
the toolbars and menu commands and drag-and-drop to edit the report as stated
in the <link href="text/shared/explorer/database/rep_main.xhp">Report
Builder</link> guide.</paragraph>
<paragraph role="paragraph" id="par_id4747154" xml-lang="en-US"
l10n="NEW">Execute the report to see the resulting report document.</paragraph>
-<paragraph role="heading" id="hd_id3153104" xml-lang="en-US" level="2"
l10n="CHG" oldref="19">Editing a Report Created by the Report Wizard</paragraph>
+<paragraph role="heading" id="hd_id3153104" xml-lang="en-US" level="2"
l10n="CHG">Editing a Report Created by the Report Wizard</paragraph>
<list type="unordered">
<listitem>
-<paragraph role="listitem" id="par_id3125863" xml-lang="en-US" l10n="U"
oldref="20">On the <link href="text/shared/autopi/01100500.xhp" name="last
dialog page of the Report AutoPilot">last dialog page of the Report
Wizard</link>, you can choose to edit the report template before you use the
report.</paragraph>
+<paragraph role="listitem" id="par_id3125863" xml-lang="en-US" l10n="U">On the
<link href="text/shared/autopi/01100500.xhp" name="last dialog page of the
Report AutoPilot">last dialog page of the Report Wizard</link>, you can choose
to edit the report template before you use the report.</paragraph>
</listitem>
</list>
-<paragraph role="paragraph" id="par_id3155431" xml-lang="en-US" l10n="U"
oldref="22">You can edit the page styles for the first page and the following
pages of the report as well as the paragraph styles, the number formats, the
printed field labels, and more.</paragraph>
+<paragraph role="paragraph" id="par_id3155431" xml-lang="en-US" l10n="U">You
can edit the page styles for the first page and the following pages of the
report as well as the paragraph styles, the number formats, the printed field
labels, and more.</paragraph>
<paragraph role="warning" id="par_idN107D7" xml-lang="en-US" l10n="NEW">Unless
you have a thorough understanding of the database the report accesses, do not
edit the SQL statement, database name, the hidden form controls, or the related
information on the report.</paragraph>
<embed href="text/shared/00/00000004.xhp#related"/>
<embed href="text/shared/guide/database_main.xhp#database_main"/>
diff --git a/main/helpcontent2/source/text/shared/guide/dragdrop_graphic.xhp
b/main/helpcontent2/source/text/shared/guide/dragdrop_graphic.xhp
index c7a203e66e..49c4a9a9cf 100644
--- a/main/helpcontent2/source/text/shared/guide/dragdrop_graphic.xhp
+++ b/main/helpcontent2/source/text/shared/guide/dragdrop_graphic.xhp
@@ -35,31 +35,31 @@
<bookmark_value>copying;pictures, between documents</bookmark_value>
<bookmark_value>pasting;pictures from other documents</bookmark_value>
</bookmark><comment>mw added "pasting;"</comment>
-<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="1"
l10n="U" oldref="15"><variable id="dragdrop_graphic"><link
href="text/shared/guide/dragdrop_graphic.xhp" name="Copying Graphics Between
Documents">Copying Graphics Between Documents</link>
+<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="1"
l10n="U"><variable id="dragdrop_graphic"><link
href="text/shared/guide/dragdrop_graphic.xhp" name="Copying Graphics Between
Documents">Copying Graphics Between Documents</link>
</variable></paragraph>
-<paragraph role="paragraph" id="par_id3155805" xml-lang="en-US" l10n="U"
oldref="16">You can copy a graphic from one document to another by
drag-and-drop. If you plan to publish your document, please observe copyright
laws and obtain the consent of the authors.</paragraph>
+<paragraph role="paragraph" id="par_id3155805" xml-lang="en-US" l10n="U">You
can copy a graphic from one document to another by drag-and-drop. If you plan
to publish your document, please observe copyright laws and obtain the consent
of the authors.</paragraph>
<list type="ordered">
<listitem>
-<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U"
oldref="17">Open the document in which you want to insert the graphic
object.</paragraph>
+<paragraph role="listitem" id="par_id3147576" xml-lang="en-US" l10n="U">Open
the document in which you want to insert the graphic object.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3155338" xml-lang="en-US" l10n="U"
oldref="18">Open the document from which you want to copy the
graphic.</paragraph>
+<paragraph role="listitem" id="par_id3155338" xml-lang="en-US" l10n="U">Open
the document from which you want to copy the graphic.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3149182" xml-lang="en-US" l10n="U"
oldref="19">Click the graphic while pressing the <switchinline
select="sys"><caseinline
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>
key, to select it without executing any hyperlinks it may refer to.</paragraph>
+<paragraph role="listitem" id="par_id3149182" xml-lang="en-US" l10n="U">Click
the graphic while pressing the <switchinline select="sys"><caseinline
select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>
key, to select it without executing any hyperlinks it may refer to.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3151110" xml-lang="en-US" l10n="U"
oldref="20">Keep the mouse button pressed and wait a moment while the object is
copied to an internal memory.</paragraph>
+<paragraph role="listitem" id="par_id3151110" xml-lang="en-US" l10n="U">Keep
the mouse button pressed and wait a moment while the object is copied to an
internal memory.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3149763" xml-lang="en-US" l10n="U"
oldref="21">Drag the graphic into the other document. <switchinline
select="sys"><caseinline select="WIN">If the documents are not visible side by
side, first move the mouse pointer to the button of the target document while
keeping the mouse button pressed. The document in question is then displayed
and you can move the mouse pointer into the document.
+<paragraph role="listitem" id="par_id3149763" xml-lang="en-US" l10n="U">Drag
the graphic into the other document. <switchinline select="sys"><caseinline
select="WIN">If the documents are not visible side by side, first move the
mouse pointer to the button of the target document while keeping the mouse
button pressed. The document in question is then displayed and you can move the
mouse pointer into the document.
</caseinline></switchinline></paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3155628" xml-lang="en-US" l10n="U"
oldref="22">Release the mouse button as soon as the gray text cursor indicates
the position where you want to insert a copy of the picture.</paragraph>
+<paragraph role="listitem" id="par_id3155628" xml-lang="en-US"
l10n="U">Release the mouse button as soon as the gray text cursor indicates the
position where you want to insert a copy of the picture.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3150276" xml-lang="en-US" l10n="U"
oldref="56">If the graphic is connected with a hyperlink, the hyperlink and not
the graphic is inserted.</paragraph>
+<paragraph role="listitem" id="par_id3150276" xml-lang="en-US" l10n="U">If the
graphic is connected with a hyperlink, the hyperlink and not the graphic is
inserted.</paragraph>
</listitem>
</list>
<embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/auto_numbering.xhp
b/main/helpcontent2/source/text/swriter/guide/auto_numbering.xhp
index 731d746217..8e8e252fb3 100644
--- a/main/helpcontent2/source/text/swriter/guide/auto_numbering.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/auto_numbering.xhp
@@ -38,37 +38,34 @@
<bookmark_value>bullets; using automatically</bookmark_value>
<bookmark_value>paragraphs; automatic numbering</bookmark_value>
</bookmark><comment>MW deleted "applying;"</comment><comment>mw deleted
"automatic bullets" and changed "automatic numbering;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3147407" role="heading" level="1" l10n="U"
-oldref="26"><variable id="auto_numbering"><link
href="text/swriter/guide/auto_numbering.xhp" name="Creating Numbered or
Bulleted Lists as You Type">Creating Numbered or Bulleted Lists as You
Type</link>
+<paragraph xml-lang="en-US" id="hd_id3147407" role="heading" level="1"
l10n="U"><variable id="auto_numbering"><link
href="text/swriter/guide/auto_numbering.xhp" name="Creating Numbered or
Bulleted Lists as You Type">Creating Numbered or Bulleted Lists as You
Type</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155525" role="paragraph" l10n="U"
oldref="16">$[officename] can automatically apply numbering or bullets as you
type.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3154243" role="heading" level="2" l10n="U"
-oldref="28">To Enable Automatic Numbering and Bulleting</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155525" role="paragraph"
l10n="U">$[officename] can automatically apply numbering or bullets as you
type.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3154243" role="heading" level="2"
l10n="U">To Enable Automatic Numbering and Bulleting</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152830" role="listitem" l10n="U"
oldref="29">Choose <item type="menuitem">Tools - AutoCorrect Options</item>,
click the <item type="menuitem">Options</item> tab, and then select “Apply
numbering - symbol”.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152830" role="listitem" l10n="U">Choose
<item type="menuitem">Tools - AutoCorrect Options</item>, click the <item
type="menuitem">Options</item> tab, and then select “Apply numbering -
symbol”.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152867" role="listitem" l10n="U"
oldref="30">Choose <emph>Format - AutoCorrect</emph>, and ensure that
<emph>While Typing</emph> is selected.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152867" role="listitem" l10n="U">Choose
<emph>Format - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is
selected.</paragraph>
</listitem>
</list>
<paragraph xml-lang="en-US" id="par_id2357860" role="tip" l10n="NEW">The
automatic numbering option is only applied to paragraphs that are formatted
with the "Default", "Text body", or "Text body indent" paragraph
style.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3152897" role="heading" level="2" l10n="U"
-oldref="21">To Create a Numbered or Bulleted List While You Type</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152897" role="heading" level="2"
l10n="U">To Create a Numbered or Bulleted List While You Type</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147773" role="listitem" l10n="U"
oldref="22">Type 1., i., or I. to start a numbered list. Type * or - to start a
bulleted list. You can also type a right parenthesis after the number instead
of a period , for example, 1) or i).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147773" role="listitem" l10n="U">Type
1., i., or I. to start a numbered list. Type * or - to start a bulleted list.
You can also type a right parenthesis after the number instead of a period ,
for example, 1) or i).</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147794" role="listitem" l10n="U"
oldref="23">Enter a space, type your text, and then press Enter. The new
paragraph automatically receives the next number or bullet.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147794" role="listitem" l10n="U">Enter
a space, type your text, and then press Enter. The new paragraph automatically
receives the next number or bullet.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147814" role="listitem" l10n="U"
oldref="31">Press Enter again to finish the list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147814" role="listitem" l10n="U">Press
Enter again to finish the list.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="par_id3147287" role="note" l10n="U"
oldref="25">You can start a numbered list with any number.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147287" role="note" l10n="U">You can
start a numbered list with any number.</paragraph>
<embed href="text/shared/00/00000004.xhp#related"/>
<embed href="text/swriter/guide/using_numbering.xhp#using_numbering"/>
-<paragraph xml-lang="en-US" id="par_id3154083" role="paragraph" l10n="U"
oldref="27"><link href="text/shared/01/06050000.xhp" name="Format -
Numbering/Bullets">Format - Bullets and Numbering</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154083" role="paragraph" l10n="U"><link
href="text/shared/01/06050000.xhp" name="Format - Numbering/Bullets">Format -
Bullets and Numbering</link></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
b/main/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
index a9e780f782..30870be5ce 100644
--- a/main/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
@@ -34,33 +34,32 @@
<bookmark_value>checking spelling;manually</bookmark_value>
<bookmark_value>grammar checker</bookmark_value>
</bookmark><comment>mw added "grammar checker"</comment>
-<paragraph xml-lang="en-US" id="hd_id3149684" role="heading" level="1" l10n="U"
-oldref="37"><variable id="spellcheck_dialog"><link
href="text/swriter/guide/spellcheck_dialog.xhp" name="Checking Spelling and
Grammar">Checking Spelling and Grammar</link>
+<paragraph xml-lang="en-US" id="hd_id3149684" role="heading" level="1"
l10n="U"><variable id="spellcheck_dialog"><link
href="text/swriter/guide/spellcheck_dialog.xhp" name="Checking Spelling and
Grammar">Checking Spelling and Grammar</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149814" role="paragraph" l10n="CHG"
oldref="9">You can manually check the spelling and grammar of a text selection
or the entire document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149814" role="paragraph" l10n="CHG">You
can manually check the spelling and grammar of a text selection or the entire
document.</paragraph>
<paragraph xml-lang="en-US" id="par_id0525200902184476" role="note"
l10n="NEW">To check the spelling and the grammar of a text, the appropriate
dictionaries must be installed. For many languages three different dictionaries
exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each
dictionary covers one language only. Grammar checkers can be downloaded and
installed as extensions. See the <link
href="https://extensions.openoffice.org/dictionary">extensions web
page</link>.</p [...]
-<paragraph xml-lang="en-US" id="par_id3149828" role="paragraph" l10n="U"
oldref="10">The spellcheck starts at the current cursor position, or at the
beginning of the text selection.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149828" role="paragraph" l10n="U">The
spellcheck starts at the current cursor position, or at the beginning of the
text selection.</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155859" role="listitem" l10n="U"
oldref="43">Click in the document, or select the text that you want to
check.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155859" role="listitem" l10n="U">Click
in the document, or select the text that you want to check.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149836" role="listitem" l10n="CHG"
oldref="44">Choose <emph>Tools - Spelling and Grammar</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149836" role="listitem"
l10n="CHG">Choose <emph>Tools - Spelling and Grammar</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3156104" role="listitem" l10n="CHG"
oldref="45">When a possible spelling error is encountered, the <item
type="menuitem">Spellcheck</item> dialog opens and $[officename] offers some
suggested corrections.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156104" role="listitem" l10n="CHG">When
a possible spelling error is encountered, the <item
type="menuitem">Spellcheck</item> dialog opens and $[officename] offers some
suggested corrections.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149861" role="listitem" l10n="U"
oldref="46">Do one of the following:</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145099" role="listitem" l10n="CHG"
oldref="47">To accept a correction, click the suggestion, and then click
<emph>Change</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156241" role="listitem" l10n="CHG"
oldref="48">Edit the sentence in the upper text box, and then click
<emph>Change</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="CHG"
oldref="40">To add the unknown word to a user-defined dictionary, click
<emph>Add</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149861" role="listitem" l10n="U">Do one
of the following:</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145099" role="listitem" l10n="CHG">To
accept a correction, click the suggestion, and then click
<emph>Change</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156241" role="listitem" l10n="CHG">Edit
the sentence in the upper text box, and then click
<emph>Change</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="CHG">To
add the unknown word to a user-defined dictionary, click
<emph>Add</emph>.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
<embed href="text/swriter/guide/auto_spellcheck.xhp#auto_spellcheck"/>
<comment>removed a line</comment>
-<paragraph xml-lang="en-US" id="par_id3147107" role="paragraph" l10n="U"
oldref="49"><link href="text/shared/01/06010000.xhp" name="Spellcheck
dialog">Spelling and Grammar dialog</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147107" role="paragraph" l10n="U"><link
href="text/shared/01/06010000.xhp" name="Spellcheck dialog">Spelling and
Grammar dialog</link></paragraph>
<embed href="text/swriter/guide/using_hyphen.xhp#using_hyphen"/>
<embed href="text/swriter/guide/using_thesaurus.xhp#using_thesaurus"/>
<paragraph xml-lang="en-US" id="par_id9625843" role="paragraph"
l10n="NEW"><link
href="https://wiki.openoffice.org/wiki/Documentation/How_Tos/Adding_More_Languages">Wiki
page: Adding more languages</link></paragraph>