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 e2965a574d Remove 'oldref' entries (work in progress)
e2965a574d is described below
commit e2965a574d9924bf128b0734eb868a623122fbdb
Author: mseidel <[email protected]>
AuthorDate: Sun Dec 22 15:36:37 2024 +0100
Remove 'oldref' entries (work in progress)
---
.../source/text/sbasic/shared/03060200.xhp | 42 +++++++++----------
.../source/text/sbasic/shared/03102000.xhp | 48 ++++++++++------------
.../helpcontent2/source/text/scalc/02/18010000.xhp | 17 ++++----
.../source/text/scalc/guide/row_height.xhp | 28 ++++++-------
main/helpcontent2/source/text/scalc/main0503.xhp | 32 +++++++--------
.../source/text/shared/01/04100000.xhp | 26 ++++++------
.../source/text/shared/02/09070400.xhp | 26 ++++++------
.../text/shared/explorer/database/menuedit.xhp | 8 ++--
.../source/text/shared/guide/autohide.xhp | 23 +++++------
.../source/text/shared/guide/data_enter_sql.xhp | 19 ++++-----
main/helpcontent2/source/text/shared/main0204.xhp | 6 +--
.../source/text/swriter/00/00000403.xhp | 38 ++++++++---------
.../source/text/swriter/01/04070000.xhp | 12 +++---
main/helpcontent2/source/text/swriter/main0102.xhp | 30 +++++++-------
14 files changed, 172 insertions(+), 183 deletions(-)
diff --git a/main/helpcontent2/source/text/sbasic/shared/03060200.xhp
b/main/helpcontent2/source/text/sbasic/shared/03060200.xhp
index 9e2dc58bac..e912074ef8 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03060200.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03060200.xhp
@@ -33,28 +33,26 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3156344">
<bookmark_value>Eqv operator (logical)</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="1"
l10n="CHG" oldref="1"><link href="text/sbasic/shared/03060200.xhp" name="Eqv
Operator [Runtime]">Eqv Operator [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" l10n="U"
oldref="2">Calculates the logical equivalence of two expressions.</paragraph>
+<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="1"
l10n="CHG"><link href="text/sbasic/shared/03060200.xhp" name="Eqv Operator
[Runtime]">Eqv Operator [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US"
l10n="U">Calculates the logical equivalence of two expressions.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3154367" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3154910" xml-lang="en-US" l10n="U"
oldref="4">Result = Expression1 Eqv Expression2</paragraph>
-<paragraph role="heading" id="hd_id3151043" xml-lang="en-US" level="2"
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3150869" xml-lang="en-US" l10n="U"
oldref="6">
-<emph>Result:</emph> Any numeric variable that contains the result of the
comparison.</paragraph>
-<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US" l10n="U"
oldref="7">
-<emph>Expression1, Expression2:</emph> Any expressions that you want to
compare.</paragraph>
-<paragraph role="paragraph" id="par_id3149562" xml-lang="en-US" l10n="U"
oldref="8">When testing for equivalence between Boolean expressions, the result
is <emph>True</emph> if both expressions are either <emph>True</emph> or
<emph>False</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U"
oldref="9">In a bit-wise comparison, the Eqv operator only sets the
corresponding bit in the result if a bit is set in both expressions, or in
neither expression.</paragraph>
-<paragraph role="heading" id="hd_id3159154" xml-lang="en-US" level="2"
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U"
oldref="11">Sub ExampleEqv</paragraph>
-<paragraph role="paragraph" id="par_id3155308" xml-lang="en-US" l10n="CHG"
oldref="12">Dim A as Variant, B as Variant, C as Variant, D as
Variant<comment>UFI: #i38265#</comment></paragraph>
-<paragraph role="paragraph" id="par_id3146986" xml-lang="en-US" l10n="U"
oldref="13">Dim vOut as Variant</paragraph>
-<paragraph role="paragraph" id="par_id3147434" xml-lang="en-US" l10n="CHG"
oldref="14">A = 10: B = 8: C = 6: D = Null</paragraph>
-<paragraph role="paragraph" id="par_id3152462" xml-lang="en-US" l10n="U"
oldref="15">vOut = A > B Eqv B > C REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3153191" xml-lang="en-US" l10n="CHG"
oldref="16">vOut = B > A Eqv B > C REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US" l10n="CHG"
oldref="17">vOut = A > B Eqv B > D REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US" l10n="CHG"
oldref="18">vOut = (B > D Eqv B > A) REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US" l10n="CHG"
oldref="19">vOut = B Eqv A REM returns -3</paragraph>
-<paragraph role="paragraph" id="par_id3145646" xml-lang="en-US" l10n="U"
oldref="20">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3154367" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3154910" xml-lang="en-US"
l10n="U">Result = Expression1 Eqv Expression2</paragraph>
+<paragraph role="heading" id="hd_id3151043" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3150869" xml-lang="en-US"
l10n="U"><emph>Result:</emph> Any numeric variable that contains the result of
the comparison.</paragraph>
+<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US"
l10n="U"><emph>Expression1, Expression2:</emph> Any expressions that you want
to compare.</paragraph>
+<paragraph role="paragraph" id="par_id3149562" xml-lang="en-US" l10n="U">When
testing for equivalence between Boolean expressions, the result is
<emph>True</emph> if both expressions are either <emph>True</emph> or
<emph>False</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U">In a
bit-wise comparison, the Eqv operator only sets the corresponding bit in the
result if a bit is set in both expressions, or in neither
expression.</paragraph>
+<paragraph role="heading" id="hd_id3159154" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U">Sub
ExampleEqv</paragraph>
+<paragraph role="paragraph" id="par_id3155308" xml-lang="en-US" l10n="CHG">Dim
A as Variant, B as Variant, C as Variant, D as Variant<comment>UFI:
#i38265#</comment></paragraph>
+<paragraph role="paragraph" id="par_id3146986" xml-lang="en-US" l10n="U">Dim
vOut as Variant</paragraph>
+<paragraph role="paragraph" id="par_id3147434" xml-lang="en-US" l10n="CHG">A =
10: B = 8: C = 6: D = Null</paragraph>
+<paragraph role="paragraph" id="par_id3152462" xml-lang="en-US" l10n="U">vOut
= A > B Eqv B > C REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3153191" xml-lang="en-US"
l10n="CHG">vOut = B > A Eqv B > C REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US"
l10n="CHG">vOut = A > B Eqv B > D REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US"
l10n="CHG">vOut = (B > D Eqv B > A) REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US"
l10n="CHG">vOut = B Eqv A REM returns -3</paragraph>
+<paragraph role="paragraph" id="par_id3145646" xml-lang="en-US" l10n="U">End
Sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03102000.xhp
b/main/helpcontent2/source/text/sbasic/shared/03102000.xhp
index b690e2dce6..bbdbfba195 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03102000.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03102000.xhp
@@ -33,32 +33,28 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3143267">
<bookmark_value>DefVar statement</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3143267" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03102000.xhp" name="DefVar
Statement [Runtime]">DefVar Statement [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3153825" xml-lang="en-US" l10n="U"
oldref="2">Sets the default variable type, according to a letter range, if no
type-declaration character or keyword is specified.</paragraph>
+<paragraph role="heading" id="hd_id3143267" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03102000.xhp" name="DefVar Statement
[Runtime]">DefVar Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3153825" xml-lang="en-US" l10n="U">Sets
the default variable type, according to a letter range, if no type-declaration
character or keyword is specified.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3154143" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149514" xml-lang="en-US" l10n="U"
oldref="4">Defxxx Characterrange1[, Characterrange2[,...]]</paragraph>
-<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2"
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="U"
oldref="6">
-<emph>Characterrange:</emph> Letters that specify the range of variables that
you want to set the default data type for.</paragraph>
-<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US" l10n="U"
oldref="7">
-<emph>xxx:</emph> Keyword that defines the default variable type:</paragraph>
-<paragraph role="paragraph" id="par_id3153524" xml-lang="en-US" l10n="U"
oldref="8">
-<emph>Keyword:</emph> Default variable type</paragraph>
-<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="U"
oldref="9">
-<emph>DefVar:</emph> Variant</paragraph>
-<paragraph role="heading" id="hd_id3151041" xml-lang="en-US" level="2"
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3156214" xml-lang="en-US" l10n="U"
oldref="11">REM Prefix definitions for variable types:</paragraph>
-<paragraph role="paragraph" id="par_id3145173" xml-lang="en-US" l10n="U"
oldref="12">DefBool b</paragraph>
-<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US" l10n="U"
oldref="13">DefDate t</paragraph>
-<paragraph role="paragraph" id="par_id3153368" xml-lang="en-US" l10n="U"
oldref="14">DefDbL d</paragraph>
-<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U"
oldref="15">DefInt i</paragraph>
-<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U"
oldref="16">DefLng l</paragraph>
-<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U"
oldref="17">DefObj o</paragraph>
-<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US" l10n="U"
oldref="18">DefVar v</paragraph>
-<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U"
oldref="20">Sub ExampleDefVar</paragraph>
-<paragraph role="paragraph" id="par_id3154012" xml-lang="en-US" l10n="U"
oldref="21">vDiv=99 REM vDiv is an implicit variant</paragraph>
-<paragraph role="paragraph" id="par_id3146121" xml-lang="en-US" l10n="U"
oldref="22">vDiv="Hello world"</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U"
oldref="23">end sub</paragraph>
+<paragraph role="heading" id="hd_id3154143" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3149514" xml-lang="en-US"
l10n="U">Defxxx Characterrange1[, Characterrange2[,...]]</paragraph>
+<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US"
l10n="U"><emph>Characterrange:</emph> Letters that specify the range of
variables that you want to set the default data type for.</paragraph>
+<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US"
l10n="U"><emph>xxx:</emph> Keyword that defines the default variable
type:</paragraph>
+<paragraph role="paragraph" id="par_id3153524" xml-lang="en-US"
l10n="U"><emph>Keyword:</emph> Default variable type</paragraph>
+<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US"
l10n="U"><emph>DefVar:</emph> Variant</paragraph>
+<paragraph role="heading" id="hd_id3151041" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3156214" xml-lang="en-US" l10n="U">REM
Prefix definitions for variable types:</paragraph>
+<paragraph role="paragraph" id="par_id3145173" xml-lang="en-US"
l10n="U">DefBool b</paragraph>
+<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US"
l10n="U">DefDate t</paragraph>
+<paragraph role="paragraph" id="par_id3153368" xml-lang="en-US"
l10n="U">DefDbL d</paragraph>
+<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US"
l10n="U">DefInt i</paragraph>
+<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US"
l10n="U">DefLng l</paragraph>
+<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US"
l10n="U">DefObj o</paragraph>
+<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US"
l10n="U">DefVar v</paragraph>
+<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U">Sub
ExampleDefVar</paragraph>
+<paragraph role="paragraph" id="par_id3154012" xml-lang="en-US"
l10n="U">vDiv=99 REM vDiv is an implicit variant</paragraph>
+<paragraph role="paragraph" id="par_id3146121" xml-lang="en-US"
l10n="U">vDiv="Hello world"</paragraph>
+<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U">end
sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/02/18010000.xhp
b/main/helpcontent2/source/text/scalc/02/18010000.xhp
index 4bcd179067..2e0224922a 100644
--- a/main/helpcontent2/source/text/scalc/02/18010000.xhp
+++ b/main/helpcontent2/source/text/scalc/02/18010000.xhp
@@ -35,32 +35,31 @@
</bookmark>
<bookmark xml-lang="en-US" branch="hid/.uno:InsertCtrl" id="bm_id5322551"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:InsertCtrl" id="bm_id3156327"
localize="false"/>
-<paragraph role="heading" id="hd_id3156329" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/scalc/02/18010000.xhp"
name="Insert">Insert</link></paragraph>
-<paragraph role="paragraph" id="par_id3147336" xml-lang="en-US" l10n="CHG"
oldref="2"><ahelp hid=".uno:InsertCtrl">Click the arrow next to the icon to
open the <emph>Insert</emph> toolbar, where you can add graphics and special
characters to the current sheet.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156329" xml-lang="en-US" level="1"
l10n="U"><link href="text/scalc/02/18010000.xhp"
name="Insert">Insert</link></paragraph>
+<paragraph role="paragraph" id="par_id3147336" xml-lang="en-US"
l10n="CHG"><ahelp hid=".uno:InsertCtrl">Click the arrow next to the icon to
open the <emph>Insert</emph> toolbar, where you can add graphics and special
characters to the current sheet.</ahelp></paragraph>
</section>
-<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" l10n="CHG"
oldref="3">Tools bar icon:</paragraph>
+<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US"
l10n="CHG">Tools bar icon:</paragraph>
<section id="syeinfuegen">
<table id="tbl_id3154365">
<tablerow>
<tablecell colspan="" rowspan="">
<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="E">
-<image id="img_id3156423" src="res/commandimagelist/sc_insertgraphic.png"
width="0.222inch" height="0.222inch"><alt id="alt_id3156423"
xml-lang="en-US">Icon</alt>
-</image></paragraph>
+<image id="img_id3156423" src="res/commandimagelist/sc_insertgraphic.png"
width="0.222inch" height="0.222inch"><alt id="alt_id3156423"
xml-lang="en-US">Icon</alt></image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U"
oldref="4">Insert</paragraph>
+<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US"
l10n="U">Insert</paragraph>
</tablecell>
</tablerow>
</table>
</section>
-<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U"
oldref="6">You can select the following icons:</paragraph>
+<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U">You
can select the following icons:</paragraph>
<paragraph role="heading" id="hd_id4283883" xml-lang="en-US" level="2"
l10n="NEW"><link href="text/shared/01/04160500.xhp" name="Floating
Frame">Floating Frame</link></paragraph>
<embed href="text/shared/01/04160500.xhp#frameeinfuegentext"/>
<embed href="text/shared/00/00000404.xhp#syframe"/>
-<paragraph role="heading" id="hd_id3149410" xml-lang="en-US" level="2"
l10n="CHG" oldref="8"><link href="text/shared/01/04100000.xhp" name="Special
Character">Special Character</link></paragraph>
+<paragraph role="heading" id="hd_id3149410" xml-lang="en-US" level="2"
l10n="CHG"><link href="text/shared/01/04100000.xhp" name="Special
Character">Special Character</link></paragraph>
<embed href="text/shared/01/04100000.xhp#sonder"/>
<embed href="text/shared/00/00000404.xhp#sysonder"/>
-<paragraph role="heading" id="hd_id3151117" xml-lang="en-US" level="2"
l10n="CHG" oldref="7"><link href="text/shared/01/04140000.xhp" name="From
File">From File</link></paragraph>
+<paragraph role="heading" id="hd_id3151117" xml-lang="en-US" level="2"
l10n="CHG"><link href="text/shared/01/04140000.xhp" name="From File">From
File</link></paragraph>
<embed href="text/shared/01/04140000.xhp#grafiktext"/>
<embed href="text/shared/00/00000404.xhp#sygrafik"/>
<embed href="text/shared/01/moviesound.xhp#moviesound"/>
diff --git a/main/helpcontent2/source/text/scalc/guide/row_height.xhp
b/main/helpcontent2/source/text/scalc/guide/row_height.xhp
index edf22521ee..b4bdf76a19 100644
--- a/main/helpcontent2/source/text/scalc/guide/row_height.xhp
+++ b/main/helpcontent2/source/text/scalc/guide/row_height.xhp
@@ -40,34 +40,34 @@
<bookmark_value>columns; widths</bookmark_value>
<bookmark_value>changing;row heights/column widths</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3145748" xml-lang="en-US" level="1"
l10n="U" oldref="1"><variable id="row_height"><link
href="text/scalc/guide/row_height.xhp" name="Changing Row Height or Column
Width">Changing Row Height or Column Width</link>
+<paragraph role="heading" id="hd_id3145748" xml-lang="en-US" level="1"
l10n="U"><variable id="row_height"><link href="text/scalc/guide/row_height.xhp"
name="Changing Row Height or Column Width">Changing Row Height or Column
Width</link>
</variable></paragraph>
-<paragraph role="paragraph" id="par_id3154017" xml-lang="en-US" l10n="U"
oldref="2">You can change the height of the rows with the mouse or through the
dialog.</paragraph>
-<paragraph role="note" id="par_id3154702" xml-lang="en-US" l10n="U"
oldref="3">What is described here for rows and row height applies accordingly
for columns and column width.</paragraph>
-<paragraph role="heading" id="hd_id3153963" xml-lang="en-US" level="2"
l10n="U" oldref="4">Using the mouse to change the row height or column
width</paragraph>
+<paragraph role="paragraph" id="par_id3154017" xml-lang="en-US" l10n="U">You
can change the height of the rows with the mouse or through the
dialog.</paragraph>
+<paragraph role="note" id="par_id3154702" xml-lang="en-US" l10n="U">What is
described here for rows and row height applies accordingly for columns and
column width.</paragraph>
+<paragraph role="heading" id="hd_id3153963" xml-lang="en-US" level="2"
l10n="U">Using the mouse to change the row height or column width</paragraph>
<list type="unordered">
<listitem>
-<paragraph role="listitem" id="par_id3154020" xml-lang="en-US" l10n="U"
oldref="5">Click the area of the headers on the separator below the current
row, keep the mouse button pressed and drag up or down in order to change the
row height.</paragraph>
+<paragraph role="listitem" id="par_id3154020" xml-lang="en-US" l10n="U">Click
the area of the headers on the separator below the current row, keep the mouse
button pressed and drag up or down in order to change the row
height.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3159237" xml-lang="en-US" l10n="U"
oldref="6">Select the optimal row height by double-clicking the separator below
the row.</paragraph>
+<paragraph role="listitem" id="par_id3159237" xml-lang="en-US" l10n="U">Select
the optimal row height by double-clicking the separator below the
row.</paragraph>
</listitem>
</list>
-<paragraph role="heading" id="hd_id3154659" xml-lang="en-US" level="2"
l10n="U" oldref="7">Using the dialog to change the row height or column
width</paragraph>
+<paragraph role="heading" id="hd_id3154659" xml-lang="en-US" level="2"
l10n="U">Using the dialog to change the row height or column width</paragraph>
<list type="ordered">
<listitem>
-<paragraph role="listitem" id="par_id3150367" xml-lang="en-US" l10n="U"
oldref="8">Click the row so that you achieve the focus.</paragraph>
+<paragraph role="listitem" id="par_id3150367" xml-lang="en-US" l10n="U">Click
the row so that you achieve the focus.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3166432" xml-lang="en-US" l10n="U"
oldref="9">Start the context menu on the header at the left-hand
side.</paragraph>
-<paragraph role="listitem" id="par_id3150519" xml-lang="en-US" l10n="U"
oldref="10">You will see the commands <emph>Row Height</emph> and <emph>Optimal
row height</emph>. Choosing either opens a dialog.</paragraph>
+<paragraph role="listitem" id="par_id3166432" xml-lang="en-US" l10n="U">Start
the context menu on the header at the left-hand side.</paragraph>
+<paragraph role="listitem" id="par_id3150519" xml-lang="en-US" l10n="U">You
will see the commands <emph>Row Height</emph> and <emph>Optimal row
height</emph>. Choosing either opens a dialog.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
-<paragraph role="paragraph" id="par_id3154487" xml-lang="en-US" l10n="U"
oldref="11"><link href="text/shared/01/05340100.xhp" name="Row height">Row
height</link></paragraph>
-<paragraph role="paragraph" id="par_id3149408" xml-lang="en-US" l10n="U"
oldref="12"><link href="text/scalc/01/05030200.xhp" name="Optimal row
height">Optimal row height</link></paragraph>
-<paragraph role="paragraph" id="par_id3153305" xml-lang="en-US" l10n="U"
oldref="13"><link href="text/shared/01/05340200.xhp" name="Column width">Column
width</link></paragraph>
-<paragraph role="paragraph" id="par_id3153815" xml-lang="en-US" l10n="U"
oldref="14"><link href="text/scalc/01/05040200.xhp" name="Optimal column
width">Optimal column width</link></paragraph>
+<paragraph role="paragraph" id="par_id3154487" xml-lang="en-US" l10n="U"><link
href="text/shared/01/05340100.xhp" name="Row height">Row
height</link></paragraph>
+<paragraph role="paragraph" id="par_id3149408" xml-lang="en-US" l10n="U"><link
href="text/scalc/01/05030200.xhp" name="Optimal row height">Optimal row
height</link></paragraph>
+<paragraph role="paragraph" id="par_id3153305" xml-lang="en-US" l10n="U"><link
href="text/shared/01/05340200.xhp" name="Column width">Column
width</link></paragraph>
+<paragraph role="paragraph" id="par_id3153815" xml-lang="en-US" l10n="U"><link
href="text/scalc/01/05040200.xhp" name="Optimal column width">Optimal column
width</link></paragraph>
</section>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/main0503.xhp
b/main/helpcontent2/source/text/scalc/main0503.xhp
index 737f7dd2bd..4edd5fea28 100644
--- a/main/helpcontent2/source/text/scalc/main0503.xhp
+++ b/main/helpcontent2/source/text/scalc/main0503.xhp
@@ -30,22 +30,22 @@
</meta>
<body>
<section id="waskann">
-<paragraph id="hd_id3154758" role="heading" level="1" oldref="1" l10n="U"
xml-lang="en-US"><variable id="main0503"><link href="text/scalc/main0503.xhp"
name="$[officename] Calc Features">$[officename] Calc
Features</link></variable></paragraph>
-<paragraph role="paragraph" id="par_id3149457" l10n="U" xml-lang="en-US"
oldref="2">$[officename] Calc is a spreadsheet application that you can use to
calculate, analyze, and manage your data. You can also import and modify
Microsoft Excel spreadsheets.</paragraph>
+<paragraph id="hd_id3154758" role="heading" level="1" l10n="U"
xml-lang="en-US"><variable id="main0503"><link href="text/scalc/main0503.xhp"
name="$[officename] Calc Features">$[officename] Calc
Features</link></variable></paragraph>
+<paragraph role="paragraph" id="par_id3149457" l10n="U"
xml-lang="en-US">$[officename] Calc is a spreadsheet application that you can
use to calculate, analyze, and manage your data. You can also import and modify
Microsoft Excel spreadsheets.</paragraph>
</section>
-<paragraph role="heading" level="2" id="hd_id3148797" l10n="U"
xml-lang="en-US" oldref="4">Calculations</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3145172" l10n="U"
oldref="5">$[officename] Calc provides you with <link
href="text/scalc/01/04060100.xhp" name="functions">functions</link>, including
statistical and banking functions, that you can use to create formulas to
perform complex calculations on your data.</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3145271" l10n="U"
oldref="6">You can also use the <link href="text/scalc/01/04060000.xhp"
name="AutoPilots">Function Wizard</link> to help you create your
formulas.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3152596" l10n="U"
xml-lang="en-US" oldref="13">What-If Calculations</paragraph>
-<paragraph role="paragraph" id="par_id3156444" l10n="U" xml-lang="en-US"
oldref="14">An interesting feature is to be able to immediately view the
results of changes made to one factor of calculations that are composed of
several factors. For instance, you can see how changing the time period in a
loan calculation affects the interest rates or repayment amounts. Furthermore,
you can manage larger tables by using different predefined
scenarios.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3148576" l10n="U"
xml-lang="en-US" oldref="7">Database Functions</paragraph>
-<paragraph role="paragraph" id="par_id3154011" l10n="U" xml-lang="en-US"
oldref="8">Use spreadsheets to arrange, store, and filter your data.</paragraph>
-<paragraph role="paragraph" id="par_id3154942" l10n="U" xml-lang="en-US"
oldref="25">$[officename] Calc lets you drag-and-drop tables from databases, or
lets you use a spreadsheet as a data source for creating form letters in
$[officename] Writer.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3145800" l10n="U"
xml-lang="en-US" oldref="9">Arranging Data</paragraph>
-<paragraph role="paragraph" id="par_id3154490" l10n="U" xml-lang="en-US"
oldref="10">With a few mouse-clicks, you can reorganize your spreadsheet to
show or hide certain data ranges, or to format ranges according to special
conditions, or to quickly calculate subtotals and totals.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3155601" l10n="U"
xml-lang="en-US" oldref="16">Dynamic Charts</paragraph>
-<paragraph role="paragraph" id="par_id3149121" l10n="U" xml-lang="en-US"
oldref="17">$[officename] Calc lets you present spreadsheet data in dynamic
charts that update automatically when the data changes.</paragraph>
-<paragraph role="heading" level="2" id="hd_id3153707" l10n="U"
xml-lang="en-US" oldref="18">Opening and Saving Microsoft Files</paragraph>
-<paragraph xml-lang="en-US" role="paragraph" id="par_id3157867" l10n="U"
oldref="19">Use the $[officename] filters to convert Excel files, or to open
and save in a variety of other <link href="text/shared/00/00000020.xhp"
name="formats">formats</link>.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3148797" l10n="U"
xml-lang="en-US">Calculations</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3145172"
l10n="U">$[officename] Calc provides you with <link
href="text/scalc/01/04060100.xhp" name="functions">functions</link>, including
statistical and banking functions, that you can use to create formulas to
perform complex calculations on your data.</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3145271" l10n="U">You
can also use the <link href="text/scalc/01/04060000.xhp"
name="AutoPilots">Function Wizard</link> to help you create your
formulas.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3152596" l10n="U"
xml-lang="en-US">What-If Calculations</paragraph>
+<paragraph role="paragraph" id="par_id3156444" l10n="U" xml-lang="en-US">An
interesting feature is to be able to immediately view the results of changes
made to one factor of calculations that are composed of several factors. For
instance, you can see how changing the time period in a loan calculation
affects the interest rates or repayment amounts. Furthermore, you can manage
larger tables by using different predefined scenarios.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3148576" l10n="U"
xml-lang="en-US">Database Functions</paragraph>
+<paragraph role="paragraph" id="par_id3154011" l10n="U" xml-lang="en-US">Use
spreadsheets to arrange, store, and filter your data.</paragraph>
+<paragraph role="paragraph" id="par_id3154942" l10n="U"
xml-lang="en-US">$[officename] Calc lets you drag-and-drop tables from
databases, or lets you use a spreadsheet as a data source for creating form
letters in $[officename] Writer.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3145800" l10n="U"
xml-lang="en-US">Arranging Data</paragraph>
+<paragraph role="paragraph" id="par_id3154490" l10n="U" xml-lang="en-US">With
a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain
data ranges, or to format ranges according to special conditions, or to quickly
calculate subtotals and totals.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3155601" l10n="U"
xml-lang="en-US">Dynamic Charts</paragraph>
+<paragraph role="paragraph" id="par_id3149121" l10n="U"
xml-lang="en-US">$[officename] Calc lets you present spreadsheet data in
dynamic charts that update automatically when the data changes.</paragraph>
+<paragraph role="heading" level="2" id="hd_id3153707" l10n="U"
xml-lang="en-US">Opening and Saving Microsoft Files</paragraph>
+<paragraph xml-lang="en-US" role="paragraph" id="par_id3157867" l10n="U">Use
the $[officename] filters to convert Excel files, or to open and save in a
variety of other <link href="text/shared/00/00000020.xhp"
name="formats">formats</link>.</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/04100000.xhp
b/main/helpcontent2/source/text/shared/01/04100000.xhp
index c08161100d..eab27f7728 100644
--- a/main/helpcontent2/source/text/shared/01/04100000.xhp
+++ b/main/helpcontent2/source/text/shared/01/04100000.xhp
@@ -33,27 +33,27 @@
<bookmark xml-lang="en-US" branch="hid/.uno:InsertSymbol" id="bm_id3153391"
localize="false"/>
<!-- removed HID SID_BULLET -->
<bookmark xml-lang="en-US" branch="hid/.uno:Bullet" id="bm_id3146902"
localize="false"/>
-<paragraph role="heading" id="hd_id3152937" xml-lang="en-US" level="1"
l10n="U" oldref="1">Special Character</paragraph>
-<paragraph role="paragraph" id="par_id3150838" xml-lang="en-US" l10n="CHG"
oldref="2"><variable id="sonder"><ahelp hid=".uno:Bullet">Inserts special
characters from the installed fonts.</ahelp>
+<paragraph role="heading" id="hd_id3152937" xml-lang="en-US" level="1"
l10n="U">Special Character</paragraph>
+<paragraph role="paragraph" id="par_id3150838" xml-lang="en-US"
l10n="CHG"><variable id="sonder"><ahelp hid=".uno:Bullet">Inserts special
characters from the installed fonts.</ahelp>
</variable></paragraph>
<section id="howtoget">
<embed href="text/shared/00/00000404.xhp#sonder"/>
</section>
-<paragraph role="paragraph" id="par_id3152372" xml-lang="en-US" l10n="U"
oldref="11">When you click a character in the <emph>Special Characters</emph>
dialog, a preview and the corresponding numerical code for the character is
displayed.</paragraph>
+<paragraph role="paragraph" id="par_id3152372" xml-lang="en-US" l10n="U">When
you click a character in the <emph>Special Characters</emph> dialog, a preview
and the corresponding numerical code for the character is displayed.</paragraph>
<bookmark xml-lang="en-US" branch="hid/cui:ListBox:RID_SVXDLG_CHARMAP:LB_FONT"
id="bm_id3153910" localize="false"/>
-<paragraph role="heading" id="hd_id3151315" xml-lang="en-US" level="2"
l10n="U" oldref="3">Font</paragraph>
-<paragraph role="paragraph" id="par_id3152924" xml-lang="en-US" l10n="U"
oldref="4"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_CHARMAP:LB_FONT">Select a font to
display the special characters that are associated with it.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151315" xml-lang="en-US" level="2"
l10n="U">Font</paragraph>
+<paragraph role="paragraph" id="par_id3152924" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXDLG_CHARMAP:LB_FONT">Select a font to
display the special characters that are associated with it.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:ListBox:RID_SVXDLG_CHARMAP:LB_SUBSET" id="bm_id3147292"
localize="false"/>
-<paragraph role="heading" id="hd_id3155555" xml-lang="en-US" level="2"
l10n="U" oldref="19">Subset</paragraph>
-<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U"
oldref="20"><ahelp hid="SVX_LISTBOX_RID_SVXDLG_CHARMAP_LB_SUBSET">Select a
Unicode category for the current font.</ahelp> The special characters for the
selected Unicode category are displayed in the character table.</paragraph>
+<paragraph role="heading" id="hd_id3155555" xml-lang="en-US" level="2"
l10n="U">Subset</paragraph>
+<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US"
l10n="U"><ahelp hid="SVX_LISTBOX_RID_SVXDLG_CHARMAP_LB_SUBSET">Select a Unicode
category for the current font.</ahelp> The special characters for the selected
Unicode category are displayed in the character table.</paragraph>
<bookmark xml-lang="en-US" branch="hid/CUI_HID_CHARMAP_CTL_SHOWSET"
id="bm_id3147576" localize="false"/>
-<paragraph role="heading" id="hd_id3145071" xml-lang="en-US" level="2"
l10n="U" oldref="5">Character Table</paragraph>
-<paragraph role="paragraph" id="par_id3154288" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid="HID_CHARMAP_CTL_SHOWSET">Click the special character(s)
that you want to insert, and then click <emph>OK</emph>.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3154317" xml-lang="en-US" level="2"
l10n="U" oldref="7">Characters</paragraph>
-<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US" l10n="U"
oldref="8">Displays the special characters that you have selected.</paragraph>
+<paragraph role="heading" id="hd_id3145071" xml-lang="en-US" level="2"
l10n="U">Character Table</paragraph>
+<paragraph role="paragraph" id="par_id3154288" xml-lang="en-US"
l10n="U"><ahelp hid="HID_CHARMAP_CTL_SHOWSET">Click the special character(s)
that you want to insert, and then click <emph>OK</emph>.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154317" xml-lang="en-US" level="2"
l10n="U">Characters</paragraph>
+<paragraph role="paragraph" id="par_id3152551" xml-lang="en-US"
l10n="U">Displays the special characters that you have selected.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:PushButton:RID_SVXDLG_CHARMAP:BTN_DELETE" id="bm_id3147089"
localize="false"/>
-<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2"
l10n="U" oldref="12">Delete</paragraph>
-<paragraph role="paragraph" id="par_id3147653" xml-lang="en-US" l10n="U"
oldref="13"><ahelp hid="SVX:PUSHBUTTON:RID_SVXDLG_CHARMAP:BTN_DELETE">Clears
the current selection of special characters that you want to
insert.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2"
l10n="U">Delete</paragraph>
+<paragraph role="paragraph" id="par_id3147653" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:PUSHBUTTON:RID_SVXDLG_CHARMAP:BTN_DELETE">Clears the
current selection of special characters that you want to
insert.</ahelp></paragraph>
<section id="relatedtopics">
<embed href="text/shared/guide/insert_specialchar.xhp#insert_specialchar"/>
</section>
diff --git a/main/helpcontent2/source/text/shared/02/09070400.xhp
b/main/helpcontent2/source/text/shared/02/09070400.xhp
index 1eca6c4bfa..f129b60db2 100644
--- a/main/helpcontent2/source/text/shared/02/09070400.xhp
+++ b/main/helpcontent2/source/text/shared/02/09070400.xhp
@@ -31,29 +31,29 @@
<body>
<section id="neuesdokument">
<bookmark xml-lang="en-US" branch="hid/CUI_HID_HYPERLINK_NEWDOCUMENT"
id="bm_id3159224" localize="false"/>
-<paragraph role="heading" id="hd_id3154873" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/shared/02/09070400.xhp" name="New
Document">New Document</link></paragraph>
-<paragraph role="paragraph" id="par_id3150445" xml-lang="en-US" l10n="U"
oldref="2">Use the <emph>New Document</emph> tab from the <link
href="text/shared/02/09070000.xhp" name="Hyperlink dialog">Hyperlink
dialog</link> to set up a hyperlink to a new document and create the new
document simultaneously.</paragraph>
+<paragraph role="heading" id="hd_id3154873" xml-lang="en-US" level="1"
l10n="U"><link href="text/shared/02/09070400.xhp" name="New Document">New
Document</link></paragraph>
+<paragraph role="paragraph" id="par_id3150445" xml-lang="en-US" l10n="U">Use
the <emph>New Document</emph> tab from the <link
href="text/shared/02/09070000.xhp" name="Hyperlink dialog">Hyperlink
dialog</link> to set up a hyperlink to a new document and create the new
document simultaneously.</paragraph>
</section>
<section id="howtoget">
<embed href="text/shared/00/00000403.xhp#hypdianeudok"/>
</section>
-<paragraph role="heading" id="hd_id3152594" xml-lang="en-US" level="2"
l10n="U" oldref="3">New Document</paragraph>
-<paragraph role="paragraph" id="par_id3157896" xml-lang="en-US" l10n="U"
oldref="4">Specifies the name, path and type of the new document in this
area.</paragraph>
+<paragraph role="heading" id="hd_id3152594" xml-lang="en-US" level="2"
l10n="U">New Document</paragraph>
+<paragraph role="paragraph" id="par_id3157896" xml-lang="en-US"
l10n="U">Specifies the name, path and type of the new document in this
area.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW"
id="bm_id3153394" localize="false"/>
-<paragraph role="heading" id="hd_id3151226" xml-lang="en-US" level="3"
l10n="U" oldref="5">Edit now</paragraph>
-<paragraph role="paragraph" id="par_id3154751" xml-lang="en-US" l10n="U"
oldref="6"><ahelp
hid="SVX:RADIOBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW">Specifies
that the new document is created and immediately opened for
editing.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151226" xml-lang="en-US" level="3"
l10n="U">Edit now</paragraph>
+<paragraph role="paragraph" id="par_id3154751" xml-lang="en-US"
l10n="U"><ahelp
hid="SVX:RADIOBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW">Specifies
that the new document is created and immediately opened for
editing.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER"
id="bm_id3153683" localize="false"/>
-<paragraph role="heading" id="hd_id3145313" xml-lang="en-US" level="3"
l10n="U" oldref="7">Edit later</paragraph>
-<paragraph role="paragraph" id="par_id3153577" xml-lang="en-US" l10n="U"
oldref="8"><ahelp
hid="SVX:RADIOBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER">Specifies
that the document is created but it is not immediately
opened.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145313" xml-lang="en-US" level="3"
l10n="U">Edit later</paragraph>
+<paragraph role="paragraph" id="par_id3153577" xml-lang="en-US"
l10n="U"><ahelp
hid="SVX:RADIOBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER">Specifies
that the document is created but it is not immediately
opened.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_PATH_NEWDOC"
id="bm_id3149182" localize="false"/>
-<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="3"
l10n="U" oldref="9">File</paragraph>
+<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="3"
l10n="U">File</paragraph>
<paragraph role="paragraph" id="par_id8894009" xml-lang="en-US"
l10n="NEW"><ahelp hid=".">Enter a URL for the file that you want to open when
you click the hyperlink.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE"
id="bm_id3166460" localize="false"/>
-<paragraph role="heading" id="hd_id3145072" xml-lang="en-US" level="3"
l10n="U" oldref="10">Select Path</paragraph>
-<paragraph role="paragraph" id="par_id3147653" xml-lang="en-US" l10n="U"
oldref="11"><ahelp
hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE">Opens the
<emph>Select Path</emph> dialog, where you can select a
path.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145072" xml-lang="en-US" level="3"
l10n="U">Select Path</paragraph>
+<paragraph role="paragraph" id="par_id3147653" xml-lang="en-US"
l10n="U"><ahelp
hid="SVX:IMAGEBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE">Opens the
<emph>Select Path</emph> dialog, where you can select a
path.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES"
id="bm_id3153698" localize="false"/>
-<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3"
l10n="U" oldref="12">File type</paragraph>
-<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U"
oldref="13"><ahelp
hid="SVX:LISTBOX:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES">Specifies
the file type for the new document.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3"
l10n="U">File type</paragraph>
+<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US"
l10n="U"><ahelp
hid="SVX:LISTBOX:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES">Specifies
the file type for the new document.</ahelp></paragraph>
<embed href="text/shared/02/09070100.xhp#weitere"/>
</body>
</helpdocument>
diff --git
a/main/helpcontent2/source/text/shared/explorer/database/menuedit.xhp
b/main/helpcontent2/source/text/shared/explorer/database/menuedit.xhp
index a2fc4f5b54..fc99333290 100644
--- a/main/helpcontent2/source/text/shared/explorer/database/menuedit.xhp
+++ b/main/helpcontent2/source/text/shared/explorer/database/menuedit.xhp
@@ -44,13 +44,13 @@
<bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_BROWSER_TABLE_EDIT"
id="bm_id3152996" localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:DBEdit" id="bm_id2726523"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:DBEdit" id="bm_id2447279"
localize="false"/>
-<paragraph role="heading" id="hd_id3153683" xml-lang="en-US" level="2"
l10n="CHG" oldref="27">Edit</paragraph>
-<paragraph role="paragraph" id="par_id3147209" xml-lang="en-US" l10n="CHG"
oldref="28"><ahelp hid=".">Opens a window where you can edit the selected
table, query, form, or report.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153683" xml-lang="en-US" level="2"
l10n="CHG">Edit</paragraph>
+<paragraph role="paragraph" id="par_id3147209" xml-lang="en-US"
l10n="CHG"><ahelp hid=".">Opens a window where you can edit the selected table,
query, form, or report.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_BROWSER_TABLE_DELETE"
id="bm_id3153824" localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:DBDelete" id="bm_id4481643"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:DBDelete" id="bm_id1720023"
localize="false"/>
-<paragraph role="heading" id="hd_id3145315" xml-lang="en-US" level="2"
l10n="U" oldref="29">Delete</paragraph>
-<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="CHG"
oldref="30"><ahelp hid="HID_BROWSER_TABLE_DELETE">Deletes the selected table,
query, form, or report.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145315" xml-lang="en-US" level="2"
l10n="U">Delete</paragraph>
+<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US"
l10n="CHG"><ahelp hid="HID_BROWSER_TABLE_DELETE">Deletes the selected table,
query, form, or report.</ahelp></paragraph>
</section>
<bookmark xml-lang="en-US" branch="hid/.uno:DBRename" id="bm_id2862636"
localize="false"/>
<paragraph role="heading" id="par_idN1057C" xml-lang="en-US" level="2"
l10n="NEW">Rename</paragraph>
diff --git a/main/helpcontent2/source/text/shared/guide/autohide.xhp
b/main/helpcontent2/source/text/shared/guide/autohide.xhp
index 62e5e2a151..1b1d2aa4e8 100644
--- a/main/helpcontent2/source/text/shared/guide/autohide.xhp
+++ b/main/helpcontent2/source/text/shared/guide/autohide.xhp
@@ -40,31 +40,30 @@
<bookmark_value>showing;docked windows</bookmark_value>
<bookmark_value>hiding;docked windows</bookmark_value>
</bookmark>
-<paragraph role="paragraph" id="par_id3150713" xml-lang="en-US" l10n="E"
oldref="53" localize="false"/>
-<paragraph role="heading" id="hd_id3145346" xml-lang="en-US" level="1"
l10n="U" oldref="71"><variable id="autohide"><link
href="text/shared/guide/autohide.xhp" name="Showing, Docking and Hiding
Windows">Showing, Docking and Hiding Windows</link>
+<paragraph role="paragraph" id="par_id3150713" xml-lang="en-US" l10n="E"
localize="false"/>
+<paragraph role="heading" id="hd_id3145346" xml-lang="en-US" level="1"
l10n="U"><variable id="autohide"><link href="text/shared/guide/autohide.xhp"
name="Showing, Docking and Hiding Windows">Showing, Docking and Hiding
Windows</link>
</variable></paragraph>
-<paragraph role="paragraph" id="par_id3147242" xml-lang="en-US" l10n="CHG"
oldref="52">Some windows in $[officename] are dockable, such as the Navigator
window. You can move these windows, re-size them or dock them to an
edge.</paragraph>
-<paragraph role="heading" id="hd_id3154750" xml-lang="en-US" level="2"
l10n="U" oldref="65">Docking and Undocking Windows</paragraph>
-<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U"
oldref="66">To dock a window, do one of the following:</paragraph>
+<paragraph role="paragraph" id="par_id3147242" xml-lang="en-US"
l10n="CHG">Some windows in $[officename] are dockable, such as the Navigator
window. You can move these windows, re-size them or dock them to an
edge.</paragraph>
+<paragraph role="heading" id="hd_id3154750" xml-lang="en-US" level="2"
l10n="U">Docking and Undocking Windows</paragraph>
+<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U">To
dock a window, do one of the following:</paragraph>
<list type="unordered">
<listitem>
-<paragraph role="listitem" id="par_id3150503" xml-lang="en-US" l10n="CHG"
oldref="67">Drag the window by its title bar to the side, or</paragraph>
+<paragraph role="listitem" id="par_id3150503" xml-lang="en-US" l10n="CHG">Drag
the window by its title bar to the side, or</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3150275" xml-lang="en-US" l10n="CHG"
oldref="68">Double-click inside a vacant area of the window while holding down
the Ctrl key. In the Styles and Formatting window, double-click a gray part of
the window next to the icons while holding down the <switchinline
select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl
</defaultinline></switchinline>key. Alternatively, press <item
type="keycode"><switchinline select="sys"><caseinlin [...]
+<paragraph role="listitem" id="par_id3150275" xml-lang="en-US"
l10n="CHG">Double-click inside a vacant area of the window while holding down
the Ctrl key. In the Styles and Formatting window, double-click a gray part of
the window next to the icons while holding down the <switchinline
select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl
</defaultinline></switchinline>key. Alternatively, press <item
type="keycode"><switchinline select="sys"><caseinline select="MA [...]
</listitem>
</list>
-<paragraph role="paragraph" id="par_id3147335" xml-lang="en-US" l10n="U"
oldref="69">These methods can also be used to undock a currently docked
window.</paragraph>
-<paragraph role="heading" id="hd_id3149796" xml-lang="en-US" level="2"
l10n="U" oldref="70">Showing and Hiding Docked Windows</paragraph>
+<paragraph role="paragraph" id="par_id3147335" xml-lang="en-US" l10n="U">These
methods can also be used to undock a currently docked window.</paragraph>
+<paragraph role="heading" id="hd_id3149796" xml-lang="en-US" level="2"
l10n="U">Showing and Hiding Docked Windows</paragraph>
<table id="tbl_id3147303">
<tablerow>
<tablecell colspan="" rowspan="">
<paragraph role="paragraph" id="par_id3149045" xml-lang="en-US" l10n="E">
-<image id="img_id3149655" src="res/helpimg/ein.png" width="0.1043inch"
height="0.4272inch"><alt id="alt_id3149655" xml-lang="en-US">Icon</alt>
-</image></paragraph>
+<image id="img_id3149655" src="res/helpimg/ein.png" width="0.1043inch"
height="0.4272inch"><alt id="alt_id3149655"
xml-lang="en-US">Icon</alt></image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3152921" xml-lang="en-US" l10n="CHG"
oldref="64">Click the button on the edge of the docked window to show or hide
the docked window. The AutoHide function allows you to temporarily show a
hidden window by clicking on its edge. When you click in the document, the
docked window hides again.</paragraph>
+<paragraph role="paragraph" id="par_id3152921" xml-lang="en-US"
l10n="CHG">Click the button on the edge of the docked window to show or hide
the docked window. The AutoHide function allows you to temporarily show a
hidden window by clicking on its edge. When you click in the document, the
docked window hides again.</paragraph>
</tablecell>
</tablerow>
</table>
diff --git a/main/helpcontent2/source/text/shared/guide/data_enter_sql.xhp
b/main/helpcontent2/source/text/shared/guide/data_enter_sql.xhp
index 44f0395862..e5744e4176 100644
--- a/main/helpcontent2/source/text/shared/guide/data_enter_sql.xhp
+++ b/main/helpcontent2/source/text/shared/guide/data_enter_sql.xhp
@@ -35,11 +35,10 @@
<bookmark_value>commands;SQL</bookmark_value>
<bookmark_value>executing SQL commands</bookmark_value>
</bookmark><comment>mw changed "SQL;executing commands"</comment><comment>mw
made "executing;" a one level entry</comment>
-<paragraph xml-lang="en-US" id="hd_id3152801" role="heading" level="1" l10n="U"
-oldref="67"><variable id="data_enter_sql"><link
href="text/shared/guide/data_enter_sql.xhp" name="Executing SQL
Commands">Executing SQL Commands</link>
+<paragraph xml-lang="en-US" id="hd_id3152801" role="heading" level="1"
l10n="U"><variable id="data_enter_sql"><link
href="text/shared/guide/data_enter_sql.xhp" name="Executing SQL
Commands">Executing SQL Commands</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" l10n="U"
oldref="68">With the help of SQL commands you can control the database
directly, and can also create and edit tables and queries.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153562" role="note" l10n="U"
oldref="72">Not all database types support all SQL instructions. If necessary,
find out which SQL commands are supported by your database system.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" l10n="U">With
the help of SQL commands you can control the database directly, and can also
create and edit tables and queries.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153562" role="note" l10n="U">Not all
database types support all SQL instructions. If necessary, find out which SQL
commands are supported by your database system.</paragraph>
<paragraph xml-lang="en-US" id="hd_id9577929" role="heading" level="2"
l10n="NEW">To execute an SQL statement directly</paragraph>
<list type="ordered">
<listitem>
@@ -49,29 +48,29 @@ oldref="67"><variable id="data_enter_sql"><link
href="text/shared/guide/data_ent
<paragraph xml-lang="en-US" id="par_id9448530" role="paragraph"
l10n="NEW">Choose <emph>Tools - SQL</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3151176" role="paragraph" l10n="U"
oldref="91">Click the <emph>Create Query in SQL View</emph> icon
+<paragraph xml-lang="en-US" id="par_id3151176" role="paragraph" l10n="U">Click
the <emph>Create Query in SQL View</emph> icon
<image id="img_id3154071" src="res/commandimagelist/sc_dbnewquerysql.png"
width="0.1862in" height="0.1862in"><alt xml-lang="en-US"
id="alt_id3154071">Icon</alt>
</image> or</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145786" role="paragraph" l10n="U"
oldref="92">Select an existing query from the list and click the
<emph>Edit</emph> icon
+<paragraph xml-lang="en-US" id="par_id3145786" role="paragraph"
l10n="U">Select an existing query from the list and click the <emph>Edit</emph>
icon
<image id="img_id3156212" src="res/commandimagelist/sc_dbqueryedit.png"
width="0.2228in" height="0.2228in"><alt xml-lang="en-US"
id="alt_id3156212">Icon</alt>
</image>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3083443" role="paragraph" l10n="U"
oldref="94">In the <emph>Query</emph> window, choose <emph>View - Switch Design
View On/Off</emph>. Edit the SQL command.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3083443" role="paragraph" l10n="U">In
the <emph>Query</emph> window, choose <emph>View - Switch Design View
On/Off</emph>. Edit the SQL command.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152460" role="paragraph" l10n="U"
oldref="96">Click the <emph>Run</emph> icon
+<paragraph xml-lang="en-US" id="par_id3152460" role="paragraph" l10n="U">Click
the <emph>Run</emph> icon
<image id="img_id3152886" src="res/commandimagelist/sc_sbaexecutesql.png"
width="0.2228in" height="0.2228in"><alt xml-lang="en-US"
id="alt_id3152886">Icon</alt>
</image>. The result of the query is displayed in the upper window.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149298" role="paragraph" l10n="U"
oldref="98">Click the <emph>Save</emph> or <emph>Save As</emph> icon
+<paragraph xml-lang="en-US" id="par_id3149298" role="paragraph" l10n="U">Click
the <emph>Save</emph> or <emph>Save As</emph> icon
<image id="img_id3153159" src="res/commandimagelist/sc_save.png"
width="0.2228in" height="0.2228in"><alt xml-lang="en-US"
id="alt_id3153159">Icon</alt>
</image> to save the query.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
-<paragraph xml-lang="en-US" id="par_id3153223" role="paragraph" l10n="U"
oldref="105"><link href="text/shared/explorer/database/02010100.xhp"
name="Query Design">Query Design</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3153223" role="paragraph" l10n="U"><link
href="text/shared/explorer/database/02010100.xhp" name="Query Design">Query
Design</link></paragraph>
<embed href="text/shared/guide/database_main.xhp#database_main"/>
</section>
</body>
diff --git a/main/helpcontent2/source/text/shared/main0204.xhp
b/main/helpcontent2/source/text/shared/main0204.xhp
index be2e8ade40..eeef1b9c0f 100644
--- a/main/helpcontent2/source/text/shared/main0204.xhp
+++ b/main/helpcontent2/source/text/shared/main0204.xhp
@@ -44,7 +44,7 @@
<embed href="text/shared/02/03130000.xhp#syumrandung"/>
<paragraph role="heading" id="hd_id319945759" xml-lang="en-US" level="2"
l10n="NEW"><link href="text/shared/01/05210100.xhp" name="Area Style /
Filling">Area Style / Filling</link></paragraph>
<embed href="text/shared/01/05210100.xhp#sytext"/>
-<paragraph role="heading" id="hd_id3147592" xml-lang="en-US" level="2"
l10n="U" oldref="6"><link href="text/shared/01/05100100.xhp" name="Merge
Cells">Merge Cells</link></paragraph>
+<paragraph role="heading" id="hd_id3147592" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/01/05100100.xhp" name="Merge Cells">Merge
Cells</link></paragraph>
<embed href="text/shared/01/05100100.xhp#verbindentext"/>
<embed href="text/shared/01/05100100.xhp#syzellenverbinden"/>
<embed href="text/shared/01/05100200.xhp#zellenteilen"/>
@@ -58,10 +58,10 @@
<embed href="text/swriter/02/04090000.xhp#syzeileeinfuegen"/>
<embed href="text/swriter/02/04100000.xhp#spalteeinfuegen"/>
<embed href="text/swriter/02/04100000.xhp#syspalteeinfuegen"/>
-<paragraph role="heading" id="hd_id3147820" xml-lang="en-US" level="2"
l10n="U" oldref="9"><link href="text/swriter/01/05110500.xhp" name="Delete
Row">Delete Row</link></paragraph>
+<paragraph role="heading" id="hd_id3147820" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/05110500.xhp" name="Delete Row">Delete
Row</link></paragraph>
<embed href="text/swriter/01/05110500.xhp#loeschentext"/>
<embed href="text/swriter/00/00000405.xhp#syzeileloeschen"/>
-<paragraph role="heading" id="hd_id3147231" xml-lang="en-US" level="2"
l10n="U" oldref="10"><link href="text/swriter/01/05120500.xhp" name="Delete
Column">Delete Column</link></paragraph>
+<paragraph role="heading" id="hd_id3147231" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/05120500.xhp" name="Delete Column">Delete
Column</link></paragraph>
<embed href="text/swriter/01/05120500.xhp#loeschentext"/>
<embed href="text/swriter/00/00000405.xhp#syspalteloeschen"/>
<comment>following only optional, ext.help is available: Select Table Select
Column Select Row</comment>
diff --git a/main/helpcontent2/source/text/swriter/00/00000403.xhp
b/main/helpcontent2/source/text/swriter/00/00000403.xhp
index 5b8dca5f68..bdbf1c9f8b 100644
--- a/main/helpcontent2/source/text/swriter/00/00000403.xhp
+++ b/main/helpcontent2/source/text/swriter/00/00000403.xhp
@@ -29,67 +29,65 @@
</topic>
</meta>
<body>
-<paragraph xml-lang="en-US" id="hd_id3154656" role="heading" level="1"
l10n="U" oldref="1">View Menu</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149502" role="paragraph" l10n="U"
oldref="2"><variable id="lineal">Choose <emph>View - Ruler</emph>
+<paragraph xml-lang="en-US" id="hd_id3154656" role="heading" level="1"
l10n="U">View Menu</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149502" role="paragraph"
l10n="U"><variable id="lineal">Choose <emph>View - Ruler</emph>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3148871" role="paragraph" l10n="U"
oldref="3"><variable id="textbegrenzungen">Choose <emph>View - Text
Boundaries</emph>
+<paragraph xml-lang="en-US" id="par_id3148871" role="paragraph"
l10n="U"><variable id="textbegrenzungen">Choose <emph>View - Text
Boundaries</emph>
</variable></paragraph>
<section id="markierungen">
-<paragraph xml-lang="en-US" id="par_id3153248" role="paragraph" l10n="U"
oldref="4">Choose <emph>View - Field Shadings</emph>
+<paragraph xml-lang="en-US" id="par_id3153248" role="paragraph"
l10n="U">Choose <emph>View - Field Shadings</emph>
</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154763" role="paragraph" l10n="U"
oldref="16"><switchinline select="sys"><caseinline select="MAC">Command
+<paragraph xml-lang="en-US" id="par_id3154763" role="paragraph"
l10n="U"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8</paragraph>
</section>
<section id="feldbefehle">
-<paragraph xml-lang="en-US" id="par_id3149052" role="paragraph" l10n="CHG"
oldref="5">Choose <emph>View - Field Names</emph>
+<paragraph xml-lang="en-US" id="par_id3149052" role="paragraph"
l10n="CHG">Choose <emph>View - Field Names</emph>
</paragraph>
-<paragraph xml-lang="en-US" id="par_id3151387" role="paragraph" l10n="U"
oldref="17"><switchinline select="sys"><caseinline select="MAC">Command
+<paragraph xml-lang="en-US" id="par_id3151387" role="paragraph"
l10n="U"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9</paragraph>
</section>
<section id="steuerzeichen">
-<paragraph xml-lang="en-US" id="par_id3155625" role="paragraph" l10n="U"
oldref="6">Choose <emph>View - Nonprinting Characters</emph>
+<paragraph xml-lang="en-US" id="par_id3155625" role="paragraph"
l10n="U">Choose <emph>View - Nonprinting Characters</emph>
</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145823" role="paragraph" l10n="U"
oldref="18"><switchinline select="sys"><caseinline select="MAC">Command
+<paragraph xml-lang="en-US" id="par_id3145823" role="paragraph"
l10n="U"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F10</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154508" role="paragraph" l10n="CHG"
oldref="7">On Standard bar, click</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154508" role="paragraph" l10n="CHG">On
Standard bar, click</paragraph>
<section id="systeuerzeichen">
<table id="tbl_id3153732">
<tablerow>
<tablecell>
<paragraph xml-lang="en-US" id="par_id3150932" role="paragraph" l10n="E">
-<image id="img_id3150502" src="res/commandimagelist/sc_controlcodes.png"
width="0.1665in" height="0.1665in"><alt xml-lang="en-US"
id="alt_id3150502">Icon</alt>
-</image></paragraph>
+<image id="img_id3150502" src="res/commandimagelist/sc_controlcodes.png"
width="0.1665in" height="0.1665in"><alt xml-lang="en-US"
id="alt_id3150502">Icon</alt></image></paragraph>
</tablecell>
<tablecell>
-<paragraph xml-lang="en-US" id="par_id3153716" role="paragraph" l10n="U"
oldref="8">Nonprinting Characters</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153716" role="paragraph"
l10n="U">Nonprinting Characters</paragraph>
</tablecell>
</tablerow>
</table>
</section>
</section>
<section id="webbrowser">
-<paragraph xml-lang="en-US" id="par_id3149712" role="paragraph" l10n="CHG"
oldref="9">Choose <emph>View - Web Layout</emph>
+<paragraph xml-lang="en-US" id="par_id3149712" role="paragraph"
l10n="CHG">Choose <emph>View - Web Layout</emph>
</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154640" role="paragraph" l10n="CHG"
oldref="10">On Tools bar, enable</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154640" role="paragraph" l10n="CHG">On
Tools bar, enable</paragraph>
<section id="sybrowser">
<table id="tbl_id3151264">
<tablerow>
<tablecell>
<paragraph xml-lang="en-US" id="par_id3150765" role="paragraph" l10n="E">
-<image id="img_id3147572" src="res/commandimagelist/sc_browseview.png"
width="0.1665in" height="0.1665in"><alt xml-lang="en-US"
id="alt_id3147572">Icon</alt>
-</image></paragraph>
+<image id="img_id3147572" src="res/commandimagelist/sc_browseview.png"
width="0.1665in" height="0.1665in"><alt xml-lang="en-US"
id="alt_id3147572">Icon</alt></image></paragraph>
</tablecell>
<tablecell>
-<paragraph xml-lang="en-US" id="par_id3149291" role="paragraph" l10n="CHG"
oldref="11">Web Layout</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149291" role="paragraph" l10n="CHG">Web
Layout</paragraph>
</tablecell>
</tablerow>
</table>
</section>
</section>
<section id="drucklayout">
-<paragraph xml-lang="en-US" id="par_id3151176" role="paragraph" l10n="U"
oldref="12">Choose <emph>View - Print Layout</emph><comment>removed table with
icon (was copy/paste error)</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3151176" role="paragraph"
l10n="U">Choose <emph>View - Print Layout</emph><comment>removed table with
icon (was copy/paste error)</comment></paragraph>
</section>
-<paragraph xml-lang="en-US" id="par_id3149808" role="paragraph" l10n="U"
oldref="15"><variable id="versteckteabs">Choose <emph>View - Hidden
Paragraphs</emph>
+<paragraph xml-lang="en-US" id="par_id3149808" role="paragraph"
l10n="U"><variable id="versteckteabs">Choose <emph>View - Hidden
Paragraphs</emph>
</variable></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/01/04070000.xhp
b/main/helpcontent2/source/text/swriter/01/04070000.xhp
index 51b62d1025..f63e85eace 100644
--- a/main/helpcontent2/source/text/swriter/01/04070000.xhp
+++ b/main/helpcontent2/source/text/swriter/01/04070000.xhp
@@ -36,8 +36,8 @@
</bookmark><comment>MW made "envelopes;" a one level entry</comment>
<bookmark xml-lang="en-US" branch="hid/.uno:InsertEnvelope" id="bm_id3025884"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:InsertEnvelope" id="bm_id3148773"
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145245" role="heading" level="1"
l10n="U" oldref="1"><link href="text/swriter/01/04070000.xhp"
name="Envelope">Envelope</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149289" role="paragraph" l10n="CHG"
oldref="2"><variable id="briefum"><ahelp hid=".uno:InsertEnvelope">Creates an
envelope.</ahelp> On three tab pages, you can specify the addressee and sender,
the position and format for both addresses, the size of the envelope, and the
envelope orientation.
+<paragraph xml-lang="en-US" id="hd_id3145245" role="heading" level="1"
l10n="U"><link href="text/swriter/01/04070000.xhp"
name="Envelope">Envelope</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149289" role="paragraph"
l10n="CHG"><variable id="briefum"><ahelp hid=".uno:InsertEnvelope">Creates an
envelope.</ahelp> On three tab pages, you can specify the addressee and sender,
the position and format for both addresses, the size of the envelope, and the
envelope orientation.
</variable></paragraph>
<section id="howtoget">
<embed href="text/swriter/00/00000404.xhp#briefumschlag"/>
@@ -46,11 +46,11 @@
<embed href="text/swriter/01/04070200.xhp#format"/>
<embed href="text/swriter/01/04070300.xhp#drucker"/>
<bookmark xml-lang="en-US" branch="hid/SW_HID_ENVELOP_PRINT" id="bm_id3154574"
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153540" role="heading" level="2"
l10n="U" oldref="4">New doc.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154473" role="paragraph" l10n="U"
oldref="5"><ahelp hid="HID_ENVELOP_PRINT">Creates a new document and inserts
the envelope.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153540" role="heading" level="2"
l10n="U">New doc.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154473" role="paragraph"
l10n="U"><ahelp hid="HID_ENVELOP_PRINT">Creates a new document and inserts the
envelope.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/SW_HID_ENVELOP_INSERT"
id="bm_id3151314" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3152959" role="heading" level="2"
l10n="U" oldref="6">Insert</paragraph>
-<paragraph xml-lang="en-US" id="par_id3151320" role="paragraph" l10n="CHG"
oldref="7"><ahelp hid="HID_ENVELOP_INSERT">Inserts the envelope before the
current page in the document.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152959" role="heading" level="2"
l10n="U">Insert</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151320" role="paragraph"
l10n="CHG"><ahelp hid="HID_ENVELOP_INSERT">Inserts the envelope before the
current page in the document.</ahelp></paragraph>
<embed href="text/shared/00/00000001.xhp#zurueck"/>
<paragraph xml-lang="en-US" id="hd_id8208563" role="heading" level="2"
l10n="NEW">To delete an envelope from a document</paragraph>
<list type="ordered">
diff --git a/main/helpcontent2/source/text/swriter/main0102.xhp
b/main/helpcontent2/source/text/swriter/main0102.xhp
index 934292b2b5..e186c28ef8 100644
--- a/main/helpcontent2/source/text/swriter/main0102.xhp
+++ b/main/helpcontent2/source/text/swriter/main0102.xhp
@@ -31,8 +31,8 @@
<body>
<section id="bearbeiten">
<bookmark xml-lang="en-US" branch="hid/.uno:EditMenu" id="bm_id8177739"
localize="false"/>
-<paragraph role="heading" id="hd_id3149610" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/swriter/main0102.xhp"
name="Edit">Edit</link></paragraph>
-<paragraph role="paragraph" id="par_id3149626" xml-lang="en-US" l10n="CHG"
oldref="2"><ahelp hid=".">This menu contains commands for editing the contents
of the current document.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149610" xml-lang="en-US" level="1"
l10n="U"><link href="text/swriter/main0102.xhp"
name="Edit">Edit</link></paragraph>
+<paragraph role="paragraph" id="par_id3149626" xml-lang="en-US"
l10n="CHG"><ahelp hid=".">This menu contains commands for editing the contents
of the current document.</ahelp></paragraph>
</section>
<embed href="text/shared/01/02010000.xhp#rueckgaengig"/>
<embed href="text/shared/01/02020000.xhp#wiederholen"/>
@@ -40,35 +40,35 @@
<embed href="text/shared/01/02040000.xhp#ausschneiden"/>
<embed href="text/shared/01/02050000.xhp#kopieren"/>
<embed href="text/shared/01/02060000.xhp#einfuegen"/>
-<paragraph role="heading" id="hd_id3147593" xml-lang="en-US" level="2"
l10n="U" oldref="3"><link href="text/shared/01/02070000.xhp" name="Paste
Special">Paste Special</link></paragraph>
+<paragraph role="heading" id="hd_id3147593" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/01/02070000.xhp" name="Paste Special">Paste
Special</link></paragraph>
<embed href="text/shared/01/02070000.xhp#inhalteeinfuegentext"/>
-<paragraph role="heading" id="hd_id3147619" xml-lang="en-US" level="2"
l10n="U" oldref="16"><link href="text/shared/02/07070000.xhp" name="Select
Text">Select Text</link></paragraph>
+<paragraph role="heading" id="hd_id3147619" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/02/07070000.xhp" name="Select Text">Select
Text</link></paragraph>
<embed href="text/shared/02/07070000.xhp#selecttext"/>
<embed href="text/swriter/01/selection_mode.xhp#selection_mode"/>
<embed href="text/shared/01/02090000.xhp#auswaehlen"/>
<embed href="text/shared/01/02230000.xhp#aenderungen"/>
-<paragraph role="heading" id="hd_id3147790" xml-lang="en-US" level="2"
l10n="CHG" oldref="13"><link href="text/shared/01/02240000.xhp" name="Compare
Document">Compare Document</link></paragraph>
+<paragraph role="heading" id="hd_id3147790" xml-lang="en-US" level="2"
l10n="CHG"><link href="text/shared/01/02240000.xhp" name="Compare
Document">Compare Document</link></paragraph>
<embed href="text/shared/01/02240000.xhp#dokver"/>
-<paragraph role="heading" id="hd_id3147816" xml-lang="en-US" level="2"
l10n="U" oldref="4"><link href="text/shared/01/02100000.xhp" name="Find &
Replace">Find & Replace</link></paragraph>
+<paragraph role="heading" id="hd_id3147816" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/01/02100000.xhp" name="Find &
Replace">Find & Replace</link></paragraph>
<embed href="text/shared/01/02100000.xhp#suchenersetzentext"/>
-<paragraph role="heading" id="hd_id3147226" xml-lang="en-US" level="2"
l10n="U" oldref="5"><link href="text/swriter/01/02120000.xhp"
name="AutoText">AutoText</link></paragraph>
+<paragraph role="heading" id="hd_id3147226" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/02120000.xhp"
name="AutoText">AutoText</link></paragraph>
<embed href="text/swriter/01/02120000.xhp#autotexttext"/>
-<paragraph role="heading" id="hd_id3147251" xml-lang="en-US" level="2"
l10n="U" oldref="12"><link href="text/swriter/01/04180400.xhp" name="Exchange
Database">Exchange Database</link></paragraph>
+<paragraph role="heading" id="hd_id3147251" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/04180400.xhp" name="Exchange
Database">Exchange Database</link></paragraph>
<embed href="text/swriter/01/04180400.xhp#datenbankaustext"/>
-<paragraph role="heading" id="hd_id3147276" xml-lang="en-US" level="2"
l10n="U" oldref="6"><link href="text/swriter/01/02140000.xhp"
name="Fields">Fields</link></paragraph>
+<paragraph role="heading" id="hd_id3147276" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/02140000.xhp"
name="Fields">Fields</link></paragraph>
<embed href="text/swriter/01/02140000.xhp#feldbefehltext"/>
-<paragraph role="heading" id="hd_id3147302" xml-lang="en-US" level="2"
l10n="U" oldref="7"><link href="text/swriter/01/02150000.xhp"
name="Footnotes">Footnotes</link></paragraph>
+<paragraph role="heading" id="hd_id3147302" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/02150000.xhp"
name="Footnotes">Footnotes</link></paragraph>
<embed href="text/swriter/01/02150000.xhp#fusstext"/>
-<paragraph role="heading" id="hd_id3147327" xml-lang="en-US" level="2"
l10n="U" oldref="8"><link href="text/swriter/01/02160000.xhp" name="Index
Entry">Index Entry</link></paragraph>
+<paragraph role="heading" id="hd_id3147327" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/02160000.xhp" name="Index Entry">Index
Entry</link></paragraph>
<embed href="text/swriter/01/02160000.xhp#verzeichniseintragtext"/>
-<paragraph role="heading" id="hd_id3147352" xml-lang="en-US" level="2"
l10n="U" oldref="14"><link href="text/swriter/01/02130000.xhp"
name="Bibliography Entry">Bibliography Entry</link></paragraph>
+<paragraph role="heading" id="hd_id3147352" xml-lang="en-US" level="2"
l10n="U"><link href="text/swriter/01/02130000.xhp" name="Bibliography
Entry">Bibliography Entry</link></paragraph>
<embed href="text/swriter/01/02130000.xhp#litvz"/>
-<paragraph role="heading" id="hd_id3147377" xml-lang="en-US" level="2"
l10n="U" oldref="15"><link href="text/shared/02/09070000.xhp"
name="Hyperlink">Hyperlink</link></paragraph>
+<paragraph role="heading" id="hd_id3147377" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/02/09070000.xhp"
name="Hyperlink">Hyperlink</link></paragraph>
<embed href="text/shared/02/09070000.xhp#hyperdiatext"/>
-<paragraph role="heading" id="hd_id3147404" xml-lang="en-US" level="2"
l10n="U" oldref="10"><link href="text/shared/01/02180000.xhp"
name="Links">Links</link></paragraph>
+<paragraph role="heading" id="hd_id3147404" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/01/02180000.xhp"
name="Links">Links</link></paragraph>
<embed href="text/shared/01/02180000.xhp#verknuepfungentext"/>
<embed href="text/shared/01/02190000.xhp#plugin"/>
-<paragraph role="heading" id="hd_id3156150" xml-lang="en-US" level="2"
l10n="U" oldref="11"><link href="text/shared/01/02220000.xhp"
name="ImageMap">ImageMap</link></paragraph>
+<paragraph role="heading" id="hd_id3156150" xml-lang="en-US" level="2"
l10n="U"><link href="text/shared/01/02220000.xhp"
name="ImageMap">ImageMap</link></paragraph>
<embed href="text/shared/01/02220000.xhp#imagemaptext"/>
<embed href="text/shared/01/02200000.xhp#objekt"/>
</body>