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 09c08a22bd Remove 'oldref' entries (work in progress)
09c08a22bd is described below
commit 09c08a22bd1433527e4d4e57152c8496fa8e4db9
Author: mseidel <[email protected]>
AuthorDate: Thu Mar 6 18:41:41 2025 +0100
Remove 'oldref' entries (work in progress)
---
.../source/text/sbasic/shared/03020201.xhp | 76 +++++++++++-----------
.../source/text/shared/01/01010100.xhp | 56 ++++++++--------
.../source/text/shared/guide/gallery_insert.xhp | 44 ++++++-------
.../source/text/shared/guide/import_ms.xhp | 22 +++----
.../source/text/shared/guide/print_blackwhite.xhp | 57 ++++++++--------
.../source/text/shared/optionen/01060300.xhp | 49 +++++++-------
.../source/text/swriter/01/04070200.xhp | 76 +++++++++++-----------
.../source/text/swriter/guide/conditional_text.xhp | 49 +++++++-------
.../source/text/swriter/guide/hidden_text.xhp | 65 +++++++++---------
.../text/swriter/guide/indices_literature.xhp | 53 +++++++--------
10 files changed, 264 insertions(+), 283 deletions(-)
diff --git a/main/helpcontent2/source/text/sbasic/shared/03020201.xhp
b/main/helpcontent2/source/text/sbasic/shared/03020201.xhp
index e5330c2350..8fa560e52a 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03020201.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03020201.xhp
@@ -33,45 +33,43 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3154927">
<bookmark_value>Get statement</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03020201.xhp">Get Statement
[Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U"
oldref="2">Reads a record from a relative file, or a sequence of bytes from a
binary file, into a variable.</paragraph>
+<paragraph role="heading" id="hd_id3154927" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03020201.xhp">Get Statement
[Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U">Reads
a record from a relative file, or a sequence of bytes from a binary file, into
a variable.</paragraph>
</section>
-<paragraph role="paragraph" id="par_id3154346" xml-lang="en-US" l10n="U"
oldref="3">See also: <link href="text/sbasic/shared/03020204.xhp"
name="PUT"><item type="literal">PUT</item></link> Statement</paragraph>
-<paragraph role="heading" id="hd_id3150358" xml-lang="en-US" level="2"
l10n="U" oldref="4">Syntax:</paragraph>
-<paragraph role="code" id="par_id3150792" xml-lang="en-US" l10n="U"
oldref="5">Get [#] FileNumber As Integer, [Position], Variable</paragraph>
-<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2"
l10n="U" oldref="6">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US" l10n="U"
oldref="7">
-<emph>FileNumber:</emph> Any integer expression that determines the file
number.</paragraph>
-<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U"
oldref="8">
-<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph>
is the number of the record that you want to read.</paragraph>
-<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U"
oldref="9">For files opened in Binary mode, <emph>Position</emph> is the byte
position in the file where the reading starts.</paragraph>
-<paragraph role="paragraph" id="par_id3147319" xml-lang="en-US" l10n="U"
oldref="10">If <emph>Position</emph> is omitted, the current position or the
current data record of the file is used.</paragraph>
-<paragraph role="paragraph" id="par_id3149484" xml-lang="en-US" l10n="U"
oldref="11">Variable: Name of the variable to be read. With the exception of
object variables, you can use any variable type.</paragraph>
-<paragraph role="heading" id="hd_id3153144" xml-lang="en-US" level="2"
l10n="U" oldref="12">Example:</paragraph>
-<paragraph role="code" id="par_id3159154" xml-lang="en-US" l10n="U"
oldref="13">Sub ExampleRandomAccess</paragraph>
-<paragraph role="code" id="par_id3153188" xml-lang="en-US" l10n="U"
oldref="14">Dim iNumber As Integer</paragraph>
-<paragraph role="code" id="par_id3155307" xml-lang="en-US" l10n="U"
oldref="15">Dim sText As Variant REM Must be a variant</paragraph>
-<paragraph role="code" id="par_id3152577" xml-lang="en-US" l10n="U"
oldref="16">Dim aFile As String</paragraph>
-<paragraph role="code" id="par_id3153726" xml-lang="en-US" l10n="U"
oldref="17">aFile = "c:\data.txt"</paragraph>
-<paragraph role="code" id="par_id3154490" xml-lang="en-US" l10n="U"
oldref="19">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3150418" xml-lang="en-US" l10n="U"
oldref="20">Open aFile For Random As #iNumber Len=32</paragraph>
-<paragraph role="code" id="par_id3149411" xml-lang="en-US" l10n="U"
oldref="21">Seek #iNumber,1 REM Position at beginning</paragraph>
-<paragraph role="code" id="par_id3153158" xml-lang="en-US" l10n="U"
oldref="22">Put #iNumber,, "This is the first line of text" REM Fill line with
text</paragraph>
-<paragraph role="code" id="par_id3148457" xml-lang="en-US" l10n="U"
oldref="23">Put #iNumber,, "This is the second line of text"</paragraph>
-<paragraph role="code" id="par_id3150715" xml-lang="en-US" l10n="U"
oldref="24">Put #iNumber,, "This is the third line of text"</paragraph>
-<paragraph role="code" id="par_id3153836" xml-lang="en-US" l10n="U"
oldref="25">Seek #iNumber,2</paragraph>
-<paragraph role="code" id="par_id3150327" xml-lang="en-US" l10n="U"
oldref="26">Get #iNumber,,sText</paragraph>
-<paragraph role="code" id="par_id3153707" xml-lang="en-US" l10n="U"
oldref="27">Print sText</paragraph>
-<paragraph role="code" id="par_id3153764" xml-lang="en-US" l10n="U"
oldref="28">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3153715" xml-lang="en-US" l10n="U"
oldref="30">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3154256" xml-lang="en-US" l10n="U"
oldref="31">Open aFile For Random As #iNumber Len=32</paragraph>
-<paragraph role="code" id="par_id3147340" xml-lang="en-US" l10n="U"
oldref="32">Get #iNumber,2,sText</paragraph>
-<paragraph role="code" id="par_id3155938" xml-lang="en-US" l10n="U"
oldref="33">Put #iNumber,,"This is a new text"</paragraph>
-<paragraph role="code" id="par_id3155959" xml-lang="en-US" l10n="U"
oldref="34">Get #iNumber,1,sText</paragraph>
-<paragraph role="code" id="par_id3147361" xml-lang="en-US" l10n="U"
oldref="35">Get #iNumber,2,sText</paragraph>
-<paragraph role="code" id="par_id3146916" xml-lang="en-US" l10n="U"
oldref="36">Put #iNumber,20,"This is the text in record 20"</paragraph>
-<paragraph role="code" id="par_id3149259" xml-lang="en-US" l10n="U"
oldref="37">Print Lof(#iNumber)</paragraph>
-<paragraph role="code" id="par_id3153790" xml-lang="en-US" l10n="U"
oldref="38">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3155606" xml-lang="en-US" l10n="U"
oldref="40">end sub</paragraph>
+<paragraph role="paragraph" id="par_id3154346" xml-lang="en-US" l10n="U">See
also: <link href="text/sbasic/shared/03020204.xhp" name="PUT"><item
type="literal">PUT</item></link> Statement</paragraph>
+<paragraph role="heading" id="hd_id3150358" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="code" id="par_id3150792" xml-lang="en-US" l10n="U">Get [#]
FileNumber As Integer, [Position], Variable</paragraph>
+<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3150448" xml-lang="en-US"
l10n="U"><emph>FileNumber:</emph> Any integer expression that determines the
file number.</paragraph>
+<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US"
l10n="U"><emph>Position:</emph> For files opened in Random mode,
<emph>Position</emph> is the number of the record that you want to
read.</paragraph>
+<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U">For
files opened in Binary mode, <emph>Position</emph> is the byte position in the
file where the reading starts.</paragraph>
+<paragraph role="paragraph" id="par_id3147319" xml-lang="en-US" l10n="U">If
<emph>Position</emph> is omitted, the current position or the current data
record of the file is used.</paragraph>
+<paragraph role="paragraph" id="par_id3149484" xml-lang="en-US"
l10n="U">Variable: Name of the variable to be read. With the exception of
object variables, you can use any variable type.</paragraph>
+<paragraph role="heading" id="hd_id3153144" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3159154" xml-lang="en-US" l10n="U">Sub
ExampleRandomAccess</paragraph>
+<paragraph role="code" id="par_id3153188" xml-lang="en-US" l10n="U">Dim
iNumber As Integer</paragraph>
+<paragraph role="code" id="par_id3155307" xml-lang="en-US" l10n="U">Dim sText
As Variant REM Must be a variant</paragraph>
+<paragraph role="code" id="par_id3152577" xml-lang="en-US" l10n="U">Dim aFile
As String</paragraph>
+<paragraph role="code" id="par_id3153726" xml-lang="en-US" l10n="U">aFile =
"c:\data.txt"</paragraph>
+<paragraph role="code" id="par_id3154490" xml-lang="en-US" l10n="U">iNumber =
Freefile</paragraph>
+<paragraph role="code" id="par_id3150418" xml-lang="en-US" l10n="U">Open aFile
For Random As #iNumber Len=32</paragraph>
+<paragraph role="code" id="par_id3149411" xml-lang="en-US" l10n="U">Seek
#iNumber,1 REM Position at beginning</paragraph>
+<paragraph role="code" id="par_id3153158" xml-lang="en-US" l10n="U">Put
#iNumber,, "This is the first line of text" REM Fill line with text</paragraph>
+<paragraph role="code" id="par_id3148457" xml-lang="en-US" l10n="U">Put
#iNumber,, "This is the second line of text"</paragraph>
+<paragraph role="code" id="par_id3150715" xml-lang="en-US" l10n="U">Put
#iNumber,, "This is the third line of text"</paragraph>
+<paragraph role="code" id="par_id3153836" xml-lang="en-US" l10n="U">Seek
#iNumber,2</paragraph>
+<paragraph role="code" id="par_id3150327" xml-lang="en-US" l10n="U">Get
#iNumber,,sText</paragraph>
+<paragraph role="code" id="par_id3153707" xml-lang="en-US" l10n="U">Print
sText</paragraph>
+<paragraph role="code" id="par_id3153764" xml-lang="en-US" l10n="U">Close
#iNumber</paragraph>
+<paragraph role="code" id="par_id3153715" xml-lang="en-US" l10n="U">iNumber =
Freefile</paragraph>
+<paragraph role="code" id="par_id3154256" xml-lang="en-US" l10n="U">Open aFile
For Random As #iNumber Len=32</paragraph>
+<paragraph role="code" id="par_id3147340" xml-lang="en-US" l10n="U">Get
#iNumber,2,sText</paragraph>
+<paragraph role="code" id="par_id3155938" xml-lang="en-US" l10n="U">Put
#iNumber,,"This is a new text"</paragraph>
+<paragraph role="code" id="par_id3155959" xml-lang="en-US" l10n="U">Get
#iNumber,1,sText</paragraph>
+<paragraph role="code" id="par_id3147361" xml-lang="en-US" l10n="U">Get
#iNumber,2,sText</paragraph>
+<paragraph role="code" id="par_id3146916" xml-lang="en-US" l10n="U">Put
#iNumber,20,"This is the text in record 20"</paragraph>
+<paragraph role="code" id="par_id3149259" xml-lang="en-US" l10n="U">Print
Lof(#iNumber)</paragraph>
+<paragraph role="code" id="par_id3153790" xml-lang="en-US" l10n="U">Close
#iNumber</paragraph>
+<paragraph role="code" id="par_id3155606" xml-lang="en-US" l10n="U">end
sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/01010100.xhp
b/main/helpcontent2/source/text/shared/01/01010100.xhp
index 14bf813804..1637186e96 100644
--- a/main/helpcontent2/source/text/shared/01/01010100.xhp
+++ b/main/helpcontent2/source/text/shared/01/01010100.xhp
@@ -29,29 +29,29 @@
</topic>
</meta>
<body>
-<paragraph role="heading" id="hd_id3152937" xml-lang="en-US" level="1"
l10n="U" oldref="99"><variable id="vor_und_dok"><link
href="text/shared/01/01010100.xhp" name="Templates and Documents">Templates and
Documents</link>
+<paragraph role="heading" id="hd_id3152937" xml-lang="en-US" level="1"
l10n="U"><variable id="vor_und_dok"><link href="text/shared/01/01010100.xhp"
name="Templates and Documents">Templates and Documents</link>
</variable></paragraph>
<section id="vudintrotext">
-<paragraph role="paragraph" id="par_id3148520" xml-lang="en-US" l10n="U"
oldref="117">The <emph>Templates and Documents</emph> dialog allows you to
manage your templates and sample documents.</paragraph>
-<paragraph role="paragraph" id="par_id3157898" xml-lang="en-US" l10n="U"
oldref="118">To open the <emph>Templates and Documents</emph> dialog, do one of
the following:</paragraph>
+<paragraph role="paragraph" id="par_id3148520" xml-lang="en-US" l10n="U">The
<emph>Templates and Documents</emph> dialog allows you to manage your templates
and sample documents.</paragraph>
+<paragraph role="paragraph" id="par_id3157898" xml-lang="en-US" l10n="U">To
open the <emph>Templates and Documents</emph> dialog, do one of the
following:</paragraph>
<list type="unordered">
<listitem>
-<paragraph role="listitem" id="par_id3156414" xml-lang="en-US" l10n="U"
oldref="125">Choose <emph>File - New - Templates and Documents</emph>
+<paragraph role="listitem" id="par_id3156414" xml-lang="en-US" l10n="U">Choose
<emph>File - New - Templates and Documents</emph>
</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3153114" xml-lang="en-US" l10n="U"
oldref="126">Press Shift+<switchinline select="sys"><caseinline
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N.</paragraph>
+<paragraph role="listitem" id="par_id3153114" xml-lang="en-US" l10n="U">Press
Shift+<switchinline select="sys"><caseinline
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N.</paragraph>
</listitem>
</list>
</section>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_ICONCTRL"
id="bm_id3154317" localize="false"/>
-<paragraph role="heading" id="hd_id3159234" xml-lang="en-US" level="2"
l10n="U" oldref="5">Categories</paragraph>
-<paragraph role="paragraph" id="par_id3157958" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid=".">Categories are shown in the box on the left side of
the <emph>Templates and Documents</emph> dialog. Click a category to display
the files associated with that category in the <emph>Title</emph>
box.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3159234" xml-lang="en-US" level="2"
l10n="U">Categories</paragraph>
+<paragraph role="paragraph" id="par_id3157958" xml-lang="en-US"
l10n="U"><ahelp hid=".">Categories are shown in the box on the left side of the
<emph>Templates and Documents</emph> dialog. Click a category to display the
files associated with that category in the <emph>Title</emph>
box.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_FILEVIEW"
id="bm_id3147275" localize="false"/>
-<paragraph role="heading" id="hd_id3149388" xml-lang="en-US" level="2"
l10n="U" oldref="100">Title Box</paragraph>
-<paragraph role="paragraph" id="par_id3150355" xml-lang="en-US" l10n="U"
oldref="101"><ahelp hid="HID_TEMPLATEDLG_FILEVIEW">Lists the available
templates or documents for the selected category. Select a template or document
and, then click <emph>Open</emph>. To preview the document, click the
<emph>Preview</emph> button above the box on the right.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149388" xml-lang="en-US" level="2"
l10n="U">Title Box</paragraph>
+<paragraph role="paragraph" id="par_id3150355" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_FILEVIEW">Lists the available templates or
documents for the selected category. Select a template or document and, then
click <emph>Open</emph>. To preview the document, click the
<emph>Preview</emph> button above the box on the right.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_TB_BACK"
id="bm_id3154897" localize="false"/>
-<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="3"
l10n="U" oldref="102">Back</paragraph>
+<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="3"
l10n="U">Back</paragraph>
<table id="tbl_id3155449">
<tablerow>
<tablecell colspan="" rowspan="">
@@ -60,12 +60,12 @@
</image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3153822" xml-lang="en-US" l10n="U"
oldref="103"><ahelp hid="HID_TEMPLATEDLG_TB_BACK">Moves back to the previous
window in the dialog.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3153822" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_BACK">Moves back to the previous window
in the dialog.</ahelp></paragraph>
</tablecell>
</tablerow>
</table>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_TB_PREV"
id="bm_id3150275" localize="false"/>
-<paragraph role="heading" id="hd_id3148685" xml-lang="en-US" level="3"
l10n="U" oldref="104">Up One Level</paragraph>
+<paragraph role="heading" id="hd_id3148685" xml-lang="en-US" level="3"
l10n="U">Up One Level</paragraph>
<table id="tbl_id3150976">
<tablerow>
<tablecell colspan="" rowspan="">
@@ -74,12 +74,12 @@
</image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US" l10n="U"
oldref="105"><ahelp hid="HID_TEMPLATEDLG_TB_PREV">Moves up one folder level, if
available.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_PREV">Moves up one folder level, if
available.</ahelp></paragraph>
</tablecell>
</tablerow>
</table>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_TB_PRINT"
id="bm_id3159414" localize="false"/>
-<paragraph role="heading" id="hd_id3147264" xml-lang="en-US" level="3"
l10n="U" oldref="106">Print</paragraph>
+<paragraph role="heading" id="hd_id3147264" xml-lang="en-US" level="3"
l10n="U">Print</paragraph>
<table id="tbl_id3147559">
<tablerow>
<tablecell colspan="" rowspan="">
@@ -88,14 +88,14 @@
</image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U"
oldref="107"><ahelp hid="HID_TEMPLATEDLG_TB_PRINT">Prints the selected template
or document.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_PRINT">Prints the selected template or
document.</ahelp></paragraph>
</tablecell>
</tablerow>
</table>
-<paragraph role="heading" id="hd_id3149651" xml-lang="en-US" level="2"
l10n="U" oldref="9">Preview</paragraph>
-<paragraph role="paragraph" id="par_id3148799" xml-lang="en-US" l10n="U"
oldref="10"><ahelp hid="HID_TEMPLATEDLG_TB_PRINT">Allows you to preview the
template or document, as well as view the document properties.</ahelp> To
preview the template or document, click the <emph>Preview</emph> icon at the
top of the Preview box on the right side of the dialog. To view the properties
of the document, click the <emph>Document Properties</emph> icon at the top of
the Preview box.</paragraph>
+<paragraph role="heading" id="hd_id3149651" xml-lang="en-US" level="2"
l10n="U">Preview</paragraph>
+<paragraph role="paragraph" id="par_id3148799" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_PRINT">Allows you to preview the
template or document, as well as view the document properties.</ahelp> To
preview the template or document, click the <emph>Preview</emph> icon at the
top of the Preview box on the right side of the dialog. To view the properties
of the document, click the <emph>Document Properties</emph> icon at the top of
the Preview box.</paragraph>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_TB_PREVIEW"
id="bm_id3157322" localize="false"/>
-<paragraph role="heading" id="hd_id3149807" xml-lang="en-US" level="3"
l10n="U" oldref="108">Preview</paragraph>
+<paragraph role="heading" id="hd_id3149807" xml-lang="en-US" level="3"
l10n="U">Preview</paragraph>
<table id="tbl_id3151178">
<tablerow>
<tablecell colspan="" rowspan="">
@@ -104,12 +104,12 @@
</image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3151043" xml-lang="en-US" l10n="U"
oldref="109"><ahelp hid="HID_TEMPLATEDLG_TB_PREVIEW">Allows you to preview the
selected template or document.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3151043" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_PREVIEW">Allows you to preview the
selected template or document.</ahelp></paragraph>
</tablecell>
</tablerow>
</table>
<bookmark xml-lang="en-US" branch="hid/SVT_HID_TEMPLATEDLG_TB_DOCINFO"
id="bm_id3155996" localize="false"/>
-<paragraph role="heading" id="hd_id3145606" xml-lang="en-US" level="3"
l10n="U" oldref="110">Document Properties</paragraph>
+<paragraph role="heading" id="hd_id3145606" xml-lang="en-US" level="3"
l10n="U">Document Properties</paragraph>
<table id="tbl_id3152935">
<tablerow>
<tablecell colspan="" rowspan="">
@@ -118,19 +118,19 @@
</image></paragraph>
</tablecell>
<tablecell colspan="" rowspan="">
-<paragraph role="paragraph" id="par_id3153210" xml-lang="en-US" l10n="U"
oldref="12"><ahelp hid="HID_TEMPLATEDLG_TB_DOCINFO">Displays the properties for
the selected template or document.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3153210" xml-lang="en-US"
l10n="U"><ahelp hid="HID_TEMPLATEDLG_TB_DOCINFO">Displays the properties for
the selected template or document.</ahelp></paragraph>
</tablecell>
</tablerow>
</table>
<bookmark xml-lang="en-US"
branch="hid/svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_MANAGE"
id="bm_id3153188" localize="false"/>
-<paragraph role="heading" id="hd_id3153142" xml-lang="en-US" level="2"
l10n="U" oldref="111">Organize</paragraph>
-<paragraph role="paragraph" id="par_id3156441" xml-lang="en-US" l10n="U"
oldref="112"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE">Adds, removes,
or rearranges templates or sample documents.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153142" xml-lang="en-US" level="2"
l10n="U">Organize</paragraph>
+<paragraph role="paragraph" id="par_id3156441" xml-lang="en-US"
l10n="U"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE">Adds, removes,
or rearranges templates or sample documents.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_EDIT"
id="bm_id3145364" localize="false"/>
-<paragraph role="heading" id="hd_id3149483" xml-lang="en-US" level="2"
l10n="U" oldref="113">Edit</paragraph>
-<paragraph role="paragraph" id="par_id3154470" xml-lang="en-US" l10n="U"
oldref="114"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT">Opens the
selected template for editing.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3147428" xml-lang="en-US" level="2"
l10n="U" oldref="115">Open</paragraph>
-<paragraph role="paragraph" id="par_id3148617" xml-lang="en-US" l10n="U"
oldref="116"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT">Opens the
selected document or creates a document based on the selected
template.</ahelp></paragraph>
-<paragraph role="note" id="par_id3155306" xml-lang="en-US" l10n="CHG"
oldref="98">To add another folder to the template path, choose <switchinline
select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - <link
href="text/shared/optionen/01010300.xhp" name="$[officename] -
Paths"><emph>$[officename] - Paths</emph></link>, and then enter the
path.</paragraph>
+<paragraph role="heading" id="hd_id3149483" xml-lang="en-US" level="2"
l10n="U">Edit</paragraph>
+<paragraph role="paragraph" id="par_id3154470" xml-lang="en-US"
l10n="U"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT">Opens the
selected template for editing.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147428" xml-lang="en-US" level="2"
l10n="U">Open</paragraph>
+<paragraph role="paragraph" id="par_id3148617" xml-lang="en-US"
l10n="U"><ahelp
hid="SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT">Opens the
selected document or creates a document based on the selected
template.</ahelp></paragraph>
+<paragraph role="note" id="par_id3155306" xml-lang="en-US" l10n="CHG">To add
another folder to the template path, choose <switchinline
select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - <link
href="text/shared/optionen/01010300.xhp" name="$[officename] -
Paths"><emph>$[officename] - Paths</emph></link>, and then enter the
path.</paragraph>
<section id="relatedtopics">
<embed href="text/shared/guide/aaa_start.xhp#aaa_start"/>
<paragraph role="paragraph" id="par_id3149379" xml-lang="en-US" l10n="C"><link
href="text/shared/01/01100000.xhp" name="File properties">File
properties</link></paragraph>
diff --git a/main/helpcontent2/source/text/shared/guide/gallery_insert.xhp
b/main/helpcontent2/source/text/shared/guide/gallery_insert.xhp
index 92514a49e5..f84b1ef77f 100644
--- a/main/helpcontent2/source/text/shared/guide/gallery_insert.xhp
+++ b/main/helpcontent2/source/text/shared/guide/gallery_insert.xhp
@@ -39,67 +39,67 @@
<bookmark_value>inserting;objects from Gallery</bookmark_value>
<bookmark_value>copying;from Gallery</bookmark_value>
</bookmark><comment>mw deleted "adding;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3145136" role="heading" level="1"
l10n="U" oldref="1"><variable id="gallery_insert"><link
href="text/shared/guide/gallery_insert.xhp" name="Inserting Objects From the
Gallery">Inserting Objects From the Gallery</link>
+<paragraph xml-lang="en-US" id="hd_id3145136" role="heading" level="1"
l10n="U"><variable id="gallery_insert"><link
href="text/shared/guide/gallery_insert.xhp" name="Inserting Objects From the
Gallery">Inserting Objects From the Gallery</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3145345" role="paragraph" l10n="U"
oldref="2">You can insert an object in a document either as a <emph>copy</emph>
or as a <emph>link</emph>. A copy of an object is independent of the original
object. Changes to the original object have no effect on the copy. A link
remains dependent on the original object. Changes to the original object are
also reflected in the link.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3145313" role="heading" level="2"
l10n="U" oldref="3">Inserting an object as a copy</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145345" role="paragraph" l10n="U">You
can insert an object in a document either as a <emph>copy</emph> or as a
<emph>link</emph>. A copy of an object is independent of the original object.
Changes to the original object have no effect on the copy. A link remains
dependent on the original object. Changes to the original object are also
reflected in the link.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145313" role="heading" level="2"
l10n="U">Inserting an object as a copy</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145382" role="listitem" l10n="U"
oldref="4">Open the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145382" role="listitem" l10n="U">Open
the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154306" role="listitem" l10n="U"
oldref="5">Select a theme.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154306" role="listitem" l10n="U">Select
a theme.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154516" role="listitem" l10n="U"
oldref="6">Select an object using a single click.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154516" role="listitem" l10n="U">Select
an object using a single click.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153561" role="listitem" l10n="U"
oldref="7">Drag the object into the document, or right-click to open the
context menu and select <emph>Insert</emph> and <emph>Copy</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153561" role="listitem" l10n="U">Drag
the object into the document, or right-click to open the context menu and
select <emph>Insert</emph> and <emph>Copy</emph>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3153061" role="heading" level="2"
l10n="U" oldref="8">Inserting an object as a link</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153061" role="heading" level="2"
l10n="U">Inserting an object as a link</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145068" role="listitem" l10n="U"
oldref="9">Open the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145068" role="listitem" l10n="U">Open
the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148663" role="listitem" l10n="U"
oldref="10">Select a theme.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148663" role="listitem" l10n="U">Select
a theme.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150543" role="listitem" l10n="U"
oldref="11">Select an object by a single click.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150543" role="listitem" l10n="U">Select
an object by a single click.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154140" role="listitem" l10n="U"
oldref="12">Drag the object into the document while pressing the Shift and
<switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl </defaultinline></switchinline>keys, or
right-click to open the context menu and select <emph>Insert</emph> and
<emph>Link</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154140" role="listitem" l10n="U">Drag
the object into the document while pressing the Shift and <switchinline
select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl
</defaultinline></switchinline>keys, or right-click to open the context menu
and select <emph>Insert</emph> and <emph>Link</emph>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3156282" role="heading" level="2"
l10n="U" oldref="13">Inserting an object as a background graphic</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3156282" role="heading" level="2"
l10n="U">Inserting an object as a background graphic</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152920" role="listitem" l10n="U"
oldref="14">Open the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152920" role="listitem" l10n="U">Open
the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3151041" role="listitem" l10n="U"
oldref="15">Select a theme.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151041" role="listitem" l10n="U">Select
a theme.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145607" role="listitem" l10n="U"
oldref="16">Select an object by a single click.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145607" role="listitem" l10n="U">Select
an object by a single click.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147289" role="listitem" l10n="U"
oldref="17">Open the context menu and choose <emph>Insert - Background -
Page</emph> or <emph>Paragraph</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147289" role="listitem" l10n="U">Open
the context menu and choose <emph>Insert - Background - Page</emph> or
<emph>Paragraph</emph>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3145787" role="heading" level="2"
l10n="U" oldref="18">Inserting an object as a texture (pattern) for another
object</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145787" role="heading" level="2"
l10n="U">Inserting an object as a texture (pattern) for another
object</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3159196" role="listitem" l10n="U"
oldref="19">Open the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159196" role="listitem" l10n="U">Open
the Gallery by clicking the <emph>Gallery</emph> icon on the
<emph>Standard</emph> bar, or by selecting <emph>Tools -
Gallery</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152596" role="listitem" l10n="U"
oldref="20">Select a theme.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152596" role="listitem" l10n="U">Select
a theme.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148617" role="listitem" l10n="U"
oldref="21">Select an object by a single click.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148617" role="listitem" l10n="U">Select
an object by a single click.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147443" role="listitem" l10n="U"
oldref="22">Drag the object on to the other object in the document while
pressing <switchinline select="sys"><caseinline
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147443" role="listitem" l10n="U">Drag
the object on to the other object in the document while pressing <switchinline
select="sys"><caseinline
select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
diff --git a/main/helpcontent2/source/text/shared/guide/import_ms.xhp
b/main/helpcontent2/source/text/shared/guide/import_ms.xhp
index 356a7c625a..085dac5439 100644
--- a/main/helpcontent2/source/text/shared/guide/import_ms.xhp
+++ b/main/helpcontent2/source/text/shared/guide/import_ms.xhp
@@ -49,26 +49,26 @@
<bookmark_value>converters; document converter</bookmark_value>
<bookmark_value>files, see also documents</bookmark_value>
</bookmark><comment>MW inserted cross-reference "files, see also
documents"</comment><comment>MW changed "defaults;..."</comment><comment>ufi
added "converters;document converter"</comment>
-<paragraph xml-lang="en-US" id="hd_id3145313" role="heading" level="1"
l10n="U" oldref="2"><variable id="import_ms"><link
href="text/shared/guide/import_ms.xhp" name="Opening documents saved in other
formats">Opening documents saved in other formats</link>
+<paragraph xml-lang="en-US" id="hd_id3145313" role="heading" level="1"
l10n="U"><variable id="import_ms"><link href="text/shared/guide/import_ms.xhp"
name="Opening documents saved in other formats">Opening documents saved in
other formats</link>
</variable></paragraph>
-<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U"
oldref="3">You can open a document saved in another format by using the
following procedure:</paragraph>
+<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U">You
can open a document saved in another format by using the following
procedure:</paragraph>
<list type="ordered">
<listitem>
-<paragraph role="listitem" id="par_id3147242" xml-lang="en-US" l10n="U"
oldref="4">Choose <emph>File - Open</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3147242" xml-lang="en-US" l10n="U">Choose
<emph>File - Open</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3152780" xml-lang="en-US" l10n="U"
oldref="5">Select a format from the <emph>Files of type</emph> list.</paragraph>
+<paragraph role="listitem" id="par_id3152780" xml-lang="en-US" l10n="U">Select
a format from the <emph>Files of type</emph> list.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3148491" xml-lang="en-US" l10n="U"
oldref="6">Select a file name and click <emph>Open</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3148491" xml-lang="en-US" l10n="U">Select
a file name and click <emph>Open</emph>.</paragraph>
</listitem>
</list>
-<paragraph role="paragraph" id="par_id3159399" xml-lang="en-US" l10n="CHG"
oldref="8">If you always want the file dialogs to show another format by
default, choose <emph><switchinline select="sys"><caseinline
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - Load/Save - General</emph> and select
that format as <emph>Default file format</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3154898" xml-lang="en-US" level="2"
l10n="U" oldref="9">Converting all documents of a folder</paragraph>
-<paragraph role="paragraph" id="par_id3147336" xml-lang="en-US" l10n="CHG"
oldref="10">Open the wizard, which guides you through the operation, to copy
and convert all documents from Microsoft Word, Microsoft Excel or Microsoft
PowerPoint into OpenDocument file format documents. You can select a source and
target directory, specify whether to convert documents and/or templates, and
more besides.</paragraph>
+<paragraph role="paragraph" id="par_id3159399" xml-lang="en-US" l10n="CHG">If
you always want the file dialogs to show another format by default, choose
<emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinline>Tools -
Options</defaultinline></switchinline> - Load/Save - General</emph> and select
that format as <emph>Default file format</emph>.</paragraph>
+<paragraph role="heading" id="hd_id3154898" xml-lang="en-US" level="2"
l10n="U">Converting all documents of a folder</paragraph>
+<paragraph role="paragraph" id="par_id3147336" xml-lang="en-US"
l10n="CHG">Open the wizard, which guides you through the operation, to copy and
convert all documents from Microsoft Word, Microsoft Excel or Microsoft
PowerPoint into OpenDocument file format documents. You can select a source and
target directory, specify whether to convert documents and/or templates, and
more besides.</paragraph>
<list type="unordered">
<listitem>
-<paragraph role="listitem" id="par_id3153824" xml-lang="en-US" l10n="U"
oldref="11">Choose <link href="text/shared/autopi/01130000.xhp" name="File -
AutoPilot - Document Converter"><emph>File - Wizards - Document
Converter</emph></link>.</paragraph>
+<paragraph role="listitem" id="par_id3153824" xml-lang="en-US" l10n="U">Choose
<link href="text/shared/autopi/01130000.xhp" name="File - AutoPilot - Document
Converter"><emph>File - Wizards - Document Converter</emph></link>.</paragraph>
</listitem>
</list>
<switch select="appl">
@@ -92,8 +92,8 @@
<embed href="text/shared/guide/export_ms.xhp#export_ms"/>
<embed href="text/shared/guide/ms_import_export_limitations.xhp#about"/>
<embed href="text/shared/guide/ms_user.xhp#ms_user"/>
-<paragraph xml-lang="en-US" id="par_id3148944" role="paragraph" l10n="U"
oldref="12"><link href="text/shared/optionen/01130100.xhp" name="Working with
VBA code">Working with VBA code</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147264" role="paragraph" l10n="U"
oldref="13"><link href="text/shared/optionen/01010200.xhp" name="Setting the
default file format">Setting the default file format</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3148944" role="paragraph" l10n="U"><link
href="text/shared/optionen/01130100.xhp" name="Working with VBA code">Working
with VBA code</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147264" role="paragraph" l10n="U"><link
href="text/shared/optionen/01010200.xhp" name="Setting the default file
format">Setting the default file format</link></paragraph>
<embed href="text/shared/guide/ms_doctypes.xhp#ms_doctypes"/>
</section>
</body>
diff --git a/main/helpcontent2/source/text/shared/guide/print_blackwhite.xhp
b/main/helpcontent2/source/text/shared/guide/print_blackwhite.xhp
index ec8de17021..c2a3b0dc49 100644
--- a/main/helpcontent2/source/text/shared/guide/print_blackwhite.xhp
+++ b/main/helpcontent2/source/text/shared/guide/print_blackwhite.xhp
@@ -35,72 +35,67 @@
<bookmark_value>colors; not printing</bookmark_value>
<bookmark_value>text; printing in black</bookmark_value>
</bookmark>
-<paragraph xml-lang="en-US" id="hd_id3150125" role="heading" level="1"
l10n="U" oldref="1"><variable id="print_blackwhite"><link
href="text/shared/guide/print_blackwhite.xhp" name="Printing in Black and
White">Printing in Black and White</link>
+<paragraph xml-lang="en-US" id="hd_id3150125" role="heading" level="1"
l10n="U"><variable id="print_blackwhite"><link
href="text/shared/guide/print_blackwhite.xhp" name="Printing in Black and
White">Printing in Black and White</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3150499" role="heading" level="1"
l10n="U" oldref="3">Printing text and graphics in black and white</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150499" role="heading" level="1"
l10n="U">Printing text and graphics in black and white</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149346" role="listitem" l10n="U"
oldref="4">Choose <emph>File - Print</emph>. The <emph>General</emph> tab page
of the dialog opens.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149346" role="listitem" l10n="U">Choose
<emph>File - Print</emph>. The <emph>General</emph> tab page of the dialog
opens.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155892" role="listitem" l10n="U"
oldref="5">Click on <emph>Properties</emph>. This opens the Properties dialog
for your printer.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155892" role="listitem" l10n="U">Click
on <emph>Properties</emph>. This opens the Properties dialog for your
printer.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145313" role="listitem" l10n="U"
oldref="6">Select the option to print in black and white. For further
information, refer to the user's manual of your printer.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145313" role="listitem" l10n="U">Select
the option to print in black and white. For further information, refer to the
user's manual of your printer.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153345" role="listitem" l10n="U"
oldref="7">Confirm the <emph>Properties</emph> dialog and click
<emph>Print</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U"
oldref="8">The current document will be printed in black and white.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153345" role="listitem"
l10n="U">Confirm the <emph>Properties</emph> dialog and click
<emph>Print</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U">The
current document will be printed in black and white.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="1"
l10n="U" oldref="9">Printing in black and white in <item
type="productname">%PRODUCTNAME</item> Impress and <item
type="productname">%PRODUCTNAME</item> Draw</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="1"
l10n="U">Printing in black and white in <item
type="productname">%PRODUCTNAME</item> Impress and <item
type="productname">%PRODUCTNAME</item> Draw</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149233" role="listitem" l10n="CHG"
oldref="10">Choose Tools - Options - %PRODUCTNAME Impress or Tools - Options -
%PRODUCTNAME Draw, as appropriate.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149233" role="listitem"
l10n="CHG">Choose Tools - Options - %PRODUCTNAME Impress or Tools - Options -
%PRODUCTNAME Draw, as appropriate.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150275" role="listitem" l10n="U"
oldref="11">Then choose <emph>Print</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150275" role="listitem" l10n="U">Then
choose <emph>Print</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147573" role="listitem" l10n="U"
oldref="12">Under <emph>Quality</emph>, select either <emph>Grayscale</emph> or
<emph>Black & white</emph> and click <emph>OK</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154307" role="listitem" l10n="U"
oldref="13">When either of these options is selected, all presentations or
drawings will be printed without color. If you only want to print in black for
the <emph>current</emph> print job, select the option in <emph>File - Print -
%PRODUCTNAME Draw/Impress</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149786" role="listitem" l10n="U"
oldref="15">
-<emph>Grayscale</emph> converts all colors to a maximum of 256 gradations from
black to white. All text will be printed in black. A background set by
<emph>Format - Page - Background</emph> will not be printed.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145610" role="listitem" l10n="U"
oldref="16">
-<emph>Black & white</emph> converts all colors into the two values black
and white. All borders around objects are printed black. All text will be
printed in black. A background set by <emph>Format - Page - Background</emph>
will not be printed.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147573" role="listitem" l10n="U">Under
<emph>Quality</emph>, select either <emph>Grayscale</emph> or <emph>Black &
white</emph> and click <emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154307" role="listitem" l10n="U">When
either of these options is selected, all presentations or drawings will be
printed without color. If you only want to print in black for the
<emph>current</emph> print job, select the option in <emph>File - Print -
%PRODUCTNAME Draw/Impress</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149786" role="listitem"
l10n="U"><emph>Grayscale</emph> converts all colors to a maximum of 256
gradations from black to white. All text will be printed in black. A background
set by <emph>Format - Page - Background</emph> will not be printed.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145610" role="listitem"
l10n="U"><emph>Black & white</emph> converts all colors into the two values
black and white. All borders around objects are printed black. All text will be
printed in black. A background set by <emph>Format - Page - Background</emph>
will not be printed.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3153896" role="heading" level="1" l10n="U"
-oldref="17">Printing only text in black and white</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147559" role="paragraph" l10n="U"
oldref="18">In <item type="productname">%PRODUCTNAME</item> Writer you can
choose to print color-formatted text in black and white. You can specify this
either for all subsequent text documents to be printed, or only for the current
printing process.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3150358" role="heading" level="1" l10n="U"
-oldref="19">Printing all text documents with black and white text</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153896" role="heading" level="1"
l10n="U">Printing only text in black and white</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147559" role="paragraph" l10n="U">In
<item type="productname">%PRODUCTNAME</item> Writer you can choose to print
color-formatted text in black and white. You can specify this either for all
subsequent text documents to be printed, or only for the current printing
process.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150358" role="heading" level="1"
l10n="U">Printing all text documents with black and white text</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150541" role="listitem" l10n="U"
oldref="20">Choose Tools - Options - %PRODUCTNAME Writer or Tools - Options -
%PRODUCTNAME Writer/Web.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150541" role="listitem" l10n="U">Choose
Tools - Options - %PRODUCTNAME Writer or Tools - Options - %PRODUCTNAME
Writer/Web.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147084" role="listitem" l10n="U"
oldref="21">Then choose <emph>Print</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147084" role="listitem" l10n="U">Then
choose <emph>Print</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154910" role="listitem" l10n="U"
oldref="22">Under <emph>Contents</emph>, mark <emph>Print black</emph> and
click <emph>OK</emph>.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3144762" role="listitem" l10n="U"
oldref="23">All text documents or HTML documents will be printed with black
text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154910" role="listitem" l10n="U">Under
<emph>Contents</emph>, mark <emph>Print black</emph> and click
<emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3144762" role="listitem" l10n="U">All
text documents or HTML documents will be printed with black text.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3148920" role="heading" level="1" l10n="U"
-oldref="24">Printing the current text document with black and white
text</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3148920" role="heading" level="1"
l10n="U">Printing the current text document with black and white
text</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3152933" role="listitem" l10n="U"
oldref="25">Choose <emph>File - Print</emph>. Then click the <emph>%PRODUCTNAME
Writer</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152933" role="listitem" l10n="U">Choose
<emph>File - Print</emph>. Then click the <emph>%PRODUCTNAME Writer</emph>
tab.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149667" role="listitem" l10n="U"
oldref="27">Choose <emph>Print text in black</emph> and click
<emph>Print</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149667" role="listitem" l10n="U">Choose
<emph>Print text in black</emph> and click <emph>Print</emph>.</paragraph>
</listitem>
</list>
<list type="ordered">
</list>
<embed href="text/shared/00/00000004.xhp#related"/>
-<paragraph xml-lang="en-US" id="par_id3153726" role="paragraph" l10n="U"
oldref="29"><link href="text/shared/01/01130000.xhp" name="Printing
dialogs">Printing dialogs</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154146" role="paragraph" l10n="U"
oldref="30"><link href="text/shared/optionen/01000000.xhp" name="Tools -
Options dialog">Tools - Options dialog</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3153726" role="paragraph" l10n="U"><link
href="text/shared/01/01130000.xhp" name="Printing dialogs">Printing
dialogs</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154146" role="paragraph" l10n="U"><link
href="text/shared/optionen/01000000.xhp" name="Tools - Options dialog">Tools -
Options dialog</link></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/optionen/01060300.xhp
b/main/helpcontent2/source/text/shared/optionen/01060300.xhp
index ab6eee8785..62a0954b95 100644
--- a/main/helpcontent2/source/text/shared/optionen/01060300.xhp
+++ b/main/helpcontent2/source/text/shared/optionen/01060300.xhp
@@ -41,47 +41,46 @@
<bookmark_value>column headers; highlighting (Calc)</bookmark_value>
<bookmark_value>row headers; highlighting (Calc)</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/shared/optionen/01060300.xhp"
name="General">General</link></paragraph>
-<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" l10n="U"
oldref="2">Defines general settings for spreadsheet documents.</paragraph>
+<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="1"
l10n="U"><link href="text/shared/optionen/01060300.xhp"
name="General">General</link></paragraph>
+<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US"
l10n="U">Defines general settings for spreadsheet documents.</paragraph>
</section>
<section id="howtoget">
<embed href="text/shared/00/00000406.xhp#tabelleeingabe"/>
</section>
-<paragraph role="heading" id="hd_id3155338" xml-lang="en-US" level="2"
l10n="U" oldref="24">Metrics</paragraph>
+<paragraph role="heading" id="hd_id3155338" xml-lang="en-US" level="2"
l10n="U">Metrics</paragraph>
<bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCPAGE_LAYOUT:LB_UNIT"
id="bm_id3147210" localize="false"/>
-<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3"
l10n="U" oldref="20">Measurement unit</paragraph>
-<paragraph role="paragraph" id="par_id3150444" xml-lang="en-US" l10n="CHG"
oldref="21"><ahelp hid="SC:LISTBOX:RID_SCPAGE_LAYOUT:LB_UNIT">Defines the unit
of measure in spreadsheets.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3"
l10n="U">Measurement unit</paragraph>
+<paragraph role="paragraph" id="par_id3150444" xml-lang="en-US"
l10n="CHG"><ahelp hid="SC:LISTBOX:RID_SCPAGE_LAYOUT:LB_UNIT">Defines the unit
of measure in spreadsheets.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:MetricField:RID_SCPAGE_LAYOUT:MF_TAB" id="bm_id3153562"
localize="false"/>
-<paragraph role="heading" id="hd_id3149795" xml-lang="en-US" level="3"
l10n="U" oldref="22">Tab stops</paragraph>
-<paragraph role="paragraph" id="par_id3150084" xml-lang="en-US" l10n="U"
oldref="23"><ahelp hid="SC:METRICFIELD:RID_SCPAGE_LAYOUT:MF_TAB">Defines the
tab stops distance.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149795" xml-lang="en-US" level="3"
l10n="U">Tab stops</paragraph>
+<paragraph role="paragraph" id="par_id3150084" xml-lang="en-US"
l10n="U"><ahelp hid="SC:METRICFIELD:RID_SCPAGE_LAYOUT:MF_TAB">Defines the tab
stops distance.</ahelp></paragraph>
<embed href="text/shared/optionen/01040900.xhp#aktu"/>
-<paragraph role="heading" id="hd_id3155135" xml-lang="en-US" level="2"
l10n="U" oldref="3">Input settings</paragraph>
+<paragraph role="heading" id="hd_id3155135" xml-lang="en-US" level="2"
l10n="U">Input settings</paragraph>
<bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_ALIGN"
id="bm_id3155389" localize="false"/>
<bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCPAGE_LAYOUT:LB_ALIGN"
id="bm_id3153666" localize="false"/>
-<paragraph role="heading" id="hd_id3148491" xml-lang="en-US" level="3"
l10n="U" oldref="5">Press Enter to move selection</paragraph>
-<paragraph role="paragraph" id="par_id3145119" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid="SC_LISTBOX_RID_SCPAGE_LAYOUT_LB_ALIGN">Determines the
direction that the cursor in the spreadsheet will move after you press the
Enter key.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3148491" xml-lang="en-US" level="3"
l10n="U">Press Enter to move selection</paragraph>
+<paragraph role="paragraph" id="par_id3145119" xml-lang="en-US"
l10n="U"><ahelp hid="SC_LISTBOX_RID_SCPAGE_LAYOUT_LB_ALIGN">Determines the
direction that the cursor in the spreadsheet will move after you press the
Enter key.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_EDITMODE" id="bm_id3151245"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/.uno:SetInputMode" id="bm_id3079317"
localize="false"/><comment>see i53756</comment>
-<paragraph role="heading" id="hd_id3154307" xml-lang="en-US" level="3"
l10n="U" oldref="8">Press Enter to switch to edit mode</paragraph>
-<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US" l10n="U"
oldref="9"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_EDITMODE">Allows you to
immediately edit the selected cell after pressing the Enter
key.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154307" xml-lang="en-US" level="3"
l10n="U">Press Enter to switch to edit mode</paragraph>
+<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US"
l10n="U"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_EDITMODE">Allows you to
immediately edit the selected cell after pressing the Enter
key.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_FORMAT" id="bm_id3148946"
localize="false"/>
-<paragraph role="heading" id="hd_id3153896" xml-lang="en-US" level="3"
l10n="U" oldref="10">Expand formatting</paragraph>
-<paragraph role="paragraph" id="par_id3150400" xml-lang="en-US" l10n="CHG"
oldref="11"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_FORMAT">Specifies
whether to automatically apply the formatting attributes of the selected cell
to the empty adjacent cells.</ahelp> If, for example, the contents of the
selected cell have the bold attribute, this bold attribute will also apply to
adjacent cells. Cells that already have a special format will not be modified
by this function. You can see the [...]
+<paragraph role="heading" id="hd_id3153896" xml-lang="en-US" level="3"
l10n="U">Expand formatting</paragraph>
+<paragraph role="paragraph" id="par_id3150400" xml-lang="en-US"
l10n="CHG"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_FORMAT">Specifies
whether to automatically apply the formatting attributes of the selected cell
to the empty adjacent cells.</ahelp> If, for example, the contents of the
selected cell have the bold attribute, this bold attribute will also apply to
adjacent cells. Cells that already have a special format will not be modified
by this function. You can see the range in que [...]
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + *
(multiplication sign on the number pad) shortcut. This format also applies to
all new values inserted within this range. The normal default settings apply to
cells outside this range.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_EXPREF" id="bm_id3145419"
localize="false"/>
-<paragraph role="heading" id="hd_id3148451" xml-lang="en-US" level="3"
l10n="U" oldref="14">Expand references when new columns/rows are
inserted</paragraph>
-<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U"
oldref="15"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_EXPREF">Specifies
whether to expand references when inserting columns or rows adjacent to the
reference range. This is only possible if the reference range, where the column
or row is inserted, originally spanned at least two cells in the desired
direction.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U"
oldref="16">
-<emph>Example:</emph> If the range A1:B1 is referenced in a formula and you
insert a new column after column B, the reference is expanded to A1:C1. If the
range A1:B1 is referenced and a new row is inserted under row 1, the reference
is not expanded, since there is only a single cell in the vertical
direction.</paragraph>
-<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U"
oldref="17">If you insert rows or columns in the middle of a reference area,
the reference is always expanded.</paragraph>
+<paragraph role="heading" id="hd_id3148451" xml-lang="en-US" level="3"
l10n="U">Expand references when new columns/rows are inserted</paragraph>
+<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US"
l10n="U"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_EXPREF">Specifies whether
to expand references when inserting columns or rows adjacent to the reference
range. This is only possible if the reference range, where the column or row is
inserted, originally spanned at least two cells in the desired
direction.</ahelp></paragraph>
+<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US"
l10n="U"><emph>Example:</emph> If the range A1:B1 is referenced in a formula
and you insert a new column after column B, the reference is expanded to A1:C1.
If the range A1:B1 is referenced and a new row is inserted under row 1, the
reference is not expanded, since there is only a single cell in the vertical
direction.</paragraph>
+<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U">If
you insert rows or columns in the middle of a reference area, the reference is
always expanded.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_MARKHDR" id="bm_id3151380"
localize="false"/>
-<paragraph role="heading" id="hd_id3151176" xml-lang="en-US" level="3"
l10n="U" oldref="18">Highlight selection in column/row headings</paragraph>
-<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US" l10n="U"
oldref="19"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_MARKHDR">Specifies
whether to highlight column and row headers in the selected columns or
rows.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151176" xml-lang="en-US" level="3"
l10n="U">Highlight selection in column/row headings</paragraph>
+<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US"
l10n="U"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_MARKHDR">Specifies
whether to highlight column and row headers in the selected columns or
rows.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_TEXTFMT" id="bm_id3153770"
localize="false"/>
-<paragraph role="heading" id="hd_id3159252" xml-lang="en-US" level="3"
l10n="U" oldref="25">Use printer metrics for text formatting</paragraph>
-<paragraph role="paragraph" id="par_id3145366" xml-lang="en-US" l10n="U"
oldref="26"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_TEXTFMT">Specifies
that printer metrics are applied for printing and also for formatting the
display on the screen.</ahelp> If this box is not checked, a printer
independent layout will be used for screen display and printing.</paragraph>
+<paragraph role="heading" id="hd_id3159252" xml-lang="en-US" level="3"
l10n="U">Use printer metrics for text formatting</paragraph>
+<paragraph role="paragraph" id="par_id3145366" xml-lang="en-US"
l10n="U"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_TEXTFMT">Specifies that
printer metrics are applied for printing and also for formatting the display on
the screen.</ahelp> If this box is not checked, a printer independent layout
will be used for screen display and printing.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sc:CheckBox:RID_SCPAGE_LAYOUT:CB_REPLWARN" id="bm_id3153363"
localize="false"/>
-<paragraph role="heading" id="hd_id3146146" xml-lang="en-US" level="3"
l10n="U" oldref="27">Show overwrite warning when pasting data</paragraph>
-<paragraph role="paragraph" id="par_id3150872" xml-lang="en-US" l10n="U"
oldref="28"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_REPLWARN">Specifies
that, when you paste cells from the clipboard to a cell range that is not
empty, a warning appears.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3146146" xml-lang="en-US" level="3"
l10n="U">Show overwrite warning when pasting data</paragraph>
+<paragraph role="paragraph" id="par_id3150872" xml-lang="en-US"
l10n="U"><ahelp hid="SC_CHECKBOX_RID_SCPAGE_LAYOUT_CB_REPLWARN">Specifies that,
when you paste cells from the clipboard to a cell range that is not empty, a
warning appears.</ahelp></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/01/04070200.xhp
b/main/helpcontent2/source/text/swriter/01/04070200.xhp
index 522d8c1483..1af0d95ebc 100644
--- a/main/helpcontent2/source/text/swriter/01/04070200.xhp
+++ b/main/helpcontent2/source/text/swriter/01/04070200.xhp
@@ -31,57 +31,57 @@
<body>
<section id="format">
<bookmark xml-lang="en-US" branch="hid/SW_HID_ENV_FMT" id="bm_id3149286"
localize="false"/>
-<paragraph role="heading" id="hd_id3151180" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/swriter/01/04070200.xhp"
name="Format">Format</link></paragraph>
-<paragraph role="paragraph" id="par_id3149295" xml-lang="en-US" l10n="U"
oldref="2"><ahelp hid="HID_ENV_FMT">Specifies the layout and the dimension of
the envelope.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151180" xml-lang="en-US" level="1"
l10n="U"><link href="text/swriter/01/04070200.xhp"
name="Format">Format</link></paragraph>
+<paragraph role="paragraph" id="par_id3149295" xml-lang="en-US"
l10n="U"><ahelp hid="HID_ENV_FMT">Specifies the layout and the dimension of the
envelope.</ahelp></paragraph>
</section>
<section id="howtoget">
<embed href="text/swriter/00/00000404.xhp#formatbr"/>
</section>
-<paragraph role="heading" id="hd_id3147515" xml-lang="en-US" level="2"
l10n="U" oldref="42">Addressee</paragraph>
-<paragraph role="paragraph" id="par_id3154105" xml-lang="en-US" l10n="U"
oldref="43">Sets the position and the text formatting options of the addressee
field.</paragraph>
-<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="2"
l10n="U" oldref="3">Position</paragraph>
-<paragraph role="paragraph" id="par_id3154563" xml-lang="en-US" l10n="U"
oldref="4">Sets the position of the recipient's address on the
envelope.</paragraph>
+<paragraph role="heading" id="hd_id3147515" xml-lang="en-US" level="2"
l10n="U">Addressee</paragraph>
+<paragraph role="paragraph" id="par_id3154105" xml-lang="en-US" l10n="U">Sets
the position and the text formatting options of the addressee field.</paragraph>
+<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="2"
l10n="U">Position</paragraph>
+<paragraph role="paragraph" id="par_id3154563" xml-lang="en-US" l10n="U">Sets
the position of the recipient's address on the envelope.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:MetricField:TP_ENV_FMT:FLD_ADDR_LEFT" id="bm_id3154482"
localize="false"/>
-<paragraph role="heading" id="hd_id3154471" xml-lang="en-US" level="3"
l10n="U" oldref="15">from left</paragraph>
-<paragraph role="paragraph" id="par_id3152957" xml-lang="en-US" l10n="U"
oldref="16"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_ADDR_LEFT">Enter the
amount of space that you want to leave between the left edge of the envelope
and the addressee field.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154471" xml-lang="en-US" level="3"
l10n="U">from left</paragraph>
+<paragraph role="paragraph" id="par_id3152957" xml-lang="en-US"
l10n="U"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_ADDR_LEFT">Enter the amount
of space that you want to leave between the left edge of the envelope and the
addressee field.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:MetricField:TP_ENV_FMT:FLD_ADDR_TOP"
id="bm_id3153675" localize="false"/>
-<paragraph role="heading" id="hd_id3151319" xml-lang="en-US" level="3"
l10n="U" oldref="17">from top</paragraph>
-<paragraph role="paragraph" id="par_id3155895" xml-lang="en-US" l10n="U"
oldref="18"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_ADDR_TOP">Enter the
amount of space that you want to leave between the top edge of the envelope and
the addressee field.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151319" xml-lang="en-US" level="3"
l10n="U">from top</paragraph>
+<paragraph role="paragraph" id="par_id3155895" xml-lang="en-US"
l10n="U"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_ADDR_TOP">Enter the amount
of space that you want to leave between the top edge of the envelope and the
addressee field.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:MenuButton:TP_ENV_FMT:BTN_ADDR_EDIT"
id="bm_id3154195" localize="false"/>
-<paragraph role="heading" id="hd_id3149692" xml-lang="en-US" level="2"
l10n="CHG" oldref="5">Edit</paragraph>
-<paragraph role="paragraph" id="par_id3154201" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid="SW:MENUBUTTON:TP_ENV_FMT:BTN_ADDR_EDIT">Click and choose
the text formatting style for the addressee field that you want to
edit.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3143272" xml-lang="en-US" level="4"
l10n="U" oldref="7">Character</paragraph>
-<paragraph role="paragraph" id="par_id3149481" xml-lang="en-US" l10n="U"
oldref="8">Opens a dialog where you can edit the character formatting that is
used in the addressee field.</paragraph>
-<paragraph role="heading" id="hd_id3149815" xml-lang="en-US" level="4"
l10n="U" oldref="11">Paragraph</paragraph>
-<paragraph role="paragraph" id="par_id3149828" xml-lang="en-US" l10n="U"
oldref="12">Opens a dialog where you can edit the paragraph formatting that is
used in the addressee field.</paragraph>
-<paragraph role="heading" id="hd_id3151262" xml-lang="en-US" level="2"
l10n="U" oldref="44">Sender</paragraph>
-<paragraph role="paragraph" id="par_id3149107" xml-lang="en-US" l10n="U"
oldref="45">Sets the position and the text formatting options of the sender
field.</paragraph>
-<paragraph role="heading" id="hd_id3148980" xml-lang="en-US" level="2"
l10n="U" oldref="46">Position</paragraph>
-<paragraph role="paragraph" id="par_id3149041" xml-lang="en-US" l10n="U"
oldref="47">Sets the position of the sender's address on the
envelope.</paragraph>
+<paragraph role="heading" id="hd_id3149692" xml-lang="en-US" level="2"
l10n="CHG">Edit</paragraph>
+<paragraph role="paragraph" id="par_id3154201" xml-lang="en-US"
l10n="U"><ahelp hid="SW:MENUBUTTON:TP_ENV_FMT:BTN_ADDR_EDIT">Click and choose
the text formatting style for the addressee field that you want to
edit.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3143272" xml-lang="en-US" level="4"
l10n="U">Character</paragraph>
+<paragraph role="paragraph" id="par_id3149481" xml-lang="en-US" l10n="U">Opens
a dialog where you can edit the character formatting that is used in the
addressee field.</paragraph>
+<paragraph role="heading" id="hd_id3149815" xml-lang="en-US" level="4"
l10n="U">Paragraph</paragraph>
+<paragraph role="paragraph" id="par_id3149828" xml-lang="en-US" l10n="U">Opens
a dialog where you can edit the paragraph formatting that is used in the
addressee field.</paragraph>
+<paragraph role="heading" id="hd_id3151262" xml-lang="en-US" level="2"
l10n="U">Sender</paragraph>
+<paragraph role="paragraph" id="par_id3149107" xml-lang="en-US" l10n="U">Sets
the position and the text formatting options of the sender field.</paragraph>
+<paragraph role="heading" id="hd_id3148980" xml-lang="en-US" level="2"
l10n="U">Position</paragraph>
+<paragraph role="paragraph" id="par_id3149041" xml-lang="en-US" l10n="U">Sets
the position of the sender's address on the envelope.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:MetricField:TP_ENV_FMT:FLD_SEND_LEFT" id="bm_id3152769"
localize="false"/>
-<paragraph role="heading" id="hd_id3153636" xml-lang="en-US" level="3"
l10n="U" oldref="29">from left</paragraph>
-<paragraph role="paragraph" id="par_id3152776" xml-lang="en-US" l10n="U"
oldref="30"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_SEND_LEFT">Enter the
amount of space that you want to leave between the left edge of the envelope
and the sender field.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153636" xml-lang="en-US" level="3"
l10n="U">from left</paragraph>
+<paragraph role="paragraph" id="par_id3152776" xml-lang="en-US"
l10n="U"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_SEND_LEFT">Enter the amount
of space that you want to leave between the left edge of the envelope and the
sender field.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:MetricField:TP_ENV_FMT:FLD_SEND_TOP"
id="bm_id3155142" localize="false"/>
-<paragraph role="heading" id="hd_id3145766" xml-lang="en-US" level="3"
l10n="U" oldref="31">from top</paragraph>
-<paragraph role="paragraph" id="par_id3155149" xml-lang="en-US" l10n="U"
oldref="32"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_SEND_TOP">Enter the
amount of space that you want to leave between the top edge of the envelope and
the sender field.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145766" xml-lang="en-US" level="3"
l10n="U">from top</paragraph>
+<paragraph role="paragraph" id="par_id3155149" xml-lang="en-US"
l10n="U"><ahelp hid="SW:METRICFIELD:TP_ENV_FMT:FLD_SEND_TOP">Enter the amount
of space that you want to leave between the top edge of the envelope and the
sender field.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:MenuButton:TP_ENV_FMT:BTN_SEND_EDIT"
id="bm_id3156274" localize="false"/>
-<paragraph role="heading" id="hd_id3149179" xml-lang="en-US" level="2"
l10n="CHG" oldref="19">Edit</paragraph>
-<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="U"
oldref="20"><ahelp hid="SW:MENUBUTTON:TP_ENV_FMT:BTN_SEND_EDIT">Click and
choose the text formatting style for the sender field that you want to
edit.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3145787" xml-lang="en-US" level="4"
l10n="U" oldref="21">Character</paragraph>
-<paragraph role="paragraph" id="par_id3155918" xml-lang="en-US" l10n="U"
oldref="22">Opens a dialog where you can edit the character formatting that is
used in the sender field.</paragraph>
-<paragraph role="heading" id="hd_id3151378" xml-lang="en-US" level="4"
l10n="U" oldref="25">Paragraph</paragraph>
-<paragraph role="paragraph" id="par_id3150112" xml-lang="en-US" l10n="U"
oldref="26">Opens a dialog where you can edit the paragraph formatting that is
used in the sender field.</paragraph>
-<paragraph role="heading" id="hd_id3150687" xml-lang="en-US" level="2"
l10n="U" oldref="34">Size</paragraph>
-<paragraph role="paragraph" id="par_id3150700" xml-lang="en-US" l10n="U"
oldref="35">Select the envelope size format that you want to use, or create a
custom size.</paragraph>
+<paragraph role="heading" id="hd_id3149179" xml-lang="en-US" level="2"
l10n="CHG">Edit</paragraph>
+<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US"
l10n="U"><ahelp hid="SW:MENUBUTTON:TP_ENV_FMT:BTN_SEND_EDIT">Click and choose
the text formatting style for the sender field that you want to
edit.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145787" xml-lang="en-US" level="4"
l10n="U">Character</paragraph>
+<paragraph role="paragraph" id="par_id3155918" xml-lang="en-US" l10n="U">Opens
a dialog where you can edit the character formatting that is used in the sender
field.</paragraph>
+<paragraph role="heading" id="hd_id3151378" xml-lang="en-US" level="4"
l10n="U">Paragraph</paragraph>
+<paragraph role="paragraph" id="par_id3150112" xml-lang="en-US" l10n="U">Opens
a dialog where you can edit the paragraph formatting that is used in the sender
field.</paragraph>
+<paragraph role="heading" id="hd_id3150687" xml-lang="en-US" level="2"
l10n="U">Size</paragraph>
+<paragraph role="paragraph" id="par_id3150700" xml-lang="en-US"
l10n="U">Select the envelope size format that you want to use, or create a
custom size.</paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENV_FMT:BOX_SIZE_FORMAT"
id="bm_id3147416" localize="false"/>
-<paragraph role="heading" id="hd_id3155868" xml-lang="en-US" level="3"
l10n="U" oldref="36">Format</paragraph>
-<paragraph role="paragraph" id="par_id3147422" xml-lang="en-US" l10n="U"
oldref="37"><ahelp hid="SW_LISTBOX_TP_ENV_FMT_BOX_SIZE_FORMAT">Select the
envelope size that want, or select "User Defined", and then enter the width and
the height of the custom size.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3155868" xml-lang="en-US" level="3"
l10n="U">Format</paragraph>
+<paragraph role="paragraph" id="par_id3147422" xml-lang="en-US"
l10n="U"><ahelp hid="SW_LISTBOX_TP_ENV_FMT_BOX_SIZE_FORMAT">Select the envelope
size that want, or select "User Defined", and then enter the width and the
height of the custom size.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:MetricField:TP_ENV_FMT:FLD_SIZE_WIDTH" id="bm_id3145268"
localize="false"/>
-<paragraph role="heading" id="hd_id3145256" xml-lang="en-US" level="3"
l10n="U" oldref="38">Width</paragraph>
-<paragraph role="paragraph" id="par_id3149551" xml-lang="en-US" l10n="U"
oldref="39"><ahelp hid="SW_METRICFIELD_TP_ENV_FMT_FLD_SIZE_WIDTH">Enter the
width of the envelope.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3145256" xml-lang="en-US" level="3"
l10n="U">Width</paragraph>
+<paragraph role="paragraph" id="par_id3149551" xml-lang="en-US"
l10n="U"><ahelp hid="SW_METRICFIELD_TP_ENV_FMT_FLD_SIZE_WIDTH">Enter the width
of the envelope.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:MetricField:TP_ENV_FMT:FLD_SIZE_HEIGHT" id="bm_id3150554"
localize="false"/>
-<paragraph role="heading" id="hd_id3149567" xml-lang="en-US" level="3"
l10n="U" oldref="40">Height</paragraph>
-<paragraph role="paragraph" id="par_id3150561" xml-lang="en-US" l10n="U"
oldref="41"><ahelp hid="SW_METRICFIELD_TP_ENV_FMT_FLD_SIZE_HEIGHT">Enter the
height of the envelope.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149567" xml-lang="en-US" level="3"
l10n="U">Height</paragraph>
+<paragraph role="paragraph" id="par_id3150561" xml-lang="en-US"
l10n="U"><ahelp hid="SW_METRICFIELD_TP_ENV_FMT_FLD_SIZE_HEIGHT">Enter the
height of the envelope.</ahelp></paragraph>
<embed href="text/shared/00/00000001.xhp#vorschau"/>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/conditional_text.xhp
b/main/helpcontent2/source/text/swriter/guide/conditional_text.xhp
index 4ae919deb1..cd481b36c5 100644
--- a/main/helpcontent2/source/text/swriter/guide/conditional_text.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/conditional_text.xhp
@@ -36,68 +36,65 @@
<bookmark_value>text; conditional text</bookmark_value>
<bookmark_value>defining;conditions</bookmark_value>
</bookmark>
-<paragraph xml-lang="en-US" id="hd_id3155619" role="heading" level="1"
l10n="U" oldref="4"><variable id="conditional_text"><link
href="text/swriter/guide/conditional_text.xhp" name="Conditional
Text">Conditional Text</link>
+<paragraph xml-lang="en-US" id="hd_id3155619" role="heading" level="1"
l10n="U"><variable id="conditional_text"><link
href="text/swriter/guide/conditional_text.xhp" name="Conditional
Text">Conditional Text</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155879" role="paragraph" l10n="U"
oldref="5">You can set up fields in your document that display text when a
condition that you define is met. For example, you can define the conditional
text that is displayed in a series of reminder letters.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155895" role="paragraph" l10n="U"
oldref="6">Setting up conditional text in this example is a two-part process.
First you create a variable, and then you create the condition.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3153175" role="heading" level="2" l10n="U"
-oldref="61">To Define a Conditional Variable</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153185" role="paragraph" l10n="U"
oldref="62">The first part of the example is to define a variable for the
condition statement.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155879" role="paragraph" l10n="U">You
can set up fields in your document that display text when a condition that you
define is met. For example, you can define the conditional text that is
displayed in a series of reminder letters.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155895" role="paragraph"
l10n="U">Setting up conditional text in this example is a two-part process.
First you create a variable, and then you create the condition.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153175" role="heading" level="2"
l10n="U">To Define a Conditional Variable</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153185" role="paragraph" l10n="U">The
first part of the example is to define a variable for the condition
statement.</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155566" role="listitem" l10n="U"
oldref="8">Choose <item type="menuitem">Insert - Fields - Other</item>, and
then click the <item type="menuitem">Variables</item> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155566" role="listitem" l10n="U">Choose
<item type="menuitem">Insert - Fields - Other</item>, and then click the <item
type="menuitem">Variables</item> tab.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147759" role="listitem" l10n="U"
oldref="9">Click "Set variable" in the <item type="menuitem">Type</item>
list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147759" role="listitem" l10n="U">Click
"Set variable" in the <item type="menuitem">Type</item> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147784" role="listitem" l10n="U"
oldref="10">Type a name for the variable in the <item
type="menuitem">Name</item> box, for example <item
type="literal">Reminder</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147784" role="listitem" l10n="U">Type a
name for the variable in the <item type="menuitem">Name</item> box, for example
<item type="literal">Reminder</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147810" role="listitem" l10n="U"
oldref="57">Click "Text" in the <item type="menuitem">Format</item>
list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147810" role="listitem" l10n="U">Click
"Text" in the <item type="menuitem">Format</item> list.</paragraph>
</listitem>
<listitem>
<paragraph xml-lang="en-US" id="par_id7748344" role="listitem"
l10n="NEW">Enter <item type="literal">1</item> in the <item
type="menuitem">Value</item> box, and then click <item
type="menuitem">Insert</item>.<br/>The Format list now displays a "General"
format.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3145645" role="heading" level="2" l10n="U"
-oldref="63">To Define a Condition and the Conditional Text</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145659" role="paragraph" l10n="U"
oldref="64">The second part of the example is to define the condition that must
be met, and to insert a placeholder for displaying the conditional text in your
document.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145645" role="heading" level="2"
l10n="U">To Define a Condition and the Conditional Text</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145659" role="paragraph" l10n="U">The
second part of the example is to define the condition that must be met, and to
insert a placeholder for displaying the conditional text in your
document.</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3151193" role="listitem" l10n="U"
oldref="12">Place the cursor where you want to insert the conditional text in
your text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151193" role="listitem" l10n="U">Place
the cursor where you want to insert the conditional text in your
text.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3151212" role="listitem" l10n="U"
oldref="65">Choose <item type="menuitem">Insert - Fields - Other</item>, and
then click the <item type="menuitem">Functions</item> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151212" role="listitem" l10n="U">Choose
<item type="menuitem">Insert - Fields - Other</item>, and then click the <item
type="menuitem">Functions</item> tab.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3151250" role="listitem" l10n="U"
oldref="13">Click "Conditional text" in the <item type="menuitem">Type</item>
list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151250" role="listitem" l10n="U">Click
"Conditional text" in the <item type="menuitem">Type</item> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155936" role="listitem" l10n="U"
oldref="14">Type <item type="literal">Reminder EQ "3"</item> in the <item
type="menuitem">Condition</item> box. In other words, the conditional text will
be displayed when the variable in the field that you defined in the first part
of this example is equal to three.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155969" role="listitem" l10n="U"
oldref="15">The quotation marks enclosing the "3" indicate that the variable
that you defined in the first part of this example is a text string.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155936" role="listitem" l10n="U">Type
<item type="literal">Reminder EQ "3"</item> in the <item
type="menuitem">Condition</item> box. In other words, the conditional text will
be displayed when the variable in the field that you defined in the first part
of this example is equal to three.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155969" role="listitem" l10n="U">The
quotation marks enclosing the "3" indicate that the variable that you defined
in the first part of this example is a text string.</paragraph>
</listitem>
</list>
<list type="ordered" startwith="5">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150446" role="listitem" l10n="U"
oldref="16">Type the text that you want to display when the condition is met in
the <emph>Then</emph> box. There is almost no limit to the length of the text
that you can enter. You can paste a paragraph into this box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150446" role="listitem" l10n="U">Type
the text that you want to display when the condition is met in the
<emph>Then</emph> box. There is almost no limit to the length of the text that
you can enter. You can paste a paragraph into this box.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150473" role="listitem" l10n="U"
oldref="17">Click <emph>Insert</emph>, and then click
<emph>Close</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150473" role="listitem" l10n="U">Click
<emph>Insert</emph>, and then click <emph>Close</emph>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3155073" role="heading" level="2" l10n="U"
-oldref="66">To Display the Conditional Text</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155086" role="paragraph" l10n="U"
oldref="67">In this example, the conditional text is displayed when the value
of the conditional variable is equal to 3.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155073" role="heading" level="2"
l10n="U">To Display the Conditional Text</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155086" role="paragraph" l10n="U">In
this example, the conditional text is displayed when the value of the
conditional variable is equal to 3.</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155110" role="listitem" l10n="U"
oldref="19">Place your cursor in front of the field that you defined in the
first part of this example, and then choose <emph>Edit -
Fields</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155110" role="listitem" l10n="U">Place
your cursor in front of the field that you defined in the first part of this
example, and then choose <emph>Edit - Fields</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155136" role="listitem" l10n="U"
oldref="68">Replace the number in the <item type="menuitem">Value</item> box
with 3, and then click <item type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155136" role="listitem"
l10n="U">Replace the number in the <item type="menuitem">Value</item> box with
3, and then click <item type="menuitem">Close</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155168" role="listitem" l10n="U"
oldref="20">If the field does not automatically update, press F9.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155168" role="listitem" l10n="U">If the
field does not automatically update, press F9.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
diff --git a/main/helpcontent2/source/text/swriter/guide/hidden_text.xhp
b/main/helpcontent2/source/text/swriter/guide/hidden_text.xhp
index fb7832ae43..84c2d6d3a9 100644
--- a/main/helpcontent2/source/text/swriter/guide/hidden_text.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/hidden_text.xhp
@@ -36,90 +36,87 @@
<bookmark_value>hiding;text, with conditions</bookmark_value>
<bookmark_value>variables;for hiding text</bookmark_value>
</bookmark><comment>mw deleted "comparisons;" and copied two entries to
hidden_text_display.xhp and 2 entries to
nonprintable_text.xhp</comment><comment>MW added "variables;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3148856" role="heading" level="1"
l10n="U" oldref="1"><variable id="hidden_text"><link
href="text/swriter/guide/hidden_text.xhp" name="Hiding Text">Hiding Text</link>
+<paragraph xml-lang="en-US" id="hd_id3148856" role="heading" level="1"
l10n="U"><variable id="hidden_text"><link
href="text/swriter/guide/hidden_text.xhp" name="Hiding Text">Hiding Text</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3150103" role="paragraph" l10n="U"
oldref="2">You can use fields and sections to hide or display text in your
document if a condition is met.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153409" role="paragraph" l10n="U"
oldref="19">Before you can hide text, you must first create a variable to use
in the condition for hiding the text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150103" role="paragraph" l10n="U">You
can use fields and sections to hide or display text in your document if a
condition is met.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153409" role="paragraph"
l10n="U">Before you can hide text, you must first create a variable to use in
the condition for hiding the text.</paragraph>
<paragraph xml-lang="en-US" id="hd_id5174108" role="heading" level="2"
l10n="NEW">To Create a Variable</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153131" role="listitem" l10n="U"
oldref="20">Click in your document and choose <emph>Insert - Fields -
Other</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153131" role="listitem" l10n="U">Click
in your document and choose <emph>Insert - Fields - Other</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149640" role="listitem" l10n="U"
oldref="21">Click the <emph>Variables</emph> tab and click "Set Variable" in
the <emph>Type</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149640" role="listitem" l10n="U">Click
the <emph>Variables</emph> tab and click "Set Variable" in the
<emph>Type</emph> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149970" role="listitem" l10n="U"
oldref="22">Click "General" in the <emph>Format</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149970" role="listitem" l10n="U">Click
"General" in the <emph>Format</emph> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149620" role="listitem" l10n="U"
oldref="23">Type a name for the variable in the <item
type="menuitem">Name</item> box, for example, <item
type="literal">Hide</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149620" role="listitem" l10n="U">Type a
name for the variable in the <item type="menuitem">Name</item> box, for
example, <item type="literal">Hide</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149869" role="listitem" l10n="U"
oldref="24">Enter a value for the variable in the <item
type="menuitem">Value</item> box, for example, <item
type="literal">1</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149869" role="listitem" l10n="U">Enter
a value for the variable in the <item type="menuitem">Value</item> box, for
example, <item type="literal">1</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145108" role="listitem" l10n="U"
oldref="25">To hide the variable in your document, select
<emph>Invisible</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145108" role="listitem" l10n="U">To
hide the variable in your document, select <emph>Invisible</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149585" role="listitem" l10n="U"
oldref="26">Click <item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149585" role="listitem" l10n="U">Click
<item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3156245" role="heading" level="2" l10n="U"
-oldref="27">To Hide Text</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3156245" role="heading" level="2"
l10n="U">To Hide Text</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145391" role="listitem" l10n="U"
oldref="28">Click in the document where you want to add the text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145391" role="listitem" l10n="U">Click
in the document where you want to add the text.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145409" role="listitem" l10n="U"
oldref="5">Choose <emph>Insert - Fields - Other</emph> and click the
<emph>Functions</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145409" role="listitem" l10n="U">Choose
<emph>Insert - Fields - Other</emph> and click the <emph>Functions</emph>
tab.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155325" role="listitem" l10n="U"
oldref="29">Click "Hidden Text" in the <emph>Type</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155325" role="listitem" l10n="U">Click
"Hidden Text" in the <emph>Type</emph> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154404" role="listitem" l10n="U"
oldref="30">Enter a statement in the <item type="menuitem">Condition</item>
box. For example, using the variable you previously defined, enter <item
type="literal">Hide==1</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154404" role="listitem" l10n="U">Enter
a statement in the <item type="menuitem">Condition</item> box. For example,
using the variable you previously defined, enter <item
type="literal">Hide==1</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153371" role="listitem" l10n="U"
oldref="31">Type the text that you want to hide in the <emph>Hidden text</emph>
box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153371" role="listitem" l10n="U">Type
the text that you want to hide in the <emph>Hidden text</emph> box.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154233" role="listitem" l10n="U"
oldref="32">Click <item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154233" role="listitem" l10n="U">Click
<item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3154256" role="heading" level="2" l10n="U"
-oldref="33">To Hide a Paragraph</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3154256" role="heading" level="2"
l10n="U">To Hide a Paragraph</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154853" role="listitem" l10n="U"
oldref="34">Click in the paragraph where you want to add the text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154853" role="listitem" l10n="U">Click
in the paragraph where you want to add the text.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154872" role="listitem" l10n="U"
oldref="35">Choose <emph>Insert - Fields - Other</emph> and click the
<emph>Functions</emph> tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154872" role="listitem" l10n="U">Choose
<emph>Insert - Fields - Other</emph> and click the <emph>Functions</emph>
tab.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155902" role="listitem" l10n="U"
oldref="6">Click "Hidden Paragraph" in the <emph>Type</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155902" role="listitem" l10n="U">Click
"Hidden Paragraph" in the <emph>Type</emph> list.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155947" role="listitem" l10n="U"
oldref="36">Enter a statement in the <item type="menuitem">Condition</item>
box. For example, using the variable you previously defined, enter <item
type="literal">Hide==1</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155947" role="listitem" l10n="U">Enter
a statement in the <item type="menuitem">Condition</item> box. For example,
using the variable you previously defined, enter <item
type="literal">Hide==1</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3149991" role="listitem" l10n="U"
oldref="37">Click <item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149991" role="listitem" l10n="U">Click
<item type="menuitem">Insert</item> and <item
type="menuitem">Close</item>.</paragraph>
</listitem>
</list>
<paragraph xml-lang="en-US" id="par_id3793450" role="note" l10n="NEW">You must
enable this feature by removing the check mark from menu <emph>View - Hidden
Paragraphs</emph>. When the check mark is set, you cannot hide any
paragraph.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3148675" role="heading" level="2" l10n="U"
-oldref="38">To Hide a Section</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3148675" role="heading" level="2"
l10n="U">To Hide a Section</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148697" role="listitem" l10n="U"
oldref="39">Select the text that you want to hide in your document.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148697" role="listitem" l10n="U">Select
the text that you want to hide in your document.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153019" role="listitem" l10n="U"
oldref="9">Choose <emph>Insert - Section</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153019" role="listitem" l10n="U">Choose
<emph>Insert - Section</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148950" role="listitem" l10n="U"
oldref="40">In the <item type="menuitem">Hide</item> area, select <item
type="menuitem">Hide</item>, and then enter an expression in the <item
type="menuitem">Condition</item> box. For example, using the variable you
previously defined, enter <item type="literal">Hide==1</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148950" role="listitem" l10n="U">In the
<item type="menuitem">Hide</item> area, select <item
type="menuitem">Hide</item>, and then enter an expression in the <item
type="menuitem">Condition</item> box. For example, using the variable you
previously defined, enter <item type="literal">Hide==1</item>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153636" role="listitem" l10n="U"
oldref="41">Click <item type="menuitem">Insert</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153636" role="listitem" l10n="U">Click
<item type="menuitem">Insert</item>.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
@@ -127,9 +124,9 @@ oldref="38">To Hide a Section</paragraph>
<embed href="text/swriter/guide/fields_userdata.xhp#fields_userdata"/>
<paragraph xml-lang="en-US" id="par_id3846858" role="paragraph"
l10n="NEW"><link href="text/swriter/guide/hidden_text_display.xhp"
name="Displaying Hidden Text">Displaying Hidden Text</link></paragraph>
<paragraph xml-lang="en-US" id="par_id8148442" role="paragraph"
l10n="NEW"><link href="text/swriter/guide/nonprintable_text.xhp" name="Creating
Non-printing Text">Creating Non-printing Text</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3148603" role="paragraph" l10n="U"
oldref="10"><link href="text/swriter/01/04090000.xhp" name="Insert - Fields -
Other">Insert - Fields - Other</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147011" role="paragraph" l10n="U"
oldref="11"><link href="text/swriter/01/04020000.xhp" name="Insert -
Section">Insert - Section</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147029" role="paragraph" l10n="U"
oldref="46"><link href="text/swriter/02/14020000.xhp" name="List of
Operators">List of Operators</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3148603" role="paragraph" l10n="U"><link
href="text/swriter/01/04090000.xhp" name="Insert - Fields - Other">Insert -
Fields - Other</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147011" role="paragraph" l10n="U"><link
href="text/swriter/01/04020000.xhp" name="Insert - Section">Insert -
Section</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147029" role="paragraph" l10n="U"><link
href="text/swriter/02/14020000.xhp" name="List of Operators">List of
Operators</link></paragraph>
</section>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/indices_literature.xhp
b/main/helpcontent2/source/text/swriter/guide/indices_literature.xhp
index b3f89e0efb..3070a0931f 100644
--- a/main/helpcontent2/source/text/swriter/guide/indices_literature.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/indices_literature.xhp
@@ -36,78 +36,73 @@
<bookmark_value>entries;bibliographies</bookmark_value>
<bookmark_value>storing bibliographic information</bookmark_value>
</bookmark>
-<paragraph xml-lang="en-US" id="hd_id3149687" role="heading" level="1" l10n="U"
-oldref="46"><variable id="indices_literature"><link
href="text/swriter/guide/indices_literature.xhp" name="Creating a
Bibliography">Creating a Bibliography</link>
+<paragraph xml-lang="en-US" id="hd_id3149687" role="heading" level="1"
l10n="U"><variable id="indices_literature"><link
href="text/swriter/guide/indices_literature.xhp" name="Creating a
Bibliography">Creating a Bibliography</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155864" role="paragraph" l10n="U"
oldref="60">A bibliography is a list of works that you reference in a
document.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3153402" role="heading" level="2" l10n="U"
-oldref="61">Storing Bibliographic Information</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153414" role="paragraph" l10n="U"
oldref="62">$[officename] stores bibliographic information in a bibliography
database, or in an individual document.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3154244" role="heading" level="3" l10n="U"
-oldref="63">To Store Information in the Bibliography Database</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155864" role="paragraph" l10n="U">A
bibliography is a list of works that you reference in a document.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153402" role="heading" level="2"
l10n="U">Storing Bibliographic Information</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153414" role="paragraph"
l10n="U">$[officename] stores bibliographic information in a bibliography
database, or in an individual document.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3154244" role="heading" level="3"
l10n="U">To Store Information in the Bibliography Database</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155872" role="listitem" l10n="U"
oldref="50">Choose <link href="text/shared/01/02250000.xhp" name="Tools -
Bibliography Database"><emph>Tools - Bibliography
Database</emph></link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3155872" role="listitem" l10n="U">Choose
<link href="text/shared/01/02250000.xhp" name="Tools - Bibliography
Database"><emph>Tools - Bibliography Database</emph></link></paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3155900" role="listitem" l10n="U"
oldref="64">Choose <emph>Insert - Record</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155900" role="listitem" l10n="U">Choose
<emph>Insert - Record</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147123" role="listitem" l10n="U"
oldref="65">Type a name for the bibliography entry in the <item
type="menuitem">Short name</item> box, and then add additional information to
the record in the remaining boxes.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147123" role="listitem" l10n="U">Type a
name for the bibliography entry in the <item type="menuitem">Short name</item>
box, and then add additional information to the record in the remaining
boxes.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150219" role="listitem" l10n="U"
oldref="66">Close the <item type="menuitem">Bibliography Database</item>
window.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150219" role="listitem" l10n="U">Close
the <item type="menuitem">Bibliography Database</item> window.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3150242" role="heading" level="3" l10n="U"
-oldref="67">To Store Bibliographic Information in an Individual
Document</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150242" role="heading" level="3"
l10n="U">To Store Bibliographic Information in an Individual
Document</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150945" role="listitem" l10n="U"
oldref="68">Click in your document where you want to add the bibliography
entry.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150945" role="listitem" l10n="U">Click
in your document where you want to add the bibliography entry.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150964" role="listitem" l10n="U"
oldref="51">Choose <link href="text/swriter/01/04120300.xhp" name="Insert -
Indexes and Tables - Bibliography Entry"><emph>Insert - Indexes and Tables -
Bibliography Entry</emph></link>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150964" role="listitem" l10n="U">Choose
<link href="text/swriter/01/04120300.xhp" name="Insert - Indexes and Tables -
Bibliography Entry"><emph>Insert - Indexes and Tables - Bibliography
Entry</emph></link>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150525" role="listitem" l10n="U"
oldref="69">Select <emph>From document content</emph> and click
<emph>New</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150525" role="listitem" l10n="U">Select
<emph>From document content</emph> and click <emph>New</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153738" role="listitem" l10n="U"
oldref="70">Type a name for the bibliography entry in the <item
type="menuitem">Short name</item> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153738" role="listitem" l10n="U">Type a
name for the bibliography entry in the <item type="menuitem">Short name</item>
box.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153763" role="listitem" l10n="U"
oldref="71">Select the publication source for the record in the <item
type="menuitem">Type</item> box, and then add additional information in the
remaining boxes.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153763" role="listitem" l10n="U">Select
the publication source for the record in the <item type="menuitem">Type</item>
box, and then add additional information in the remaining boxes.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3146873" role="listitem" l10n="U"
oldref="72">Click <emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146873" role="listitem" l10n="U">Click
<emph>OK</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3146897" role="listitem" l10n="U"
oldref="73">In the <item type="menuitem">Insert Bibliography Entry</item>
dialog, click <item type="menuitem">Insert</item>, and then <item
type="menuitem">Close</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146897" role="listitem" l10n="U">In the
<item type="menuitem">Insert Bibliography Entry</item> dialog, click <item
type="menuitem">Insert</item>, and then <item
type="menuitem">Close</item>.</paragraph>
</listitem>
</list>
<embed href="text/swriter/01/04120300.xhp#speicherhinweis"/>
-<paragraph xml-lang="en-US" id="hd_id3150741" role="heading" level="2" l10n="U"
-oldref="74">Inserting Bibliography Entries From the Bibliography
Database</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3150741" role="heading" level="2"
l10n="U">Inserting Bibliography Entries From the Bibliography
Database</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148402" role="listitem" l10n="U"
oldref="75">Click in your document where you want to add the bibliography
entry.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148402" role="listitem" l10n="U">Click
in your document where you want to add the bibliography entry.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148421" role="listitem" l10n="U"
oldref="52">Choose <emph>Insert - Indexes and Tables - Bibliography
Entry</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148421" role="listitem" l10n="U">Choose
<emph>Insert - Indexes and Tables - Bibliography Entry</emph>.</paragraph>
</listitem>
</list>
<list type="ordered" startwith="3">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153231" role="listitem" l10n="U"
oldref="53">Select <emph>From bibliography database</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153231" role="listitem" l10n="U">Select
<emph>From bibliography database</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147059" role="listitem" l10n="U"
oldref="54">Select the name of the bibliography entry that you want to insert
in the <item type="menuitem">Short name</item> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147059" role="listitem" l10n="U">Select
the name of the bibliography entry that you want to insert in the <item
type="menuitem">Short name</item> box.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3147085" role="listitem" l10n="U"
oldref="76">Click <emph>Insert</emph> and then click
<emph>Close</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147085" role="listitem" l10n="U">Click
<emph>Insert</emph> and then click <emph>Close</emph>.</paragraph>
</listitem>
</list>
<section id="relatedtopics">
-<paragraph xml-lang="en-US" id="par_id3156060" role="paragraph" l10n="U"
oldref="77"><link href="text/swriter/01/04120300.xhp" name="Bibliography
Database">Bibliography Database</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3156060" role="paragraph" l10n="U"><link
href="text/swriter/01/04120300.xhp" name="Bibliography Database">Bibliography
Database</link></paragraph>
<embed href="text/swriter/guide/indices_toc.xhp#indices_toc"/>
<embed href="text/swriter/guide/indices_enter.xhp#indices_enter"/>
<embed href="text/swriter/guide/indices_edit.xhp#indices_edit"/>