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 e67e67c0d7 Remove 'oldref' entries (work in progress)
e67e67c0d7 is described below
commit e67e67c0d7c4d82be32f12ce4c8e8233c4f7110e
Author: mseidel <[email protected]>
AuthorDate: Sun Jan 26 18:17:45 2025 +0100
Remove 'oldref' entries (work in progress)
---
.../source/text/sbasic/shared/03020101.xhp | 61 +++++++++++-----------
.../source/text/sbasic/shared/03020205.xhp | 50 +++++++++---------
.../source/text/sbasic/shared/03080101.xhp | 51 +++++++++---------
.../source/text/sbasic/shared/03100100.xhp | 46 ++++++++--------
.../source/text/scalc/guide/formula_enter.xhp | 20 +++----
.../source/text/shared/00/00000215.xhp | 36 ++++++-------
.../source/text/shared/01/05230500.xhp | 26 ++++-----
.../source/text/shared/optionen/01150200.xhp | 12 ++---
.../source/text/swriter/01/05150200.xhp | 35 ++++++-------
.../text/swriter/guide/stylist_fromselect.xhp | 31 +++++------
10 files changed, 179 insertions(+), 189 deletions(-)
diff --git a/main/helpcontent2/source/text/sbasic/shared/03020101.xhp
b/main/helpcontent2/source/text/sbasic/shared/03020101.xhp
index 9fdea6e2e5..5939e8a59c 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03020101.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03020101.xhp
@@ -33,37 +33,36 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3157896">
<bookmark_value>Close statement</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3157896" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03020101.xhp" name="Close
Statement [Runtime]">Close Statement [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" l10n="U"
oldref="2">Closes a specified file that was opened with the Open
statement.</paragraph>
+<paragraph role="heading" id="hd_id3157896" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03020101.xhp" name="Close Statement
[Runtime]">Close Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US"
l10n="U">Closes a specified file that was opened with the Open
statement.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="code" id="par_id3147265" xml-lang="en-US" l10n="U"
oldref="4">Close FileNumber As Integer[, FileNumber2 As
Integer[,...]]</paragraph>
-<paragraph role="heading" id="hd_id3153379" xml-lang="en-US" level="2"
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US" l10n="U"
oldref="6">
-<emph>FileNumber:</emph> Any integer expression that specifies the number of
the data channel that was opened with the <emph>Open</emph>
statement.</paragraph>
-<paragraph role="heading" id="hd_id3153192" xml-lang="en-US" level="2"
l10n="U" oldref="7">Example:</paragraph>
-<paragraph role="code" id="par_id3154909" xml-lang="en-US" l10n="U"
oldref="8">Sub ExampleWorkWithAFile</paragraph>
-<paragraph role="code" id="par_id3154124" xml-lang="en-US" l10n="U"
oldref="9">Dim iNumber As Integer</paragraph>
-<paragraph role="code" id="par_id3155132" xml-lang="en-US" l10n="U"
oldref="10">Dim sLine As String</paragraph>
-<paragraph role="code" id="par_id3155854" xml-lang="en-US" l10n="U"
oldref="11">Dim aFile As String</paragraph>
-<paragraph role="code" id="par_id3146985" xml-lang="en-US" l10n="U"
oldref="34">Dim sMsg as String</paragraph>
-<paragraph role="code" id="par_id3154013" xml-lang="en-US" l10n="U"
oldref="12">aFile = "c:\data.txt"</paragraph>
-<paragraph role="code" id="par_id3152598" xml-lang="en-US" l10n="CHG"
oldref="13">sMsg = ""</paragraph>
-<paragraph role="code" id="par_id3147427" xml-lang="en-US" l10n="U"
oldref="14">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3151112" xml-lang="en-US" l10n="U"
oldref="15">Open aFile For Output As #iNumber</paragraph>
-<paragraph role="code" id="par_id3153727" xml-lang="en-US" l10n="U"
oldref="16">Print #iNumber, "First line of text"</paragraph>
-<paragraph role="code" id="par_id3147350" xml-lang="en-US" l10n="U"
oldref="17">Print #iNumber, "Another line of text"</paragraph>
-<paragraph role="code" id="par_id3149667" xml-lang="en-US" l10n="U"
oldref="18">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3145801" xml-lang="en-US" l10n="U"
oldref="22">iNumber = Freefile</paragraph>
-<paragraph role="code" id="par_id3147396" xml-lang="en-US" l10n="U"
oldref="23">Open aFile For Input As iNumber</paragraph>
-<paragraph role="code" id="par_id3147124" xml-lang="en-US" l10n="U"
oldref="24">While not eof(iNumber)</paragraph>
-<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U"
oldref="25">Line Input #iNumber, sLine</paragraph>
-<paragraph role="code" id="par_id3149581" xml-lang="en-US" l10n="U"
oldref="26">If sLine <>"" then</paragraph>
-<paragraph role="code" id="par_id3155602" xml-lang="en-US" l10n="U"
oldref="27">sMsg = sMsg & sLine & chr(13)</paragraph>
-<paragraph role="code" id="par_id3154511" xml-lang="en-US" l10n="U"
oldref="29">end if</paragraph>
-<paragraph role="code" id="par_id3150749" xml-lang="en-US" l10n="U"
oldref="30">wend</paragraph>
-<paragraph role="code" id="par_id3156276" xml-lang="en-US" l10n="U"
oldref="31">Close #iNumber</paragraph>
-<paragraph role="code" id="par_id3155066" xml-lang="en-US" l10n="U"
oldref="35">Msgbox sMsg</paragraph>
-<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U"
oldref="32">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="code" id="par_id3147265" xml-lang="en-US" l10n="U">Close
FileNumber As Integer[, FileNumber2 As Integer[,...]]</paragraph>
+<paragraph role="heading" id="hd_id3153379" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US"
l10n="U"><emph>FileNumber:</emph> Any integer expression that specifies the
number of the data channel that was opened with the <emph>Open</emph>
statement.</paragraph>
+<paragraph role="heading" id="hd_id3153192" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3154909" xml-lang="en-US" l10n="U">Sub
ExampleWorkWithAFile</paragraph>
+<paragraph role="code" id="par_id3154124" xml-lang="en-US" l10n="U">Dim
iNumber As Integer</paragraph>
+<paragraph role="code" id="par_id3155132" xml-lang="en-US" l10n="U">Dim sLine
As String</paragraph>
+<paragraph role="code" id="par_id3155854" xml-lang="en-US" l10n="U">Dim aFile
As String</paragraph>
+<paragraph role="code" id="par_id3146985" xml-lang="en-US" l10n="U">Dim sMsg
as String</paragraph>
+<paragraph role="code" id="par_id3154013" xml-lang="en-US" l10n="U">aFile =
"c:\data.txt"</paragraph>
+<paragraph role="code" id="par_id3152598" xml-lang="en-US" l10n="CHG">sMsg =
""</paragraph>
+<paragraph role="code" id="par_id3147427" xml-lang="en-US" l10n="U">iNumber =
Freefile</paragraph>
+<paragraph role="code" id="par_id3151112" xml-lang="en-US" l10n="U">Open aFile
For Output As #iNumber</paragraph>
+<paragraph role="code" id="par_id3153727" xml-lang="en-US" l10n="U">Print
#iNumber, "First line of text"</paragraph>
+<paragraph role="code" id="par_id3147350" xml-lang="en-US" l10n="U">Print
#iNumber, "Another line of text"</paragraph>
+<paragraph role="code" id="par_id3149667" xml-lang="en-US" l10n="U">Close
#iNumber</paragraph>
+<paragraph role="code" id="par_id3145801" xml-lang="en-US" l10n="U">iNumber =
Freefile</paragraph>
+<paragraph role="code" id="par_id3147396" xml-lang="en-US" l10n="U">Open aFile
For Input As iNumber</paragraph>
+<paragraph role="code" id="par_id3147124" xml-lang="en-US" l10n="U">While not
eof(iNumber)</paragraph>
+<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U">Line Input
#iNumber, sLine</paragraph>
+<paragraph role="code" id="par_id3149581" xml-lang="en-US" l10n="U">If sLine
<>"" then</paragraph>
+<paragraph role="code" id="par_id3155602" xml-lang="en-US" l10n="U">sMsg =
sMsg & sLine & chr(13)</paragraph>
+<paragraph role="code" id="par_id3154511" xml-lang="en-US" l10n="U">end
if</paragraph>
+<paragraph role="code" id="par_id3150749" xml-lang="en-US"
l10n="U">wend</paragraph>
+<paragraph role="code" id="par_id3156276" xml-lang="en-US" l10n="U">Close
#iNumber</paragraph>
+<paragraph role="code" id="par_id3155066" xml-lang="en-US" l10n="U">Msgbox
sMsg</paragraph>
+<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U">End
Sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03020205.xhp
b/main/helpcontent2/source/text/sbasic/shared/03020205.xhp
index 92ccb1ce4a..921fb1b40e 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03020205.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03020205.xhp
@@ -33,34 +33,32 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3147229">
<bookmark_value>Write statement</bookmark_value>
</bookmark><comment>UFI: changed "Write function" to "Write
statement"</comment>
-<paragraph role="heading" id="hd_id3147229" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03020205.xhp" name="Write
Statement [Runtime]">Write Statement [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3154685" xml-lang="en-US" l10n="U"
oldref="2">Writes data to a sequential file.</paragraph>
+<paragraph role="heading" id="hd_id3147229" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03020205.xhp" name="Write Statement
[Runtime]">Write Statement [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3154685" xml-lang="en-US"
l10n="U">Writes data to a sequential file.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3150449" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="code" id="par_id3145785" xml-lang="en-US" l10n="CHG"
oldref="4">Write [#FileName], [Expressionlist]<comment>see
i61248</comment></paragraph>
-<paragraph role="heading" id="hd_id3151116" xml-lang="en-US" level="2"
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3153728" xml-lang="en-US" l10n="U"
oldref="6">
-<emph>FileName:</emph> Any numeric expression that contains the file number
that was set by the Open statement for the respective file.</paragraph>
-<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U"
oldref="7">
-<emph>Expressionlist:</emph> Variables or expressions that you want to enter
in a file, separated by commas.</paragraph>
-<paragraph role="paragraph" id="par_id3150010" xml-lang="en-US" l10n="CHG"
oldref="8">If the expression list is omitted, the <emph>Write</emph> statement
appends an empty line to the file.</paragraph>
-<paragraph role="paragraph" id="par_id3163713" xml-lang="en-US" l10n="U"
oldref="9">To add an expression list to a new or an existing file, the file
must be opened in the <emph>Output</emph> or <emph>Append</emph>
mode.</paragraph>
-<paragraph role="paragraph" id="par_id3147428" xml-lang="en-US" l10n="CHG"
oldref="10">Strings that you write are enclosed by quotation marks and
separated by commas. You do not need to enter these delimiters in the
expression list.</paragraph>
+<paragraph role="heading" id="hd_id3150449" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="code" id="par_id3145785" xml-lang="en-US" l10n="CHG">Write
[#FileName], [Expressionlist]<comment>see i61248</comment></paragraph>
+<paragraph role="heading" id="hd_id3151116" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3153728" xml-lang="en-US"
l10n="U"><emph>FileName:</emph> Any numeric expression that contains the file
number that was set by the Open statement for the respective file.</paragraph>
+<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US"
l10n="U"><emph>Expressionlist:</emph> Variables or expressions that you want to
enter in a file, separated by commas.</paragraph>
+<paragraph role="paragraph" id="par_id3150010" xml-lang="en-US" l10n="CHG">If
the expression list is omitted, the <emph>Write</emph> statement appends an
empty line to the file.</paragraph>
+<paragraph role="paragraph" id="par_id3163713" xml-lang="en-US" l10n="U">To
add an expression list to a new or an existing file, the file must be opened in
the <emph>Output</emph> or <emph>Append</emph> mode.</paragraph>
+<paragraph role="paragraph" id="par_id3147428" xml-lang="en-US"
l10n="CHG">Strings that you write are enclosed by quotation marks and separated
by commas. You do not need to enter these delimiters in the expression
list.</paragraph>
<paragraph role="paragraph" id="par_id1002838" xml-lang="en-US"
l10n="NEW">Each <emph>Write</emph> statement outputs a line end symbol as last
entry.</paragraph>
<paragraph role="paragraph" id="par_id6618854" xml-lang="en-US"
l10n="NEW">Numbers with decimal delimiters are converted according to the
locale settings.</paragraph>
-<paragraph role="heading" id="hd_id3151073" xml-lang="en-US" level="2"
l10n="U" oldref="11">Example:</paragraph>
-<paragraph role="code" id="par_id3145252" xml-lang="en-US" l10n="U"
oldref="12">Sub ExampleWrite</paragraph>
-<paragraph role="code" id="par_id3149958" xml-lang="en-US" l10n="U"
oldref="13">Dim iCount As Integer</paragraph>
-<paragraph role="code" id="par_id3156284" xml-lang="en-US" l10n="U"
oldref="14">Dim sValue As String</paragraph>
-<paragraph role="code" id="par_id3145645" xml-lang="en-US" l10n="U"
oldref="15">iCount = Freefile</paragraph>
-<paragraph role="code" id="par_id3153417" xml-lang="en-US" l10n="U"
oldref="16">open "C:\data.txt" for OutPut as iCount</paragraph>
-<paragraph role="code" id="par_id3149401" xml-lang="en-US" l10n="U"
oldref="17">sValue = "Hamburg"</paragraph>
-<paragraph role="code" id="par_id3156275" xml-lang="en-US" l10n="U"
oldref="18">Write #iCount,sValue,200</paragraph>
-<paragraph role="code" id="par_id3146913" xml-lang="en-US" l10n="U"
oldref="19">sValue = "New York"</paragraph>
-<paragraph role="code" id="par_id3155064" xml-lang="en-US" l10n="U"
oldref="20">Write #iCount,sValue,300</paragraph>
-<paragraph role="code" id="par_id3150322" xml-lang="en-US" l10n="U"
oldref="21">sValue = "Miami"</paragraph>
-<paragraph role="code" id="par_id3155766" xml-lang="en-US" l10n="U"
oldref="22">Write #iCount,sValue,450</paragraph>
-<paragraph role="code" id="par_id3145643" xml-lang="en-US" l10n="U"
oldref="23">close #iCount</paragraph>
-<paragraph role="code" id="par_id3150044" xml-lang="en-US" l10n="U"
oldref="24">end sub</paragraph>
+<paragraph role="heading" id="hd_id3151073" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3145252" xml-lang="en-US" l10n="U">Sub
ExampleWrite</paragraph>
+<paragraph role="code" id="par_id3149958" xml-lang="en-US" l10n="U">Dim iCount
As Integer</paragraph>
+<paragraph role="code" id="par_id3156284" xml-lang="en-US" l10n="U">Dim sValue
As String</paragraph>
+<paragraph role="code" id="par_id3145645" xml-lang="en-US" l10n="U">iCount =
Freefile</paragraph>
+<paragraph role="code" id="par_id3153417" xml-lang="en-US" l10n="U">open
"C:\data.txt" for OutPut as iCount</paragraph>
+<paragraph role="code" id="par_id3149401" xml-lang="en-US" l10n="U">sValue =
"Hamburg"</paragraph>
+<paragraph role="code" id="par_id3156275" xml-lang="en-US" l10n="U">Write
#iCount,sValue,200</paragraph>
+<paragraph role="code" id="par_id3146913" xml-lang="en-US" l10n="U">sValue =
"New York"</paragraph>
+<paragraph role="code" id="par_id3155064" xml-lang="en-US" l10n="U">Write
#iCount,sValue,300</paragraph>
+<paragraph role="code" id="par_id3150322" xml-lang="en-US" l10n="U">sValue =
"Miami"</paragraph>
+<paragraph role="code" id="par_id3155766" xml-lang="en-US" l10n="U">Write
#iCount,sValue,450</paragraph>
+<paragraph role="code" id="par_id3145643" xml-lang="en-US" l10n="U">close
#iCount</paragraph>
+<paragraph role="code" id="par_id3150044" xml-lang="en-US" l10n="U">end
sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03080101.xhp
b/main/helpcontent2/source/text/sbasic/shared/03080101.xhp
index 00fc782909..76a37cc85a 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03080101.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03080101.xhp
@@ -33,34 +33,33 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3150616">
<bookmark_value>Atn function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03080101.xhp" name="Atn
Function [Runtime]">Atn Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3149346" xml-lang="en-US" l10n="U"
oldref="2">Trigonometric function that returns the arctangent of a numeric
expression. The return value is in the range -Pi/2 to +Pi/2.</paragraph>
+<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03080101.xhp" name="Atn Function
[Runtime]">Atn Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3149346" xml-lang="en-US"
l10n="U">Trigonometric function that returns the arctangent of a numeric
expression. The return value is in the range -Pi/2 to +Pi/2.</paragraph>
</section>
-<paragraph role="paragraph" id="par_id3143271" xml-lang="en-US" l10n="U"
oldref="3">The arctangent is the inverse of the tangent function. The Atn
Function returns the angle "Alpha", expressed in radians, using the tangent of
this angle. The function can also return the angle "Alpha" by comparing the
ratio of the length of the side that is opposite of the angle to the length of
the side that is adjacent to the angle in a right-angled triangle.</paragraph>
-<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U"
oldref="4">Atn(side opposite the angle/side adjacent to angle)=
Alpha</paragraph>
-<paragraph role="heading" id="hd_id3149669" xml-lang="en-US" level="2"
l10n="U" oldref="5">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US" l10n="U"
oldref="6">Atn (Number)</paragraph>
-<paragraph role="heading" id="hd_id3148664" xml-lang="en-US" level="2"
l10n="U" oldref="7">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U"
oldref="8">Double</paragraph>
-<paragraph role="heading" id="hd_id3148798" xml-lang="en-US" level="2"
l10n="U" oldref="9">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3156212" xml-lang="en-US" l10n="U"
oldref="10">
-<emph>Number:</emph> Any numerical expression that represents the ratio of two
sides of a right triangle. The Atn function returns the corresponding angle in
radians (arctangent).</paragraph>
-<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U"
oldref="11">To convert radians to degrees, multiply radians by
180/pi.</paragraph>
-<paragraph role="paragraph" id="par_id3147230" xml-lang="en-US" l10n="U"
oldref="12">degree=(radian*180)/pi</paragraph>
-<paragraph role="paragraph" id="par_id3125864" xml-lang="en-US" l10n="U"
oldref="13">radian=(degree*pi)/180</paragraph>
-<paragraph role="paragraph" id="par_id3159252" xml-lang="en-US" l10n="U"
oldref="14">Pi is here the fixed circle constant with the rounded value
3.14159.</paragraph>
+<paragraph role="paragraph" id="par_id3143271" xml-lang="en-US" l10n="U">The
arctangent is the inverse of the tangent function. The Atn Function returns the
angle "Alpha", expressed in radians, using the tangent of this angle. The
function can also return the angle "Alpha" by comparing the ratio of the length
of the side that is opposite of the angle to the length of the side that is
adjacent to the angle in a right-angled triangle.</paragraph>
+<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US"
l10n="U">Atn(side opposite the angle/side adjacent to angle)= Alpha</paragraph>
+<paragraph role="heading" id="hd_id3149669" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US" l10n="U">Atn
(Number)</paragraph>
+<paragraph role="heading" id="hd_id3148664" xml-lang="en-US" level="2"
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US"
l10n="U">Double</paragraph>
+<paragraph role="heading" id="hd_id3148798" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3156212" xml-lang="en-US"
l10n="U"><emph>Number:</emph> Any numerical expression that represents the
ratio of two sides of a right triangle. The Atn function returns the
corresponding angle in radians (arctangent).</paragraph>
+<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U">To
convert radians to degrees, multiply radians by 180/pi.</paragraph>
+<paragraph role="paragraph" id="par_id3147230" xml-lang="en-US"
l10n="U">degree=(radian*180)/pi</paragraph>
+<paragraph role="paragraph" id="par_id3125864" xml-lang="en-US"
l10n="U">radian=(degree*pi)/180</paragraph>
+<paragraph role="paragraph" id="par_id3159252" xml-lang="en-US" l10n="U">Pi is
here the fixed circle constant with the rounded value 3.14159.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
<embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3153142" xml-lang="en-US" level="2"
l10n="U" oldref="15">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3146985" xml-lang="en-US" l10n="U"
oldref="16">REM The following example calculates for a right-angled
triangle</paragraph>
-<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U"
oldref="17">REM the angle Alpha from the tangent of the angle Alpha:</paragraph>
-<paragraph role="paragraph" id="par_id3146975" xml-lang="en-US" l10n="U"
oldref="18">Sub ExampleATN</paragraph>
-<paragraph role="paragraph" id="par_id3151112" xml-lang="en-US" l10n="U"
oldref="19">REM rounded Pi = 3.14159 is a predefined constant</paragraph>
-<paragraph role="paragraph" id="par_id3159156" xml-lang="en-US" l10n="U"
oldref="20">Dim d1 As Double</paragraph>
-<paragraph role="paragraph" id="par_id3147435" xml-lang="en-US" l10n="U"
oldref="21">Dim d2 As Double</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U"
oldref="22">d1 = InputBox$ ("Enter the length of the side adjacent to the
angle: ","Adjacent")</paragraph>
-<paragraph role="paragraph" id="par_id3149482" xml-lang="en-US" l10n="U"
oldref="23">d2 = InputBox$ ("Enter the length of the side opposite the angle:
","Opposite")</paragraph>
-<paragraph role="paragraph" id="par_id3155415" xml-lang="en-US" l10n="U"
oldref="24">Print "The Alpha angle is"; (atn (d2/d1) * 180 / Pi); "
degrees"</paragraph>
-<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US" l10n="U"
oldref="25">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3153142" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3146985" xml-lang="en-US" l10n="U">REM
The following example calculates for a right-angled triangle</paragraph>
+<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U">REM
the angle Alpha from the tangent of the angle Alpha:</paragraph>
+<paragraph role="paragraph" id="par_id3146975" xml-lang="en-US" l10n="U">Sub
ExampleATN</paragraph>
+<paragraph role="paragraph" id="par_id3151112" xml-lang="en-US" l10n="U">REM
rounded Pi = 3.14159 is a predefined constant</paragraph>
+<paragraph role="paragraph" id="par_id3159156" xml-lang="en-US" l10n="U">Dim
d1 As Double</paragraph>
+<paragraph role="paragraph" id="par_id3147435" xml-lang="en-US" l10n="U">Dim
d2 As Double</paragraph>
+<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U">d1 =
InputBox$ ("Enter the length of the side adjacent to the angle:
","Adjacent")</paragraph>
+<paragraph role="paragraph" id="par_id3149482" xml-lang="en-US" l10n="U">d2 =
InputBox$ ("Enter the length of the side opposite the angle:
","Opposite")</paragraph>
+<paragraph role="paragraph" id="par_id3155415" xml-lang="en-US" l10n="U">Print
"The Alpha angle is"; (atn (d2/d1) * 180 / Pi); " degrees"</paragraph>
+<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US" l10n="U">End
Sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03100100.xhp
b/main/helpcontent2/source/text/sbasic/shared/03100100.xhp
index 0e2638f403..7e341ffa9f 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03100100.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03100100.xhp
@@ -33,32 +33,30 @@
<bookmark xml-lang="en-US" branch="index" id="bm_id3150616">
<bookmark_value>CBool function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/sbasic/shared/03100100.xhp" name="CBool
Function [Runtime]">CBool Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3145136" xml-lang="en-US" l10n="U"
oldref="2">Converts a string comparison or numeric comparison to a Boolean
expression, or converts a single numeric expression to a Boolean
expression.</paragraph>
+<paragraph role="heading" id="hd_id3150616" xml-lang="en-US" level="1"
l10n="U"><link href="text/sbasic/shared/03100100.xhp" name="CBool Function
[Runtime]">CBool Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3145136" xml-lang="en-US"
l10n="U">Converts a string comparison or numeric comparison to a Boolean
expression, or converts a single numeric expression to a Boolean
expression.</paragraph>
</section>
-<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="2"
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149514" xml-lang="en-US" l10n="U"
oldref="4">CBool (Expression1 {= | <> | < | > | <= | >=}
Expression2) or CBool (Number)</paragraph>
-<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="2"
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3155419" xml-lang="en-US" l10n="U"
oldref="6">Bool</paragraph>
-<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2"
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" l10n="U"
oldref="8">
-<emph>Expression1, Expression2:</emph> Any string or numeric expressions that
you want to compare. If the expressions match, the <emph>CBool</emph> function
returns <emph>True</emph>, otherwise <emph>False</emph> is returned.</paragraph>
-<paragraph role="paragraph" id="par_id3149655" xml-lang="en-US" l10n="U"
oldref="9">
-<emph>Number:</emph> Any numeric expression that you want to convert. If the
expression equals 0, <emph>False</emph> is returned, otherwise
<emph>True</emph> is returned.</paragraph>
-<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US" l10n="U"
oldref="10">The following example uses the <emph>CBool</emph> function to
evaluate the value that is returned by the <emph>Instr</emph> function. The
function checks if the word "and" is found in the sentence that was entered by
the user.</paragraph>
+<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="2"
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3149514" xml-lang="en-US" l10n="U">CBool
(Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool
(Number)</paragraph>
+<paragraph role="heading" id="hd_id3156152" xml-lang="en-US" level="2"
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3155419" xml-lang="en-US"
l10n="U">Bool</paragraph>
+<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2"
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US"
l10n="U"><emph>Expression1, Expression2:</emph> Any string or numeric
expressions that you want to compare. If the expressions match, the
<emph>CBool</emph> function returns <emph>True</emph>, otherwise
<emph>False</emph> is returned.</paragraph>
+<paragraph role="paragraph" id="par_id3149655" xml-lang="en-US"
l10n="U"><emph>Number:</emph> Any numeric expression that you want to convert.
If the expression equals 0, <emph>False</emph> is returned, otherwise
<emph>True</emph> is returned.</paragraph>
+<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US" l10n="U">The
following example uses the <emph>CBool</emph> function to evaluate the value
that is returned by the <emph>Instr</emph> function. The function checks if the
word "and" is found in the sentence that was entered by the user.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
<embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3156212" xml-lang="en-US" level="2"
l10n="U" oldref="11">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3147288" xml-lang="en-US" l10n="U"
oldref="12">Sub ExampleCBool</paragraph>
-<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U"
oldref="13">Dim sText As String</paragraph>
-<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U"
oldref="14">sText = InputBox("Please enter a short sentence:")</paragraph>
-<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U"
oldref="15">REM Proof if the word »and« appears in the sentence.</paragraph>
-<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U"
oldref="16">REM Instead of the command line</paragraph>
-<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U"
oldref="17">REM If Instr(Input, "and")<>0 Then...</paragraph>
-<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U"
oldref="18">REM the CBool function is applied as follows:</paragraph>
-<paragraph role="paragraph" id="par_id3155413" xml-lang="en-US" l10n="U"
oldref="19">If CBool(Instr(sText, "and")) Then</paragraph>
-<paragraph role="paragraph" id="par_id3152940" xml-lang="en-US" l10n="U"
oldref="20">MsgBox "The word »and« appears in the sentence you
entered!"</paragraph>
-<paragraph role="paragraph" id="par_id3153954" xml-lang="en-US" l10n="U"
oldref="21">EndIf</paragraph>
-<paragraph role="paragraph" id="par_id3152886" xml-lang="en-US" l10n="U"
oldref="22">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3156212" xml-lang="en-US" level="2"
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3147288" xml-lang="en-US" l10n="U">Sub
ExampleCBool</paragraph>
+<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U">Dim
sText As String</paragraph>
+<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U">sText
= InputBox("Please enter a short sentence:")</paragraph>
+<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U">REM
Proof if the word »and« appears in the sentence.</paragraph>
+<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U">REM
Instead of the command line</paragraph>
+<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U">REM
If Instr(Input, "and")<>0 Then...</paragraph>
+<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U">REM
the CBool function is applied as follows:</paragraph>
+<paragraph role="paragraph" id="par_id3155413" xml-lang="en-US" l10n="U">If
CBool(Instr(sText, "and")) Then</paragraph>
+<paragraph role="paragraph" id="par_id3152940" xml-lang="en-US"
l10n="U">MsgBox "The word »and« appears in the sentence you
entered!"</paragraph>
+<paragraph role="paragraph" id="par_id3153954" xml-lang="en-US"
l10n="U">EndIf</paragraph>
+<paragraph role="paragraph" id="par_id3152886" xml-lang="en-US" l10n="U">End
Sub</paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/scalc/guide/formula_enter.xhp
b/main/helpcontent2/source/text/scalc/guide/formula_enter.xhp
index 09c0ea97a1..d08b451779 100644
--- a/main/helpcontent2/source/text/scalc/guide/formula_enter.xhp
+++ b/main/helpcontent2/source/text/scalc/guide/formula_enter.xhp
@@ -35,32 +35,32 @@
<bookmark_value>formulas; inputting</bookmark_value>
<bookmark_value>inserting;formulas</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3150868" xml-lang="en-US" level="1"
l10n="U" oldref="9"><variable id="formula_enter"><link
href="text/scalc/guide/formula_enter.xhp" name="Entering Formulas">Entering
Formulas</link>
+<paragraph role="heading" id="hd_id3150868" xml-lang="en-US" level="1"
l10n="U"><variable id="formula_enter"><link
href="text/scalc/guide/formula_enter.xhp" name="Entering Formulas">Entering
Formulas</link>
</variable></paragraph>
<paragraph role="paragraph" id="par_id6848353" xml-lang="en-US" l10n="NEW">You
can enter formulas in several ways: using the icons, or by typing on the
keyboard, or by a mixture of both methods.</paragraph>
<list type="ordered">
<listitem>
-<paragraph role="listitem" id="par_id3145364" xml-lang="en-US" l10n="U"
oldref="10">Click the cell in which you want to enter the formula.</paragraph>
+<paragraph role="listitem" id="par_id3145364" xml-lang="en-US" l10n="U">Click
the cell in which you want to enter the formula.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3150012" xml-lang="en-US" l10n="U"
oldref="11">Click the <emph>Function</emph> icon on the Formula Bar.</paragraph>
-<paragraph role="listitem" id="par_id3156441" xml-lang="en-US" l10n="U"
oldref="12">You will now see an equals sign in the input line and you can begin
to input the formula.</paragraph>
+<paragraph role="listitem" id="par_id3150012" xml-lang="en-US" l10n="U">Click
the <emph>Function</emph> icon on the Formula Bar.</paragraph>
+<paragraph role="listitem" id="par_id3156441" xml-lang="en-US" l10n="U">You
will now see an equals sign in the input line and you can begin to input the
formula.</paragraph>
</listitem>
<listitem>
-<paragraph role="listitem" id="par_id3153726" xml-lang="en-US" l10n="U"
oldref="3">After entering the required values, press Enter or click
<emph>Accept</emph> to insert the result in the active cell. If you want to
clear your entry in the input line, press Escape or click
<emph>Cancel</emph>.</paragraph>
+<paragraph role="listitem" id="par_id3153726" xml-lang="en-US" l10n="U">After
entering the required values, press Enter or click <emph>Accept</emph> to
insert the result in the active cell. If you want to clear your entry in the
input line, press Escape or click <emph>Cancel</emph>.</paragraph>
</listitem>
</list>
-<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" l10n="U"
oldref="8">You can also enter the values and the formulas directly into the
cells, even if you cannot see an input cursor. Formulas must always begin with
an equals sign.</paragraph>
+<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" l10n="U">You
can also enter the values and the formulas directly into the cells, even if you
cannot see an input cursor. Formulas must always begin with an equals
sign.</paragraph>
<paragraph role="paragraph" id="par_id4206976" xml-lang="en-US" l10n="NEW">You
can also press the + or - key on the numerical keyboard to start a formula.
NumLock must be "on". For example, press the following keys in
succession:</paragraph>
<paragraph role="code" id="par_id1836909" xml-lang="en-US" l10n="NEW">+ 5 0 -
8 Enter</paragraph>
<paragraph role="paragraph" id="par_id8171330" xml-lang="en-US" l10n="NEW">You
see the result <item type="literal">42</item> in the cell. The cell contains
the formula <item type="literal">=+50-8</item>.</paragraph>
-<paragraph role="note" id="par_id3155764" xml-lang="en-US" l10n="U"
oldref="6">If you are editing a formula with references, the references and the
associated cells will be highlighted with the same color. You can now resize
the reference border using the mouse, and the reference in the formula
displayed in the input line also changes. <emph>Show references in color</emph>
can be deactivated under <switchinline select="sys"><caseinline
select="MAC">%PRODUCTNAME - Preferences</caseinline> [...]
-<paragraph role="tip" id="par_id3149210" xml-lang="en-US" l10n="U"
oldref="7"><variable id="tip">If you would like to view the calculation of
individual elements of a formula, select the respective elements and press F9.
For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section
SUM(C1:D12) and press F9 to view the subtotal for this area.
+<paragraph role="note" id="par_id3155764" xml-lang="en-US" l10n="U">If you are
editing a formula with references, the references and the associated cells will
be highlighted with the same color. You can now resize the reference border
using the mouse, and the reference in the formula displayed in the input line
also changes. <emph>Show references in color</emph> can be deactivated under
<switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME -
Preferences</caseinline><defaultinl [...]
+<paragraph role="tip" id="par_id3149210" xml-lang="en-US" l10n="U"><variable
id="tip">If you would like to view the calculation of individual elements of a
formula, select the respective elements and press F9. For example, in the
formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to
view the subtotal for this area.
</variable></paragraph>
-<paragraph role="paragraph" id="par_id3150304" xml-lang="en-US" l10n="U"
oldref="5">If an error occurs when creating the formula, an <link
href="text/scalc/05/02140000.xhp" name="error message">error message</link>
appears in the active cell.</paragraph>
+<paragraph role="paragraph" id="par_id3150304" xml-lang="en-US" l10n="U">If an
error occurs when creating the formula, an <link
href="text/scalc/05/02140000.xhp" name="error message">error message</link>
appears in the active cell.</paragraph>
<section id="relatedtopics">
<embed href="text/scalc/guide/formulas.xhp#formulas"/>
-<paragraph role="paragraph" id="par_id3152993" xml-lang="en-US" l10n="U"
oldref="13"><link href="text/scalc/main0206.xhp" name="Formula bar">Formula
bar</link></paragraph>
+<paragraph role="paragraph" id="par_id3152993" xml-lang="en-US" l10n="U"><link
href="text/scalc/main0206.xhp" name="Formula bar">Formula bar</link></paragraph>
<embed href="text/scalc/guide/cell_enter.xhp#cell_enter"/>
<embed href="text/scalc/guide/multitables.xhp#multitables"/>
<embed href="text/scalc/guide/multi_tables.xhp#multi_tables"/>
diff --git a/main/helpcontent2/source/text/shared/00/00000215.xhp
b/main/helpcontent2/source/text/shared/00/00000215.xhp
index b99fd0b4a8..8b4e6effce 100644
--- a/main/helpcontent2/source/text/shared/00/00000215.xhp
+++ b/main/helpcontent2/source/text/shared/00/00000215.xhp
@@ -29,32 +29,32 @@
</topic>
</meta>
<body>
-<paragraph role="heading" id="hd_id3146856" xml-lang="en-US" level="1"
l10n="U" oldref="1">ASCII Filter Options</paragraph>
-<paragraph role="paragraph" id="par_id3153070" xml-lang="en-US" l10n="U"
oldref="2">You can specify which options, such as basic font, language,
character set, or break, are imported or exported with a text document. The
dialog appears when you load an ASCII file with the filter "Text Encoded" or
when you save the document the first time, or when you "save as" with another
name.</paragraph>
+<paragraph role="heading" id="hd_id3146856" xml-lang="en-US" level="1"
l10n="U">ASCII Filter Options</paragraph>
+<paragraph role="paragraph" id="par_id3153070" xml-lang="en-US" l10n="U">You
can specify which options, such as basic font, language, character set, or
break, are imported or exported with a text document. The dialog appears when
you load an ASCII file with the filter "Text Encoded" or when you save the
document the first time, or when you "save as" with another name.</paragraph>
<section id="howtoget">
<embed href="text/shared/00/00000401.xhp#ascii"/>
</section>
-<paragraph role="heading" id="hd_id3159217" xml-lang="en-US" level="2"
l10n="U" oldref="3">Properties</paragraph>
-<paragraph role="paragraph" id="par_id3155577" xml-lang="en-US" l10n="U"
oldref="4">Defines the settings for importing or exporting your file. When
exporting, only the character set and paragraph break can be
defined.</paragraph>
+<paragraph role="heading" id="hd_id3159217" xml-lang="en-US" level="2"
l10n="U">Properties</paragraph>
+<paragraph role="paragraph" id="par_id3155577" xml-lang="en-US"
l10n="U">Defines the settings for importing or exporting your file. When
exporting, only the character set and paragraph break can be
defined.</paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:ListBox:DLG_ASCII_FILTER:LB_CHARSET"
id="bm_id3159242" localize="false"/>
-<paragraph role="heading" id="hd_id3146959" xml-lang="en-US" level="3"
l10n="U" oldref="5">Character set</paragraph>
-<paragraph role="paragraph" id="par_id3143206" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET">Specifies the
character set of the file for export or import.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3146959" xml-lang="en-US" level="3"
l10n="U">Character set</paragraph>
+<paragraph role="paragraph" id="par_id3143206" xml-lang="en-US"
l10n="U"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET">Specifies the
character set of the file for export or import.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:ListBox:DLG_ASCII_FILTER:LB_FONT"
id="bm_id3150008" localize="false"/>
-<paragraph role="heading" id="hd_id3154926" xml-lang="en-US" level="3"
l10n="U" oldref="7">Default fonts</paragraph>
-<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="CHG"
oldref="8"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT">By setting a
default font, you specify that the text should be displayed in a specific font.
The default fonts can only be selected when importing.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3154926" xml-lang="en-US" level="3"
l10n="U">Default fonts</paragraph>
+<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US"
l10n="CHG"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT">By setting a
default font, you specify that the text should be displayed in a specific font.
The default fonts can only be selected when importing.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:ListBox:DLG_ASCII_FILTER:LB_LANGUAGE" id="bm_id3153124"
localize="false"/>
-<paragraph role="heading" id="hd_id3154894" xml-lang="en-US" level="3"
l10n="U" oldref="9">Language</paragraph>
-<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" l10n="U"
oldref="10"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE">Specifies the
language of the text, if this has not already been defined. This setting is
only available when importing.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3147143" xml-lang="en-US" level="3"
l10n="U" oldref="11">Paragraph break</paragraph>
-<paragraph role="paragraph" id="par_id3143281" xml-lang="en-US" l10n="U"
oldref="12">Defines the type of paragraph break for a text line.</paragraph>
+<paragraph role="heading" id="hd_id3154894" xml-lang="en-US" level="3"
l10n="U">Language</paragraph>
+<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US"
l10n="U"><ahelp hid="SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE">Specifies the
language of the text, if this has not already been defined. This setting is
only available when importing.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147143" xml-lang="en-US" level="3"
l10n="U">Paragraph break</paragraph>
+<paragraph role="paragraph" id="par_id3143281" xml-lang="en-US"
l10n="U">Defines the type of paragraph break for a text line.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/sw:RadioButton:DLG_ASCII_FILTER:RB_CRLF" id="bm_id3149640"
localize="false"/>
-<paragraph role="heading" id="hd_id3150935" xml-lang="en-US" level="3"
l10n="U" oldref="13">CR & LF</paragraph>
-<paragraph role="paragraph" id="par_id3145829" xml-lang="en-US" l10n="U"
oldref="14"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF">Produces a
"Carriage Return" and a "Line Feed". This option is the
default.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150935" xml-lang="en-US" level="3"
l10n="U">CR & LF</paragraph>
+<paragraph role="paragraph" id="par_id3145829" xml-lang="en-US"
l10n="U"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF">Produces a
"Carriage Return" and a "Line Feed". This option is the
default.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:RadioButton:DLG_ASCII_FILTER:RB_CR"
id="bm_id3150178" localize="false"/>
-<paragraph role="heading" id="hd_id3153551" xml-lang="en-US" level="3"
l10n="U" oldref="15">CR</paragraph>
-<paragraph role="paragraph" id="par_id3156042" xml-lang="en-US" l10n="U"
oldref="16"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR">Produces a
"Carriage Return" as the paragraph break.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3153551" xml-lang="en-US" level="3"
l10n="U">CR</paragraph>
+<paragraph role="paragraph" id="par_id3156042" xml-lang="en-US"
l10n="U"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR">Produces a
"Carriage Return" as the paragraph break.</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/sw:RadioButton:DLG_ASCII_FILTER:RB_LF"
id="bm_id3147374" localize="false"/>
-<paragraph role="heading" id="hd_id3150713" xml-lang="en-US" level="3"
l10n="U" oldref="17">LF</paragraph>
-<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U"
oldref="18"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF">Produces a "Line
Feed" as the paragraph break.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3150713" xml-lang="en-US" level="3"
l10n="U">LF</paragraph>
+<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US"
l10n="U"><ahelp hid="SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF">Produces a "Line
Feed" as the paragraph break.</ahelp></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/01/05230500.xhp
b/main/helpcontent2/source/text/shared/01/05230500.xhp
index 8a9d39c8d9..5e17624502 100644
--- a/main/helpcontent2/source/text/shared/01/05230500.xhp
+++ b/main/helpcontent2/source/text/shared/01/05230500.xhp
@@ -38,8 +38,8 @@
<bookmark_value>captions, see also labels/callouts</bookmark_value>
<bookmark_value>names, see also labels/callouts</bookmark_value>
</bookmark><comment>mw made "labeling..." a two level entry and added 3 "see
also" references</comment>
-<paragraph role="heading" id="hd_id3149038" xml-lang="en-US" level="1"
l10n="U" oldref="1"><link href="text/shared/01/05230500.xhp"
name="Callout">Callout</link></paragraph>
-<paragraph role="paragraph" id="par_id3155069" xml-lang="en-US" l10n="U"
oldref="2">Specify the properties of the selected callout.</paragraph>
+<paragraph role="heading" id="hd_id3149038" xml-lang="en-US" level="1"
l10n="U"><link href="text/shared/01/05230500.xhp"
name="Callout">Callout</link></paragraph>
+<paragraph role="paragraph" id="par_id3155069" xml-lang="en-US"
l10n="U">Specify the properties of the selected callout.</paragraph>
</section>
<section id="howtoget">
<embed href="text/shared/00/00040502.xhp#legende"/>
@@ -49,22 +49,22 @@
</image> where you can select the shape.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:ListBox:RID_SVXPAGE_CAPTION:LB_WINKEL" id="bm_id3153551"
localize="false"/>
<bookmark xml-lang="en-US" branch="hid/CUI_HID_CAPTION_CTL_TYPE"
id="bm_id3149999" localize="false"/>
-<paragraph role="heading" id="hd_id3151330" xml-lang="en-US" level="2"
l10n="U" oldref="3">Callout Styles</paragraph>
-<paragraph role="paragraph" id="par_id3149760" xml-lang="en-US" l10n="U"
oldref="4"><ahelp hid="HID_CAPTION_CTL_TYPE">Click the <emph>Callout</emph>
style that you want to apply to the selected callout.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151330" xml-lang="en-US" level="2"
l10n="U">Callout Styles</paragraph>
+<paragraph role="paragraph" id="par_id3149760" xml-lang="en-US"
l10n="U"><ahelp hid="HID_CAPTION_CTL_TYPE">Click the <emph>Callout</emph> style
that you want to apply to the selected callout.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:MetricField:RID_SVXPAGE_CAPTION:MF_ABSTAND" id="bm_id3152425"
localize="false"/>
-<paragraph role="heading" id="hd_id3149798" xml-lang="en-US" level="2"
l10n="U" oldref="5">Spacing</paragraph>
-<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US" l10n="U"
oldref="6"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND">Enter
the amount of space that you want to leave between the end of the callout line,
and the callout box.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149798" xml-lang="en-US" level="2"
l10n="U">Spacing</paragraph>
+<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND">Enter the
amount of space that you want to leave between the end of the callout line, and
the callout box.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:ListBox:RID_SVXPAGE_CAPTION:LB_ANSATZ" id="bm_id3147043"
localize="false"/>
<bookmark xml-lang="en-US"
branch="hid/cui:MetricField:RID_SVXPAGE_CAPTION:MF_ANSATZ" id="bm_id3153394"
localize="false"/>
<bookmark xml-lang="en-US"
branch="hid/cui:ListBox:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL" id="bm_id3153527"
localize="false"/>
-<paragraph role="heading" id="hd_id3151226" xml-lang="en-US" level="2"
l10n="U" oldref="7">Extension</paragraph>
-<paragraph role="paragraph" id="par_id3148620" xml-lang="en-US" l10n="U"
oldref="8"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL">Select
where you want to extend the callout line from, in relation to the callout
box.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3151226" xml-lang="en-US" level="2"
l10n="U">Extension</paragraph>
+<paragraph role="paragraph" id="par_id3148620" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL">Select
where you want to extend the callout line from, in relation to the callout
box.</ahelp></paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:MetricField:RID_SVXPAGE_CAPTION:MF_LAENGE" id="bm_id3146958"
localize="false"/>
-<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="2"
l10n="U" oldref="9">Length</paragraph>
-<paragraph role="paragraph" id="par_id3145313" xml-lang="en-US" l10n="U"
oldref="10"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE">Enter
the length of the callout line segment that extends from the callout box to the
inflection point of the line.</ahelp></paragraph>
-<paragraph role="note" id="par_id3159269" xml-lang="en-US" l10n="U"
oldref="11">The <emph>Length</emph> box is only available if you select the
<emph>Angled connector line</emph> callout style, and leave the
<emph>Optimal</emph> checkbox cleared.</paragraph>
+<paragraph role="heading" id="hd_id3153311" xml-lang="en-US" level="2"
l10n="U">Length</paragraph>
+<paragraph role="paragraph" id="par_id3145313" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE">Enter the
length of the callout line segment that extends from the callout box to the
inflection point of the line.</ahelp></paragraph>
+<paragraph role="note" id="par_id3159269" xml-lang="en-US" l10n="U">The
<emph>Length</emph> box is only available if you select the <emph>Angled
connector line</emph> callout style, and leave the <emph>Optimal</emph>
checkbox cleared.</paragraph>
<bookmark xml-lang="en-US"
branch="hid/cui:CheckBox:RID_SVXPAGE_CAPTION:CB_LAENGE" id="bm_id3153332"
localize="false"/>
-<paragraph role="heading" id="hd_id3149820" xml-lang="en-US" level="2"
l10n="U" oldref="12">Optimal</paragraph>
-<paragraph role="paragraph" id="par_id3147210" xml-lang="en-US" l10n="U"
oldref="13"><ahelp hid="SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE">Click here
to display a single-angled line in an optimal way.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3149820" xml-lang="en-US" level="2"
l10n="U">Optimal</paragraph>
+<paragraph role="paragraph" id="par_id3147210" xml-lang="en-US"
l10n="U"><ahelp hid="SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE">Click here to
display a single-angled line in an optimal way.</ahelp></paragraph>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/shared/optionen/01150200.xhp
b/main/helpcontent2/source/text/shared/optionen/01150200.xhp
index 65db6b7090..8b02377878 100644
--- a/main/helpcontent2/source/text/shared/optionen/01150200.xhp
+++ b/main/helpcontent2/source/text/shared/optionen/01150200.xhp
@@ -30,8 +30,8 @@
</meta>
<body>
<section id="japan">
-<paragraph id="hd_id3155338" role="heading" level="1" oldref="1" l10n="U"
xml-lang="en-US"><link href="text/shared/optionen/01150200.xhp" name="Searching
in Japanese">Searching in Japanese</link></paragraph>
-<paragraph role="paragraph" id="par_id3152996" l10n="U" xml-lang="en-US"
oldref="2">Defines the search options for Japanese.</paragraph>
+<paragraph id="hd_id3155338" role="heading" level="1" l10n="U"
xml-lang="en-US"><link href="text/shared/optionen/01150200.xhp" name="Searching
in Japanese">Searching in Japanese</link></paragraph>
+<paragraph role="paragraph" id="par_id3152996" l10n="U"
xml-lang="en-US">Defines the search options for Japanese.</paragraph>
<embed href="text/shared/00/00000007.xhp#asiahinweis"/>
</section>
<section id="howtoget">
@@ -39,11 +39,11 @@
</section>
<section id="asia">
<bookmark branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CASE"
xml-lang="en-US" id="bm_id3150276"/><bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_FULL_HALF_WIDTH"
xml-lang="en-US" id="bm_id3152350"/><bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_HIRAGANA_KATAKANA"
xml-lang="en-US" id="bm_id3149233"/><bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CONTRACTIONS"
xml-lang="en-US" id="bm_id3143270"/><boo [...]
-<paragraph role="heading" level="2" id="hd_id3159399" l10n="U"
xml-lang="en-US" oldref="3">Treat as equal</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3154514" xml-lang="en-US"
oldref="4"><ahelp
hid="SVX_CHECKBOX_RID_SVXPAGE_JSEARCH_OPTIONS_CB_MATCH_PROLONGED_SOUNDMARK"
visibility="visible">Specifies the options to be treated as equal in a
search.</ahelp></paragraph>
+<paragraph role="heading" level="2" id="hd_id3159399" l10n="U"
xml-lang="en-US">Treat as equal</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3154514"
xml-lang="en-US"><ahelp
hid="SVX_CHECKBOX_RID_SVXPAGE_JSEARCH_OPTIONS_CB_MATCH_PROLONGED_SOUNDMARK"
visibility="visible">Specifies the options to be treated as equal in a
search.</ahelp></paragraph>
<bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_PUNCTUATION"
xml-lang="en-US" id="bm_id3156024"/><!-- removed HID
SVX_CHECKBOX_RID_SVXPAGE_JSEARCH_OPTIONS_CB_IGNORE_PROLONGED_SOUNDMARK
--><bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_WHITESPACES"
xml-lang="en-US" id="bm_id3151245"/><bookmark
branch="hid/cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_MIDDLE_DOT"
xml-lang="en-US" id="bm_id3153898"/>
-<paragraph role="heading" level="2" id="hd_id3148944" l10n="U"
xml-lang="en-US" oldref="5">Ignore</paragraph>
-<paragraph l10n="U" role="paragraph" id="par_id3147264" xml-lang="en-US"
oldref="6"><ahelp
hid="SVX_CHECKBOX_RID_SVXPAGE_JSEARCH_OPTIONS_CB_IGNORE_MIDDLE_DOT"
visibility="visible">Specifies the characters to be ignored.</ahelp></paragraph>
+<paragraph role="heading" level="2" id="hd_id3148944" l10n="U"
xml-lang="en-US">Ignore</paragraph>
+<paragraph l10n="U" role="paragraph" id="par_id3147264"
xml-lang="en-US"><ahelp
hid="SVX_CHECKBOX_RID_SVXPAGE_JSEARCH_OPTIONS_CB_IGNORE_MIDDLE_DOT"
visibility="visible">Specifies the characters to be ignored.</ahelp></paragraph>
</section>
</body>
</helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/01/05150200.xhp
b/main/helpcontent2/source/text/swriter/01/05150200.xhp
index 01db04b186..166a8f3eb9 100644
--- a/main/helpcontent2/source/text/swriter/01/05150200.xhp
+++ b/main/helpcontent2/source/text/swriter/01/05150200.xhp
@@ -40,43 +40,42 @@
<bookmark_value>headings;automatic</bookmark_value>
<bookmark_value>separator lines;AutoCorrect function</bookmark_value>
</bookmark><comment>MW replaced AutoFormat by AutoCorrect (2 times)</comment>
-<paragraph xml-lang="en-US" id="hd_id3155962" role="heading" level="1"
l10n="U" oldref="1"><link href="text/swriter/01/05150200.xhp"
name="Apply">Apply</link></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149871" role="paragraph" l10n="CHG"
oldref="2"><ahelp hid=".uno:AutoFormatApply">Automatically formats the file
according to the options that you set under <emph>Tools - AutoCorrect
Options</emph>.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155962" role="heading" level="1"
l10n="U"><link href="text/swriter/01/05150200.xhp"
name="Apply">Apply</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149871" role="paragraph"
l10n="CHG"><ahelp hid=".uno:AutoFormatApply">Automatically formats the file
according to the options that you set under <emph>Tools - AutoCorrect
Options</emph>.</ahelp></paragraph>
</section>
<section id="howtoget">
<embed href="text/swriter/00/00000405.xhp#autoformat2"/>
</section>
<embed href="text/swriter/guide/auto_off.xhp#auto_off"/>
-<paragraph xml-lang="en-US" id="par_id3147404" role="paragraph" l10n="U"
oldref="15">When you apply automatic formats, the following rules
apply:</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3155625" role="heading" level="2"
l10n="U" oldref="3">AutoCorrect for Headings</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154505" role="paragraph" l10n="U"
oldref="4">A paragraph is formatted as a heading when the following conditions
are met:</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147404" role="paragraph" l10n="U">When
you apply automatic formats, the following rules apply:</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155625" role="heading" level="2"
l10n="U">AutoCorrect for Headings</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154505" role="paragraph" l10n="U">A
paragraph is formatted as a heading when the following conditions are
met:</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3145241" role="listitem" l10n="U"
oldref="19">paragraph begins with a capital letter</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145241" role="listitem"
l10n="U">paragraph begins with a capital letter</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3148386" role="listitem" l10n="U"
oldref="20">paragraph does not end with a punctuation mark</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148386" role="listitem"
l10n="U">paragraph does not end with a punctuation mark</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150564" role="listitem" l10n="U"
oldref="21">empty paragraph above and below the paragraph</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150564" role="listitem" l10n="U">empty
paragraph above and below the paragraph</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3149030" role="heading" level="2"
l10n="U" oldref="8">AutoCorrect for Bullets / Numbering</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156316" role="paragraph" l10n="U"
oldref="9">To create a bulleted list, type a hyphen (-), star (*), or plus sign
(+), followed by a space or tab at the beginning of a paragraph.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150763" role="paragraph" l10n="U"
oldref="18">To create a numbered list, type a number followed by a period (.),
followed by a space or tab at the beginning of a paragraph.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147507" role="note" l10n="U"
oldref="16">Automatic numbering is only applied to paragraphs formatted with
the <emph>Standard</emph>, <emph>Text body</emph> or <emph>Text body
indent</emph> paragraph styles.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3152941" role="heading" level="2" l10n="U"
-oldref="10">AutoCorrect for Separator Lines</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154105" role="paragraph" l10n="U"
oldref="11">If you type three or more hyphens (---), underscores (___) or equal
signs (===) on line and then press Enter, the paragraph is replaced by a
horizontal line as wide as the page. The line is actually the <link
href="text/shared/01/05030500.xhp" name="lower border">lower border</link> of
the preceding paragraph. The following rules apply:</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149030" role="heading" level="2"
l10n="U">AutoCorrect for Bullets / Numbering</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156316" role="paragraph" l10n="U">To
create a bulleted list, type a hyphen (-), star (*), or plus sign (+), followed
by a space or tab at the beginning of a paragraph.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150763" role="paragraph" l10n="U">To
create a numbered list, type a number followed by a period (.), followed by a
space or tab at the beginning of a paragraph.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147507" role="note" l10n="U">Automatic
numbering is only applied to paragraphs formatted with the
<emph>Standard</emph>, <emph>Text body</emph> or <emph>Text body indent</emph>
paragraph styles.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152941" role="heading" level="2"
l10n="U">AutoCorrect for Separator Lines</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154105" role="paragraph" l10n="U">If
you type three or more hyphens (---), underscores (___) or equal signs (===) on
line and then press Enter, the paragraph is replaced by a horizontal line as
wide as the page. The line is actually the <link
href="text/shared/01/05030500.xhp" name="lower border">lower border</link> of
the preceding paragraph. The following rules apply:</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153530" role="listitem" l10n="U"
oldref="12">Three hyphens (-) yield a single line (0.05 pt thick, gap 0.75
mm).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153530" role="listitem" l10n="U">Three
hyphens (-) yield a single line (0.05 pt thick, gap 0.75 mm).</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154477" role="listitem" l10n="U"
oldref="13">Three underscore (_) yield a single line (1 pt thick, gap 0.75
mm).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154477" role="listitem" l10n="U">Three
underscore (_) yield a single line (1 pt thick, gap 0.75 mm).</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3150982" role="listitem" l10n="U"
oldref="14">Three equal signs (=) yield a double line (1.10 pt thick, gap 0.75
mm).</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150982" role="listitem" l10n="U">Three
equal signs (=) yield a double line (1.10 pt thick, gap 0.75 mm).</paragraph>
</listitem>
</list>
</body>
diff --git a/main/helpcontent2/source/text/swriter/guide/stylist_fromselect.xhp
b/main/helpcontent2/source/text/swriter/guide/stylist_fromselect.xhp
index b9267e0922..78f6e5aad1 100644
--- a/main/helpcontent2/source/text/swriter/guide/stylist_fromselect.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/stylist_fromselect.xhp
@@ -34,45 +34,42 @@
<bookmark_value>drag and drop;creating new styles</bookmark_value>
<bookmark_value>copying;styles, from selections</bookmark_value>
</bookmark><comment>mw deleted "creating;" and added "copying;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3155911" role="heading" level="1" l10n="U"
-oldref="34"><variable id="stylist_fromselect"><link
href="text/swriter/guide/stylist_fromselect.xhp" name="Creating New Styles From
Selections">Creating New Styles From Selections</link>
+<paragraph xml-lang="en-US" id="hd_id3155911" role="heading" level="1"
l10n="U"><variable id="stylist_fromselect"><link
href="text/swriter/guide/stylist_fromselect.xhp" name="Creating New Styles From
Selections">Creating New Styles From Selections</link>
</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149829" role="heading" level="2"
l10n="U"
-oldref="35">To Create a New Style From a Manually Formatted
Selection</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149829" role="heading" level="2"
l10n="U">To Create a New Style From a Manually Formatted Selection</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3156097" role="listitem" l10n="CHG"
oldref="36">Choose <emph>Format - Styles and Formatting</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156097" role="listitem"
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153402" role="listitem" l10n="CHG"
oldref="42">Click the icon of the style category that you want to
create.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153402" role="listitem"
l10n="CHG">Click the icon of the style category that you want to
create.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153119" role="listitem" l10n="U"
oldref="37">Click in the document where you want to copy the style from, for
example, in a paragraph that you applied manual formatting to.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153119" role="listitem" l10n="U">Click
in the document where you want to copy the style from, for example, in a
paragraph that you applied manual formatting to.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3153138" role="listitem" l10n="CHG"
oldref="38">Click the arrow next to the <item type="menuitem">New Style from
Selection</item> icon and choose <item type="menuitem">New Style from
Selection</item> from the submenu</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153138" role="listitem"
l10n="CHG">Click the arrow next to the <item type="menuitem">New Style from
Selection</item> icon and choose <item type="menuitem">New Style from
Selection</item> from the submenu</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3156260" role="listitem" l10n="U"
oldref="43">Type a name in the <item type="menuitem">Style Name</item>
box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156260" role="listitem" l10n="U">Type a
name in the <item type="menuitem">Style Name</item> box.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154411" role="listitem" l10n="U"
oldref="44">Click <emph>OK</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154411" role="listitem" l10n="U">Click
<emph>OK</emph>.</paragraph>
</listitem>
</list>
-<paragraph xml-lang="en-US" id="hd_id3153373" role="heading" level="2" l10n="U"
-oldref="20">To Create a New Style by Drag-And-Drop</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153373" role="heading" level="2"
l10n="U">To Create a New Style by Drag-And-Drop</paragraph>
<list type="ordered">
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154233" role="listitem" l10n="CHG"
oldref="31">Choose <emph>Format - Styles and Formatting</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154233" role="listitem"
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph>.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154258" role="listitem" l10n="U"
oldref="45">Click the icon of the style category that you want to
create.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154258" role="listitem" l10n="U">Click
the icon of the style category that you want to create.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154851" role="listitem" l10n="U"
oldref="32">Select at least one character, or object, in the style that you
want to copy. For page and frame styles, select at least one character or
object in the page or frame.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154851" role="listitem" l10n="U">Select
at least one character, or object, in the style that you want to copy. For page
and frame styles, select at least one character or object in the page or
frame.</paragraph>
</listitem>
<listitem>
-<paragraph xml-lang="en-US" id="par_id3154871" role="listitem" l10n="CHG"
oldref="33">Drag the character or object to the Styles and Formatting window
and release.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154871" role="listitem" l10n="CHG">Drag
the character or object to the Styles and Formatting window and
release.</paragraph>
<paragraph xml-lang="en-US" id="par_idN107B2" role="listitem" l10n="NEW">For
paragraph and character styles, you can drag-and-drop onto the respective icon
in the Styles and Formatting window. You do not need to open that style
category in advance.</paragraph>
</listitem>
</list>
@@ -81,7 +78,7 @@ oldref="20">To Create a New Style by Drag-And-Drop</paragraph>
<embed href="text/swriter/guide/templates_styles.xhp#templates_styles"/>
<embed href="text/swriter/guide/stylist_fillformat.xhp#stylist_fillformat"/>
<embed href="text/swriter/guide/stylist_update.xhp#stylist_update"/>
-<paragraph xml-lang="en-US" id="par_id3149988" role="paragraph" l10n="U"
oldref="40"><link href="text/swriter/01/05140000.xhp" name="Styles and
Formatting">Styles and Formatting</link></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149988" role="paragraph" l10n="U"><link
href="text/swriter/01/05140000.xhp" name="Styles and Formatting">Styles and
Formatting</link></paragraph>
</section>
</body>
</helpdocument>