This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new 5e60df1e3a Remove 'oldref' entries (work in progress)
5e60df1e3a is described below

commit 5e60df1e3ab558a54fa1d5de18a68a0fbf09b721
Author: mseidel <msei...@apache.org>
AuthorDate: Sat Jan 25 17:03:30 2025 +0100

    Remove 'oldref' entries (work in progress)
    
    (cherry picked from commit 4418421f50c1347fb0a41e9979c35bc2c4696775)
---
 .../source/text/sbasic/shared/03010201.xhp         |  45 ++---
 .../source/text/sbasic/shared/03030105.xhp         |  63 +++---
 .../source/text/shared/00/00000001.xhp             | 122 +++++-------
 .../source/text/shared/00/00040500.xhp             | 215 ++++++++++-----------
 .../source/text/swriter/guide/word_completion.xhp  |   2 +-
 5 files changed, 207 insertions(+), 240 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/03010201.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03010201.xhp
index a3136650fd..1f96dae3cc 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03010201.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03010201.xhp
@@ -33,31 +33,26 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3148932">
 <bookmark_value>InputBox function</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3148932" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03010201.xhp" name="InputBox 
Function [Runtime]">InputBox Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="U" 
oldref="2">Displays a prompt in a dialog at which the user can input text. The 
input is assigned to a variable.</paragraph>
+<paragraph role="heading" id="hd_id3148932" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03010201.xhp" name="InputBox Function 
[Runtime]">InputBox Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" 
l10n="U">Displays a prompt in a dialog at which the user can input text. The 
input is assigned to a variable.</paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3151100" xml-lang="en-US" l10n="U" 
oldref="3">The <emph>InputBox</emph> statement is a convenient method of 
entering text through a dialog. Confirm the input by clicking OK or pressing 
Return. The input is returned as the function return value. If you close the 
dialog with Cancel, <emph>InputBox</emph> returns a zero-length string 
("").</paragraph>
-<paragraph role="heading" id="hd_id3152347" xml-lang="en-US" level="2" 
l10n="U" oldref="4">Syntax:</paragraph>
-<paragraph role="code" id="par_id3159201" xml-lang="en-US" l10n="U" 
oldref="5">InputBox (Msg As String[, Title As String[, Default As String[, 
x_pos As Integer, y_pos As Integer]]]])</paragraph>
-<paragraph role="heading" id="hd_id3150713" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U" 
oldref="7">String</paragraph>
-<paragraph role="heading" id="hd_id3149346" xml-lang="en-US" level="2" 
l10n="U" oldref="8">Parameter:</paragraph>
-<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" l10n="U" 
oldref="9">
-<emph>Msg:</emph> String expression displayed as the message in the dialog 
box.</paragraph>
-<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U" 
oldref="10">
-<emph>Title:</emph> String expression displayed in the title bar of the dialog 
box.</paragraph>
-<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" l10n="U" 
oldref="11">
-<emph>Default:</emph> String expression displayed in the text box as default 
if no other input is given.</paragraph>
-<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" l10n="U" 
oldref="12">
-<emph>x_pos:</emph> Integer expression that specifies the horizontal position 
of the dialog. The position is an absolute coordinate and does not refer to the 
window of the office application.</paragraph>
-<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US" l10n="U" 
oldref="13">
-<emph>y_pos:</emph> Integer expression that specifies the vertical position of 
the dialog. The position is an absolute coordinate and does not refer to the 
window of the office application.</paragraph>
-<paragraph role="paragraph" id="par_id3153897" xml-lang="en-US" l10n="U" 
oldref="14">If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the 
dialog is centered on the screen. The position is specified in <link 
href="text/sbasic/shared/00000002.xhp#twips" 
name="twips">twips</link>.</paragraph>
-<paragraph role="heading" id="hd_id3149456" xml-lang="en-US" level="2" 
l10n="U" oldref="15">Example:</paragraph>
-<paragraph role="code" id="par_id3153379" xml-lang="en-US" l10n="U" 
oldref="16">Sub ExampleInputBox</paragraph>
-<paragraph role="code" id="par_id3149656" xml-lang="en-US" l10n="U" 
oldref="17">Dim sText As String</paragraph>
-<paragraph role="code" id="par_id3154367" xml-lang="en-US" l10n="U" 
oldref="18">sText = InputBox ("Please enter a phrase:","Dear User")</paragraph>
-<paragraph role="code" id="par_id3151042" xml-lang="en-US" l10n="U" 
oldref="19">MsgBox ( sText , 64, "Confirmation of phrase")</paragraph>
-<paragraph role="code" id="par_id3150768" xml-lang="en-US" l10n="U" 
oldref="20">End Sub</paragraph>
+<paragraph role="paragraph" id="par_id3151100" xml-lang="en-US" l10n="U">The 
<emph>InputBox</emph> statement is a convenient method of entering text through 
a dialog. Confirm the input by clicking OK or pressing Return. The input is 
returned as the function return value. If you close the dialog with Cancel, 
<emph>InputBox</emph> returns a zero-length string ("").</paragraph>
+<paragraph role="heading" id="hd_id3152347" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="code" id="par_id3159201" xml-lang="en-US" l10n="U">InputBox 
(Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos 
As Integer]]]])</paragraph>
+<paragraph role="heading" id="hd_id3150713" xml-lang="en-US" level="2" 
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" 
l10n="U">String</paragraph>
+<paragraph role="heading" id="hd_id3149346" xml-lang="en-US" level="2" 
l10n="U">Parameter:</paragraph>
+<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" 
l10n="U"><emph>Msg:</emph> String expression displayed as the message in the 
dialog box.</paragraph>
+<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" 
l10n="U"><emph>Title:</emph> String expression displayed in the title bar of 
the dialog box.</paragraph>
+<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" 
l10n="U"><emph>Default:</emph> String expression displayed in the text box as 
default if no other input is given.</paragraph>
+<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" 
l10n="U"><emph>x_pos:</emph> Integer expression that specifies the horizontal 
position of the dialog. The position is an absolute coordinate and does not 
refer to the window of the office application.</paragraph>
+<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US" 
l10n="U"><emph>y_pos:</emph> Integer expression that specifies the vertical 
position of the dialog. The position is an absolute coordinate and does not 
refer to the window of the office application.</paragraph>
+<paragraph role="paragraph" id="par_id3153897" xml-lang="en-US" l10n="U">If 
<emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered 
on the screen. The position is specified in <link 
href="text/sbasic/shared/00000002.xhp#twips" 
name="twips">twips</link>.</paragraph>
+<paragraph role="heading" id="hd_id3149456" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="code" id="par_id3153379" xml-lang="en-US" l10n="U">Sub 
ExampleInputBox</paragraph>
+<paragraph role="code" id="par_id3149656" xml-lang="en-US" l10n="U">Dim sText 
As String</paragraph>
+<paragraph role="code" id="par_id3154367" xml-lang="en-US" l10n="U">sText = 
InputBox ("Please enter a phrase:","Dear User")</paragraph>
+<paragraph role="code" id="par_id3151042" xml-lang="en-US" l10n="U">MsgBox ( 
sText , 64, "Confirmation of phrase")</paragraph>
+<paragraph role="code" id="par_id3150768" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03030105.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03030105.xhp
index 6a31eb5925..b728fcaa02 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03030105.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03030105.xhp
@@ -33,40 +33,39 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3153127">
 <bookmark_value>WeekDay function</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3153127" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03030105.xhp" name="WeekDay 
Function [Runtime]">WeekDay Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" l10n="U" 
oldref="2">Returns the number corresponding to the weekday represented by a 
serial date number that is generated by the DateSerial or the DateValue 
function.</paragraph>
+<paragraph role="heading" id="hd_id3153127" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03030105.xhp" name="WeekDay Function 
[Runtime]">WeekDay Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" 
l10n="U">Returns the number corresponding to the weekday represented by a 
serial date number that is generated by the DateSerial or the DateValue 
function.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149655" xml-lang="en-US" l10n="U" 
oldref="4">WeekDay (Number)</paragraph>
-<paragraph role="heading" id="hd_id3148799" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3154125" xml-lang="en-US" l10n="U" 
oldref="6">Integer</paragraph>
-<paragraph role="heading" id="hd_id3150768" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" l10n="U" 
oldref="8">
-<emph>Number:</emph> Integer expression that contains the serial date number 
that is used to calculate the day of the week (1-7).</paragraph>
-<paragraph role="paragraph" id="par_id3159254" xml-lang="en-US" l10n="U" 
oldref="9">The following example determines the day of the week using the 
WeekDay function when you enter a date.</paragraph>
+<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3149655" xml-lang="en-US" 
l10n="U">WeekDay (Number)</paragraph>
+<paragraph role="heading" id="hd_id3148799" xml-lang="en-US" level="2" 
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3154125" xml-lang="en-US" 
l10n="U">Integer</paragraph>
+<paragraph role="heading" id="hd_id3150768" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" 
l10n="U"><emph>Number:</emph> Integer expression that contains the serial date 
number that is used to calculate the day of the week (1-7).</paragraph>
+<paragraph role="paragraph" id="par_id3159254" xml-lang="en-US" l10n="U">The 
following example determines the day of the week using the WeekDay function 
when you enter a date.</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3148616" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3145749" xml-lang="en-US" l10n="U" 
oldref="11">Sub ExampleWeekDay</paragraph>
-<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U" 
oldref="12">Dim sDay As String</paragraph>
-<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U" 
oldref="13">REM Return and display the day of the week</paragraph>
-<paragraph role="paragraph" id="par_id3155412" xml-lang="en-US" l10n="U" 
oldref="14">Select Case WeekDay( Now )</paragraph>
-<paragraph role="paragraph" id="par_id3155306" xml-lang="en-US" l10n="U" 
oldref="15">case 1</paragraph>
-<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US" l10n="U" 
oldref="16">sDay="Sunday"</paragraph>
-<paragraph role="paragraph" id="par_id3152460" xml-lang="en-US" l10n="U" 
oldref="17">case 2</paragraph>
-<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U" 
oldref="18">sDay="Monday"</paragraph>
-<paragraph role="paragraph" id="par_id3149666" xml-lang="en-US" l10n="U" 
oldref="19">case 3</paragraph>
-<paragraph role="paragraph" id="par_id3153157" xml-lang="en-US" l10n="U" 
oldref="20">sDay="Tuesday"</paragraph>
-<paragraph role="paragraph" id="par_id3154730" xml-lang="en-US" l10n="U" 
oldref="21">case 4</paragraph>
-<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" l10n="U" 
oldref="22">sDay="Wednesday"</paragraph>
-<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US" l10n="U" 
oldref="23">case 5</paragraph>
-<paragraph role="paragraph" id="par_id3155416" xml-lang="en-US" l10n="U" 
oldref="24">sDay="Thursday"</paragraph>
-<paragraph role="paragraph" id="par_id3150716" xml-lang="en-US" l10n="U" 
oldref="25">case 6</paragraph>
-<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" l10n="U" 
oldref="26">sDay="Friday"</paragraph>
-<paragraph role="paragraph" id="par_id3146971" xml-lang="en-US" l10n="U" 
oldref="27">case 7</paragraph>
-<paragraph role="paragraph" id="par_id3153707" xml-lang="en-US" l10n="U" 
oldref="28">sDay="Saturday"</paragraph>
-<paragraph role="paragraph" id="par_id3155065" xml-lang="en-US" l10n="U" 
oldref="29">End Select</paragraph>
-<paragraph role="paragraph" id="par_id3148993" xml-lang="en-US" l10n="U" 
oldref="30">msgbox "" + sDay,64,"Today is"</paragraph>
-<paragraph role="paragraph" id="par_id3149019" xml-lang="en-US" l10n="U" 
oldref="31">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3148616" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3145749" xml-lang="en-US" l10n="U">Sub 
ExampleWeekDay</paragraph>
+<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U">Dim 
sDay As String</paragraph>
+<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U">REM 
Return and display the day of the week</paragraph>
+<paragraph role="paragraph" id="par_id3155412" xml-lang="en-US" 
l10n="U">Select Case WeekDay( Now )</paragraph>
+<paragraph role="paragraph" id="par_id3155306" xml-lang="en-US" l10n="U">case 
1</paragraph>
+<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US" 
l10n="U">sDay="Sunday"</paragraph>
+<paragraph role="paragraph" id="par_id3152460" xml-lang="en-US" l10n="U">case 
2</paragraph>
+<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" 
l10n="U">sDay="Monday"</paragraph>
+<paragraph role="paragraph" id="par_id3149666" xml-lang="en-US" l10n="U">case 
3</paragraph>
+<paragraph role="paragraph" id="par_id3153157" xml-lang="en-US" 
l10n="U">sDay="Tuesday"</paragraph>
+<paragraph role="paragraph" id="par_id3154730" xml-lang="en-US" l10n="U">case 
4</paragraph>
+<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" 
l10n="U">sDay="Wednesday"</paragraph>
+<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US" l10n="U">case 
5</paragraph>
+<paragraph role="paragraph" id="par_id3155416" xml-lang="en-US" 
l10n="U">sDay="Thursday"</paragraph>
+<paragraph role="paragraph" id="par_id3150716" xml-lang="en-US" l10n="U">case 
6</paragraph>
+<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" 
l10n="U">sDay="Friday"</paragraph>
+<paragraph role="paragraph" id="par_id3146971" xml-lang="en-US" l10n="U">case 
7</paragraph>
+<paragraph role="paragraph" id="par_id3153707" xml-lang="en-US" 
l10n="U">sDay="Saturday"</paragraph>
+<paragraph role="paragraph" id="par_id3155065" xml-lang="en-US" l10n="U">End 
Select</paragraph>
+<paragraph role="paragraph" id="par_id3148993" xml-lang="en-US" 
l10n="U">msgbox "" + sDay,64,"Today is"</paragraph>
+<paragraph role="paragraph" id="par_id3149019" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/00/00000001.xhp 
b/main/helpcontent2/source/text/shared/00/00000001.xhp
index feb45849bd..92a6765568 100644
--- a/main/helpcontent2/source/text/shared/00/00000001.xhp
+++ b/main/helpcontent2/source/text/shared/00/00000001.xhp
@@ -29,7 +29,7 @@
 </topic>
 </meta>
 <body>
-<paragraph xml-lang="en-US" id="hd_id3152952" role="heading" level="1" 
l10n="U" oldref="1">Frequently-Used Buttons</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152952" role="heading" level="1" 
l10n="U">Frequently-Used Buttons</paragraph>
 <section id="abbrechen">
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGTABLE_CMDCANCEL" 
id="bm_id4245124" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_QUERYWIZARD_CANCEL" 
id="bm_id7074800" localize="false"/>
@@ -40,8 +40,8 @@
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDCANCEL" 
id="bm_id3149177" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGREPORT_0_CMDCANCEL" 
id="bm_id3154142" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/EXTENSIONS_HID_LISTWIZARD_CANCEL" 
id="bm_id3145416" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147617" role="heading" level="2" 
l10n="U" oldref="4">Cancel</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155913" role="paragraph" l10n="U" 
oldref="5"><ahelp hid=".">Clicking <emph>Cancel</emph> closes a dialog without 
saving any changes made.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147617" role="heading" level="2" 
l10n="U">Cancel</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155913" role="paragraph" 
l10n="U"><ahelp hid=".">Clicking <emph>Cancel</emph> closes a dialog without 
saving any changes made.</ahelp></paragraph>
 </section>
 <section id="finish">
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGTABLE_CMDFINISH" 
id="bm_id3211157" localize="false"/>
@@ -50,13 +50,11 @@
 <paragraph xml-lang="en-US" id="par_id6909390" role="paragraph" 
l10n="NEW"><ahelp hid=".">Applies all changes and closes the 
wizard.</ahelp></paragraph>
 </section>
 <section id="abreissleiste">
-<paragraph xml-lang="en-US" id="hd_id3147477" role="heading" level="2" 
l10n="CHG"
-oldref="39">Toolbars</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149783" role="paragraph" l10n="CHG" 
oldref="40">By clicking the arrow next to some icons you open a toolbar. To 
move a toolbar, drag the title bar. As soon as you release the mouse button, 
the toolbar remains at the new position. Drag the title bar to another 
position, or drag to an edge of the window, where the toolbar will dock. Close 
a toolbar by clicking the Close Window icon. Make the toolbar visible again by 
choosing <emph>View - Toolbars - (t [...]
+<paragraph xml-lang="en-US" id="hd_id3147477" role="heading" level="2" 
l10n="CHG">Toolbars</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149783" role="paragraph" l10n="CHG">By 
clicking the arrow next to some icons you open a toolbar. To move a toolbar, 
drag the title bar. As soon as you release the mouse button, the toolbar 
remains at the new position. Drag the title bar to another position, or drag to 
an edge of the window, where the toolbar will dock. Close a toolbar by clicking 
the Close Window icon. Make the toolbar visible again by choosing <emph>View - 
Toolbars - (toolbar name) [...]
 </section>
 <section id="drehfeld">
-<paragraph xml-lang="en-US" id="hd_id3152414" role="heading" level="2" 
l10n="CHG"
-oldref="79">Spin button</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3152414" role="heading" level="2" 
l10n="CHG">Spin button</paragraph>
 <list type="ordered">
 <listitem>
 <paragraph xml-lang="en-US" id="par_id1094088" role="paragraph" l10n="NEW">In 
form controls, a spin button is a property of a numerical field, currency 
field, date field, or time field. If the property "Spin button" is enabled, the 
field shows a pair of symbols with arrows pointing to opposing directions, 
either vertically or horizontally.</paragraph>
@@ -65,18 +63,16 @@ oldref="79">Spin button</paragraph>
 <paragraph xml-lang="en-US" id="par_id7493209" role="paragraph" l10n="NEW">In 
the Basic IDE, a spin button is the name used for the numerical field together 
with the two arrow symbols.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3155599" role="paragraph" l10n="CHG" 
oldref="78">You can type a numerical value into the field next to the spin 
button, or select the value with the up-arrow or down-arrow symbols on the spin 
button. On the keyboard you can press the up arrow and down arrow keys to 
increase or reduce the value. You can press the Page Up and Page Down keys to 
set the maximum and minimum value.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150264" role="paragraph" l10n="CHG" 
oldref="38">If the field next to the spin button defines numerical values, you 
can also define a <link href="text/shared/00/00000003.xhp#metrik" 
name="measurement unit">measurement unit</link>, for example, 1 cm or 5 mm, 12 
pt or 2".</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155599" role="paragraph" l10n="CHG">You 
can type a numerical value into the field next to the spin button, or select 
the value with the up-arrow or down-arrow symbols on the spin button. On the 
keyboard you can press the up arrow and down arrow keys to increase or reduce 
the value. You can press the Page Up and Page Down keys to set the maximum and 
minimum value.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150264" role="paragraph" l10n="CHG">If 
the field next to the spin button defines numerical values, you can also define 
a <link href="text/shared/00/00000003.xhp#metrik" name="measurement 
unit">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 
2".</paragraph>
 </section>
 <section id="import">
-<paragraph xml-lang="en-US" id="hd_id3154232" role="heading" level="2" l10n="U"
-oldref="76">Convert</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148983" role="paragraph" l10n="U" 
oldref="77"><ahelp hid=".">If you click forward through the dialog, this button 
is called <emph>Next</emph>. On the last page the button has the name 
<emph>Convert</emph>. The conversion is then performed by clicking the 
button.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3154232" role="heading" level="2" 
l10n="U">Convert</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148983" role="paragraph" 
l10n="U"><ahelp hid=".">If you click forward through the dialog, this button is 
called <emph>Next</emph>. On the last page the button has the name 
<emph>Convert</emph>. The conversion is then performed by clicking the 
button.</ahelp></paragraph>
 </section>
 <section id="kontextmenue">
-<paragraph xml-lang="en-US" id="hd_id3145129" role="heading" level="2" l10n="U"
-oldref="42">Context Menu</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156553" role="paragraph" l10n="U" 
oldref="44"><variable id="context">To activate the context menu of an object, 
first click the object with the <switchinline select="sys"><caseinline 
select="MAC">
+<paragraph xml-lang="en-US" id="hd_id3145129" role="heading" level="2" 
l10n="U">Context Menu</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156553" role="paragraph" 
l10n="U"><variable id="context">To activate the context menu of an object, 
first click the object with the <switchinline select="sys"><caseinline 
select="MAC">
 </caseinline><defaultinline>left</defaultinline></switchinline> mouse button 
to select it, and then, <switchinline select="sys"><caseinline 
select="MAC">while holding down the Ctrl key or the Command and Option keys, 
click the mouse button again
 </caseinline><defaultinline> click the right mouse 
button</defaultinline></switchinline>. Some context menus can be called even if 
the object has not been selected. Context menus are found just about everywhere 
in $[officename].
 </variable></paragraph>
@@ -98,9 +94,8 @@ oldref="42">Context Menu</paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/basctl:PushButton:RID_TP_DLGS:RID_PB_DELETE" id="bm_id3214514" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/basctl:PushButton:RID_TP_LIBS:RID_PB_DELETE" id="bm_id3145749" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_DELETE" id="bm_id3150443" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149180" role="heading" level="2" l10n="U"
-oldref="24">Delete</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153750" role="paragraph" l10n="U" 
oldref="25"><ahelp hid=".">Deletes the selected element or elements after 
confirmation.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149180" role="heading" level="2" 
l10n="U">Delete</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153750" role="paragraph" 
l10n="U"><ahelp hid=".">Deletes the selected element or elements after 
confirmation.</ahelp></paragraph>
 </section>
 <section id="loeschen1">
 <bookmark xml-lang="en-US" 
branch="hid/sc:PushButton:RID_SCDLG_CONSOLIDATE:BTN_REMOVE" id="bm_id3146916" 
localize="false"/>
@@ -113,29 +108,25 @@ oldref="24">Delete</paragraph>
 <!-- removed HID 
OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELDOUBLECAPS -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELABBREV" 
id="bm_id5413373" localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELDOUBLECAPS" 
id="bm_id2580950" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147557" role="heading" level="2" l10n="U"
-oldref="45">Delete</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155338" role="paragraph" l10n="U" 
oldref="46"><ahelp hid=".">Deletes the selected element or elements without 
requiring confirmation.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147557" role="heading" level="2" 
l10n="U">Delete</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155338" role="paragraph" 
l10n="U"><ahelp hid=".">Deletes the selected element or elements without 
requiring confirmation.</ahelp></paragraph>
 </section>
 <section id="metrik">
-<paragraph xml-lang="en-US" id="hd_id3148620" role="heading" level="2" 
l10n="CHG"
-oldref="6">Metrics</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145345" role="paragraph" l10n="U" 
oldref="7">You can enter values in the input fields in different units of 
measurement. The default unit is inches. However, if you want a space of 
exactly 1cm, then type "1cm". Additional units are available according to the 
context, for example, 12 pt for a 12 point spacing. If the value of the new 
unit is unrealistic, the program uses a predefined maximum or minimum 
value.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3148620" role="heading" level="2" 
l10n="CHG">Metrics</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145345" role="paragraph" l10n="U">You 
can enter values in the input fields in different units of measurement. The 
default unit is inches. However, if you want a space of exactly 1cm, then type 
"1cm". Additional units are available according to the context, for example, 12 
pt for a 12 point spacing. If the value of the new unit is unrealistic, the 
program uses a predefined maximum or minimum value.</paragraph>
 </section>
 <section id="schliessen">
-<paragraph xml-lang="en-US" id="hd_id3155535" role="heading" level="2" 
l10n="U" oldref="8">Close</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" l10n="U" 
oldref="9"><ahelp hid=".">Closes the dialog and saves all 
changes.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155535" role="heading" level="2" 
l10n="U">Close</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" 
l10n="U"><ahelp hid=".">Closes the dialog and saves all 
changes.</ahelp></paragraph>
 </section>
 <section id="schliessen2">
-<paragraph xml-lang="en-US" id="hd_id3147275" role="heading" level="2" l10n="U"
-oldref="57">Close</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153031" role="paragraph" l10n="U" 
oldref="58"><ahelp hid=".">Closes the dialog.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147275" role="heading" level="2" 
l10n="U">Close</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153031" role="paragraph" 
l10n="U"><ahelp hid=".">Closes the dialog.</ahelp></paragraph>
 </section>
 <section id="uebernehmen">
 <bookmark xml-lang="en-US" branch="hid/starmath:PushButton:RID_SYMBOLDIALOG:2" 
id="bm_id3149053" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3156113" role="heading" level="2" l10n="U"
-oldref="16">Apply</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155341" role="paragraph" l10n="U" 
oldref="17"><ahelp hid=".">Applies the modified or selected values without 
closing the dialog.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3156113" role="heading" level="2" 
l10n="U">Apply</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155341" role="paragraph" 
l10n="U"><ahelp hid=".">Applies the modified or selected values without closing 
the dialog.</ahelp></paragraph>
 </section>
 <section id="eingabesymbol">
 <bookmark xml-lang="en-US" 
branch="hid/sc:ImageButton:RID_SCDLG_PIVOT_LAYOUT:RB_OUTAREA" id="bm_id3155067" 
localize="false"/>
@@ -167,10 +158,9 @@ oldref="16">Apply</paragraph>
 <!-- removed HID HID_SC_FAP_BTN_REF4 -->
 <bookmark xml-lang="en-US" 
branch="hid/sc:ImageButton:RID_SCDLG_FILTER:RB_COPY_AREA" id="bm_id3150010" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/sc:ImageButton:RID_SCDLG_SPEC_FILTER:RB_COPY_AREA" 
id="bm_id3146985" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153760" role="heading" level="2" l10n="U"
-oldref="47">Shrink / Maximize</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153087" role="paragraph" l10n="U" 
oldref="48"><ahelp hid=".">Click the <emph>Shrink</emph> icon to reduce the 
dialog to the size of the input field. It is then easier to mark the required 
reference in the sheet. The icons then automatically convert to the 
<emph>Maximize</emph> icon. Click it to restore the dialog to its original 
size.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155062" role="paragraph" l10n="U" 
oldref="49">The dialog is automatically minimized when you click into a sheet 
with the mouse. As soon as you release the mouse button, the dialog is restored 
and the reference range defined with the mouse is highlighted in the document 
by a blue frame.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3153760" role="heading" level="2" 
l10n="U">Shrink / Maximize</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153087" role="paragraph" 
l10n="U"><ahelp hid=".">Click the <emph>Shrink</emph> icon to reduce the dialog 
to the size of the input field. It is then easier to mark the required 
reference in the sheet. The icons then automatically convert to the 
<emph>Maximize</emph> icon. Click it to restore the dialog to its original 
size.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="par_id3155062" role="paragraph" l10n="U">The 
dialog is automatically minimized when you click into a sheet with the mouse. 
As soon as you release the mouse button, the dialog is restored and the 
reference range defined with the mouse is highlighted in the document by a blue 
frame.</paragraph>
 <table id="tbl_id3148473">
 <tablerow>
 <tablecell>
@@ -179,7 +169,7 @@ oldref="47">Shrink / Maximize</paragraph>
 </image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153321" role="paragraph" l10n="U" 
oldref="50">Shrink</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153321" role="paragraph" 
l10n="U">Shrink</paragraph>
 </tablecell>
 </tablerow>
 <tablerow>
@@ -189,7 +179,7 @@ oldref="47">Shrink / Maximize</paragraph>
 </image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3155628" role="paragraph" l10n="U" 
oldref="51">Maximize</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155628" role="paragraph" 
l10n="U">Maximize</paragraph>
 </tablecell>
 </tablerow>
 </table>
@@ -197,9 +187,8 @@ oldref="47">Shrink / Maximize</paragraph>
 <section id="vorschau">
 <bookmark xml-lang="en-US" branch="hid/CUI_HID_MEASURE_CTL_PREVIEW" 
id="bm_id3157970" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SVX_HID_GALLERY_PREVIEW" 
id="bm_id3153896" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3156192" role="heading" level="2" l10n="U"
-oldref="34">Preview Field</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154046" role="paragraph" l10n="U" 
oldref="35"><ahelp hid=".">Displays a preview of the current 
selection.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3156192" role="heading" level="2" 
l10n="U">Preview Field</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154046" role="paragraph" 
l10n="U"><ahelp hid=".">Displays a preview of the current 
selection.</ahelp></paragraph>
 </section>
 <section id="weiterautopi">
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGTABLE_CMDNEXT" 
id="bm_id8281197" localize="false"/>
@@ -211,37 +200,32 @@ oldref="34">Preview Field</paragraph>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDNEXT" 
id="bm_id3147576" localize="false"/>
 <!-- removed HID HID_DLGREPORT_0_CMDNEXTORREADY -->
 <bookmark xml-lang="en-US" branch="hid/EXTENSIONS_HID_LISTWIZARD_NEXT" 
id="bm_id3155135" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145609" role="heading" level="2" l10n="U"
-oldref="70">Next</paragraph>
-<paragraph xml-lang="en-US" id="par_id3152473" role="paragraph" l10n="U" 
oldref="71"><ahelp hid=".">Click the <emph>Next</emph> button, and the wizard 
uses the current dialog settings and proceeds to the next step. If you are on 
the last step, this button becomes <emph>Create</emph>.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145609" role="heading" level="2" 
l10n="U">Next</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152473" role="paragraph" 
l10n="U"><ahelp hid=".">Click the <emph>Next</emph> button, and the wizard uses 
the current dialog settings and proceeds to the next step. If you are on the 
last step, this button becomes <emph>Create</emph>.</ahelp></paragraph>
 </section>
 <section id="zurueck">
 <!-- removed HID OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK -->
 <bookmark xml-lang="en-US" 
branch="hid/cui:PushButton:RID_OFADLG_OPTIONS_TREE:PB_BACK" id="bm_id4539933" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149670" role="heading" level="2" l10n="U"
-oldref="13">Back<comment>in Tools - Options</comment></paragraph>
-<paragraph xml-lang="en-US" id="par_id3145068" role="paragraph" l10n="U" 
oldref="14"><ahelp 
hid="OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK">Resets modified values 
back to the $[officename] default values.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3149670" role="heading" level="2" 
l10n="U">Back<comment>in Tools - Options</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3145068" role="paragraph" 
l10n="U"><ahelp hid="OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK">Resets 
modified values back to the $[officename] default values.</ahelp></paragraph>
 </section>
 <section id="zurueck2">
 <bookmark xml-lang="en-US" branch="hid/SFX2_HID_TABDLG_RESET_BTN" 
id="bm_id3151054" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3148755" role="heading" level="2" l10n="U"
-oldref="59">Reset<comment>all tab dialogs</comment></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149651" role="paragraph" l10n="U" 
oldref="60"><ahelp hid="HID_TABDLG_RESET_BTN">Resets changes made to the 
current tab to those applicable when this dialog was opened. A confirmation 
query does not appear when you close the dialog.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3148755" role="heading" level="2" 
l10n="U">Reset<comment>all tab dialogs</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149651" role="paragraph" 
l10n="U"><ahelp hid="HID_TABDLG_RESET_BTN">Resets changes made to the current 
tab to those applicable when this dialog was opened. A confirmation query does 
not appear when you close the dialog.</ahelp></paragraph>
 </section>
 <section id="zuruecksetzen">
-<paragraph xml-lang="en-US" id="hd_id3143278" role="heading" level="2" l10n="U"
-oldref="18">Reset<comment>whats this?</comment></paragraph>
-<paragraph xml-lang="en-US" id="par_id3150791" role="paragraph" l10n="U" 
oldref="19"><ahelp hid="HID_TABDLG_RESET_BTN">Resets modified values back to 
the default values.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154331" role="warning" l10n="U" 
oldref="20">A confirmation query does not appear. If you confirm the dialog 
with OK all settings in this dialog are reset.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3143278" role="heading" level="2" 
l10n="U">Reset<comment>whats this?</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3150791" role="paragraph" 
l10n="U"><ahelp hid="HID_TABDLG_RESET_BTN">Resets modified values back to the 
default values.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154331" role="warning" l10n="U">A 
confirmation query does not appear. If you confirm the dialog with OK all 
settings in this dialog are reset.</paragraph>
 </section>
 <section id="standard">
 <bookmark xml-lang="en-US" branch="hid/sw:PushButton:TP_STD_FONT:PB_STANDARD" 
id="bm_id481887" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/SFX2_HID_TABDLG_STANDARD_BTN" 
id="bm_id3157322" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/sd:PushButton:DLG_COPY:BTN_SET_DEFAULT" 
id="bm_id3083280" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145173" role="heading" level="2" l10n="U"
-oldref="10">Standard<comment>e.g. in Format - Para 
Style</comment><comment>UFI: Name is Default on Tools-Options-Writer-Basic 
Fonts</comment></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154153" role="paragraph" l10n="U" 
oldref="11"><ahelp hid="HID_TABDLG_STANDARD_BTN">Resets the values visible in 
the dialog back to the default installation values.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154299" role="warning" l10n="U" 
oldref="12">A confirmation does not appear before the defaults are 
reloaded.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3145173" role="heading" level="2" 
l10n="U">Standard<comment>e.g. in Format - Para Style</comment><comment>UFI: 
Name is Default on Tools-Options-Writer-Basic Fonts</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154153" role="paragraph" 
l10n="U"><ahelp hid="HID_TABDLG_STANDARD_BTN">Resets the values visible in the 
dialog back to the default installation values.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154299" role="warning" l10n="U">A 
confirmation does not appear before the defaults are reloaded.</paragraph>
 </section>
 <section id="zurueckautopi">
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGTABLE_CMDPREV" 
id="bm_id1064180" localize="false"/>
@@ -252,24 +236,22 @@ oldref="10">Standard<comment>e.g. in Format - Para 
Style</comment><comment>UFI:
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGFORM_CMDPREV" 
id="bm_id3145346" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_DLGREPORT_0_CMDPREV" 
id="bm_id3150984" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/EXTENSIONS_HID_LISTWIZARD_PREVIOUS" 
id="bm_id3156155" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147502" role="heading" level="2" l10n="U"
-oldref="72">Back</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150439" role="paragraph" l10n="U" 
oldref="73"><ahelp hid="HID_TABDLG_STANDARD_BTN">View the selections in the 
dialog made in the previous step. The current settings remain 
unchanged.</ahelp> This button can only be activated from page two 
on.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147502" role="heading" level="2" 
l10n="U">Back</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150439" role="paragraph" 
l10n="U"><ahelp hid="HID_TABDLG_STANDARD_BTN">View the selections in the dialog 
made in the previous step. The current settings remain unchanged.</ahelp> This 
button can only be activated from page two on.</paragraph>
 </section>
 <section id="zusaetze">
-<paragraph xml-lang="en-US" id="hd_id3147352" role="heading" level="2" l10n="U"
-oldref="52">More</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155314" role="paragraph" l10n="U" 
oldref="53"><ahelp hid="HID_TABDLG_STANDARD_BTN">Click the <emph>More</emph> 
button to expand the dialog to show further options. Click again to restore the 
dialog.</ahelp></paragraph>
+<paragraph xml-lang="en-US" id="hd_id3147352" role="heading" level="2" 
l10n="U">More</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155314" role="paragraph" 
l10n="U"><ahelp hid="HID_TABDLG_STANDARD_BTN">Click the <emph>More</emph> 
button to expand the dialog to show further options. Click again to restore the 
dialog.</ahelp></paragraph>
 </section>
-<paragraph xml-lang="en-US" id="par_id3161659" role="paragraph" l10n="U" 
oldref="41"><variable id="siehe">See also the following functions:
+<paragraph xml-lang="en-US" id="par_id3161659" role="paragraph" 
l10n="U"><variable id="siehe">See also the following functions:
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147418" role="paragraph" l10n="CHG" 
oldref="55"><variable id="regulaer">The search supports <link 
href="text/shared/01/02100001.xhp" name="regular expressions">regular 
expressions</link>. You can enter "all.*", for example to find the first 
location of "all" followed by any characters. If you want to search for a text 
that is also a regular expression, you must precede every character with a \ 
character. You can switch the automatic evaluation of re [...]
+<paragraph xml-lang="en-US" id="par_id3147418" role="paragraph" 
l10n="CHG"><variable id="regulaer">The search supports <link 
href="text/shared/01/02100001.xhp" name="regular expressions">regular 
expressions</link>. You can enter "all.*", for example to find the first 
location of "all" followed by any characters. If you want to search for a text 
that is also a regular expression, you must precede every character with a \ 
character. You can switch the automatic evaluation of regular expres [...]
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3163714" role="paragraph" l10n="U" 
oldref="56"><variable id="wahr">If an error occurs, the function returns a 
logical or numerical value.
+<paragraph xml-lang="en-US" id="par_id3163714" role="paragraph" 
l10n="U"><variable id="wahr">If an error occurs, the function returns a logical 
or numerical value.
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154145" role="paragraph" l10n="U" 
oldref="54"><variable id="kontext">(This command is only accessible through the 
<link href="text/shared/00/00000005.xhp#kontextmenue" name="context 
menu">context menu</link>).
+<paragraph xml-lang="en-US" id="par_id3154145" role="paragraph" 
l10n="U"><variable id="kontext">(This command is only accessible through the 
<link href="text/shared/00/00000005.xhp#kontextmenue" name="context 
menu">context menu</link>).
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3152791" role="paragraph" l10n="U" 
oldref="61"><variable id="wiederholen">By double-clicking a tool, you can use 
it for multiple tasks. If you call the tool with a single-click, it reverts 
back to the last selection after completing the task.
+<paragraph xml-lang="en-US" id="par_id3152791" role="paragraph" 
l10n="U"><variable id="wiederholen">By double-clicking a tool, you can use it 
for multiple tasks. If you call the tool with a single-click, it reverts back 
to the last selection after completing the task.
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_id9345377" role="paragraph" 
l10n="NEW"><variable id="ShiftF1">Press Shift+F1 and point to a control to 
learn more about that control.
 </variable></paragraph>
diff --git a/main/helpcontent2/source/text/shared/00/00040500.xhp 
b/main/helpcontent2/source/text/shared/00/00040500.xhp
index 4098eb084c..a0d1b2e822 100644
--- a/main/helpcontent2/source/text/shared/00/00040500.xhp
+++ b/main/helpcontent2/source/text/shared/00/00040500.xhp
@@ -29,169 +29,166 @@
 </topic>
 </meta>
 <body>
-<paragraph xml-lang="en-US" id="hd_id3150347" role="heading" level="1" 
l10n="U" oldref="1">Format Menu</paragraph>
-<paragraph xml-lang="en-US" id="par_id3145356" role="paragraph" l10n="CHG" 
oldref="8"><variable id="standard">Choose <emph>Format - Default 
Formatting</emph>
+<paragraph xml-lang="en-US" id="hd_id3150347" role="heading" level="1" 
l10n="U">Format Menu</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145356" role="paragraph" 
l10n="CHG"><variable id="standard">Choose <emph>Format - Default 
Formatting</emph>
 </variable></paragraph>
 <section id="zeichen">
-<paragraph xml-lang="en-US" id="par_id3153244" role="paragraph" l10n="U" 
oldref="9">Choose <emph>Format - Character</emph>
+<paragraph xml-lang="en-US" id="par_id3153244" role="paragraph" 
l10n="U">Choose <emph>Format - Character</emph>
 </paragraph>
-<paragraph xml-lang="en-US" id="par_id3152352" role="paragraph" l10n="CHG" 
oldref="10">On <emph>Text Formatting</emph> Bar (with cursor in object), 
click</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152352" role="paragraph" l10n="CHG">On 
<emph>Text Formatting</emph> Bar (with cursor in object), click</paragraph>
 <section id="syzeich">
 <table id="tbl_id3150008">
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3148998" role="paragraph" l10n="E">
-<image id="img_id3154894" src="res/commandimagelist/sc_outlineformat.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3154894">Icon</alt>
-</image></paragraph>
+<image id="img_id3154894" src="res/commandimagelist/sc_outlineformat.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3154894">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3149999" role="paragraph" l10n="U" 
oldref="11">Character</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149999" role="paragraph" 
l10n="U">Character</paragraph>
 </tablecell>
 </tablerow>
 </table>
 </section>
 </section>
 <section id="schrift">
-<paragraph xml-lang="en-US" id="par_id3153935" role="paragraph" l10n="U" 
oldref="12">Choose <emph>Format - Character - Font</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3157958" role="paragraph" l10n="CHG" 
oldref="14">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Font</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155338" role="paragraph" l10n="U" 
oldref="16">Open context menu of a row header in a database table - choose 
<emph>Table Format - Font</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150355" role="paragraph" l10n="U" 
oldref="18">Choose <emph>Format - Title - Character</emph> tab (Chart 
documents)</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149812" role="paragraph" l10n="U" 
oldref="19">Choose <emph>Format - Legend - Character</emph> tab (Chart 
documents)</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153717" role="paragraph" l10n="U" 
oldref="20">Choose <emph>Format - Axis - Character</emph> tab (Chart 
documents)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153935" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Font</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3157958" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Font</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155338" role="paragraph" l10n="U">Open 
context menu of a row header in a database table - choose <emph>Table Format - 
Font</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150355" role="paragraph" 
l10n="U">Choose <emph>Format - Title - Character</emph> tab (Chart 
documents)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149812" role="paragraph" 
l10n="U">Choose <emph>Format - Legend - Character</emph> tab (Chart 
documents)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153717" role="paragraph" 
l10n="U">Choose <emph>Format - Axis - Character</emph> tab (Chart 
documents)</paragraph>
 <switch select="appl">
 <case select="CALC">
-<paragraph xml-lang="en-US" id="par_id3154749" role="paragraph" l10n="U" 
oldref="17">Choose <emph>Format - Cell - Font</emph> tab 
(spreadsheets)</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156306" role="paragraph" l10n="U" 
oldref="199">Menu <emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154749" role="paragraph" 
l10n="U">Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156306" role="paragraph" l10n="U">Menu 
<emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
 </case>
 </switch>
 </section>
 <section id="schrifteffekt">
-<paragraph xml-lang="en-US" id="par_id3155829" role="paragraph" l10n="U" 
oldref="21">Choose <emph>Format - Character - Font Effects</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149819" role="paragraph" l10n="CHG" 
oldref="23">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Font Effects</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155829" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Font Effects</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149819" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Font Effects</emph> 
tab</paragraph>
 <switch select="appl">
 <case select="CALC">
-<paragraph xml-lang="en-US" id="par_id3159176" role="paragraph" l10n="U" 
oldref="200">Menu <emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159176" role="paragraph" l10n="U">Menu 
<emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
 </case>
 </switch>
 </section>
 <section id="position">
-<paragraph xml-lang="en-US" id="par_id3153541" role="paragraph" l10n="U" 
oldref="181">Choose <emph>Format - Character - Position</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3159256" role="paragraph" l10n="CHG" 
oldref="183">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Alignment</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153541" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Position</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159256" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Alignment</emph> tab</paragraph>
 <switch select="appl">
 <case select="CALC">
-<paragraph xml-lang="en-US" id="par_id3151385" role="paragraph" l10n="U" 
oldref="201">Menu <emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151385" role="paragraph" l10n="U">Menu 
<emph>Format - Page - Header/Footer - Edit</emph> button 
(spreadsheets)</paragraph>
 </case>
 </switch>
 </section>
 <section id="asilayout">
-<paragraph xml-lang="en-US" id="par_id3148550" role="paragraph" l10n="U" 
oldref="186">Choose <emph>Format - Character - Asian Layout</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3152811" role="paragraph" l10n="CHG" 
oldref="188">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Asian Layout</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148550" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Asian Layout</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152811" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Asian Layout</emph> 
tab</paragraph>
 </section>
 <section id="asitypo">
-<paragraph xml-lang="en-US" id="par_id3153524" role="paragraph" l10n="U" 
oldref="190">Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not 
in HTML)</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154366" role="paragraph" l10n="U" 
oldref="191"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cell - Asian Typography</emph> 
tab</caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3148742" role="paragraph" l10n="CHG" 
oldref="193">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Asian Typography</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153524" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in 
HTML)</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154366" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cell - Asian Typography</emph> 
tab</caseinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3148742" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting -</emph> open context 
menu of an entry and click <emph>Modify/New - Asian Typography</emph> 
tab</paragraph>
 </section>
 <section id="hyperl">
-<paragraph xml-lang="en-US" id="par_id3148922" role="paragraph" l10n="U" 
oldref="26">Choose <emph>Format - Character - Hyperlink</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148922" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Hyperlink</emph> tab</paragraph>
 </section>
 <section id="absatz">
-<paragraph xml-lang="en-US" id="par_id3149169" role="paragraph" l10n="U" 
oldref="29">Choose <emph>Format - Paragraph</emph>
+<paragraph xml-lang="en-US" id="par_id3149169" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph</emph>
 </paragraph>
-<paragraph xml-lang="en-US" id="par_id3151381" role="paragraph" l10n="CHG" 
oldref="30">On <emph>Text Formatting</emph> bar (with cursor in object), 
click</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151381" role="paragraph" l10n="CHG">On 
<emph>Text Formatting</emph> bar (with cursor in object), click</paragraph>
 <section id="syabsatz">
 <table id="tbl_id3150652">
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3155995" role="paragraph" l10n="E">
-<image id="img_id3150495" src="res/commandimagelist/sc_paragraphdialog.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3150495">Icon</alt>
-</image></paragraph>
+<image id="img_id3150495" src="res/commandimagelist/sc_paragraphdialog.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3150495">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3147299" role="paragraph" l10n="CHG" 
oldref="31">Paragraph</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147299" role="paragraph" 
l10n="CHG">Paragraph</paragraph>
 </tablecell>
 </tablerow>
 </table>
 </section>
 </section>
 <section id="absatzausrichtung">
-<paragraph xml-lang="en-US" id="par_id3147289" role="paragraph" l10n="U" 
oldref="4">Choose <emph>Format - Paragraph - Alignment</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147352" role="paragraph" l10n="CHG" 
oldref="179">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Alignment</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147289" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph - Alignment</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147352" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Alignment</emph> tab</paragraph>
 </section>
 <section id="einzug">
-<paragraph xml-lang="en-US" id="par_id3154640" role="paragraph" l10n="U" 
oldref="32">Choose <emph>Format - Paragraph - Indents &amp; Spacing</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3152463" role="paragraph" l10n="CHG" 
oldref="34">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Indents &amp; Spacing</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154640" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph - Indents &amp; Spacing</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152463" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Indents &amp; Spacing</emph> 
tab</paragraph>
 </section>
 <section id="tabulator">
-<paragraph xml-lang="en-US" id="par_id3154319" role="paragraph" l10n="U" 
oldref="39">Choose <emph>Format - Paragraph - Tabs</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154833" role="paragraph" l10n="CHG" 
oldref="41">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Tabs</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3159155" role="paragraph" l10n="U" 
oldref="43">Double-click the ruler</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154319" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph - Tabs</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154833" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Tabs</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159155" role="paragraph" 
l10n="U">Double-click the ruler</paragraph>
 </section>
 <section id="umrandung">
 <paragraph xml-lang="en-US" id="par_idN109E2" role="paragraph" l10n="NEW">(all 
options only in Writer or Calc)</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156105" role="paragraph" l10n="CHG" 
oldref="44">Choose <emph>Format - Paragraph - Borders</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154149" role="paragraph" l10n="CHG" 
oldref="45">Choose <emph>Format - Picture - Borders</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3163822" role="paragraph" l10n="U" 
oldref="48">Choose <emph>Format - Frame/Object - Borders</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150048" role="paragraph" l10n="U" 
oldref="51">Choose <emph>Format - Page - Borders</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149911" role="paragraph" l10n="CHG" 
oldref="53">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Borders</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150094" role="paragraph" l10n="U" 
oldref="54">Choose <emph>Format - Page - Header - More</emph> button</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154501" role="paragraph" l10n="CHG" 
oldref="55">Choose <emph>Format - Page - Footer - More</emph> button</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148455" role="paragraph" l10n="U" 
oldref="56"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cells - Borders</emph> 
tab</caseinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3156105" role="paragraph" 
l10n="CHG">Choose <emph>Format - Paragraph - Borders</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154149" role="paragraph" 
l10n="CHG">Choose <emph>Format - Picture - Borders</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3163822" role="paragraph" 
l10n="U">Choose <emph>Format - Frame/Object - Borders</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150048" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Borders</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149911" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Borders</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150094" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Header - More</emph> button</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154501" role="paragraph" 
l10n="CHG">Choose <emph>Format - Page - Footer - More</emph> button</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148455" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cells - Borders</emph> 
tab</caseinline></switchinline></paragraph>
 </section>
 <section id="umrandungab">
-<paragraph xml-lang="en-US" id="par_id3155915" role="paragraph" l10n="U" 
oldref="177"><switchinline select="appl"><caseinline select="WRITER">Menu 
<emph>Format - Paragraph - Border</emph> tab - <emph>Spacing to contents</emph>
+<paragraph xml-lang="en-US" id="par_id3155915" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="WRITER">Menu 
<emph>Format - Paragraph - Border</emph> tab - <emph>Spacing to contents</emph>
 </caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3159130" role="paragraph" l10n="U" 
oldref="178"><switchinline select="appl"><caseinline select="CALC">Menu 
<emph>Format - Page - Border - Spacing to contents</emph>
+<paragraph xml-lang="en-US" id="par_id3159130" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Menu 
<emph>Format - Page - Border - Spacing to contents</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <section id="hintergrund">
-<paragraph xml-lang="en-US" id="par_id3155853" role="paragraph" l10n="U" 
oldref="57">Choose <emph>Format - Paragraph - Background</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3147330" role="paragraph" l10n="U" 
oldref="58">Choose <emph>Format - Character - Background</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149486" role="paragraph" l10n="CHG" 
oldref="59">Choose <emph>Format - Picture - Background</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150592" role="paragraph" l10n="U" 
oldref="61">Choose <emph>Format - Frame/Object - Background</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3151321" role="paragraph" l10n="U" 
oldref="65">Choose <emph>Format - Page - Background</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154510" role="paragraph" l10n="U" 
oldref="68">Choose <emph>Format - Page - Header - More</emph> button</paragraph>
-<paragraph xml-lang="en-US" id="par_id3159110" role="paragraph" l10n="U" 
oldref="69">Choose <emph>Format - Page - Footer - More</emph> button</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153532" role="paragraph" l10n="CHG" 
oldref="67">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Background</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3144747" role="paragraph" l10n="U" 
oldref="174">Choose <emph>Insert/Edit - Section - Background</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3146900" role="paragraph" l10n="U" 
oldref="71"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cells - Background</emph> 
tab</caseinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3155853" role="paragraph" 
l10n="U">Choose <emph>Format - Paragraph - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147330" role="paragraph" 
l10n="U">Choose <emph>Format - Character - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149486" role="paragraph" 
l10n="CHG">Choose <emph>Format - Picture - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150592" role="paragraph" 
l10n="U">Choose <emph>Format - Frame/Object - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3151321" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154510" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Header - More</emph> button</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159110" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Footer - More</emph> button</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153532" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3144747" role="paragraph" 
l10n="U">Choose <emph>Insert/Edit - Section - Background</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146900" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="CALC">Choose 
<emph>Format - Cells - Background</emph> 
tab</caseinline></switchinline></paragraph>
 </section>
 <section id="seiteverwalten">
-<paragraph xml-lang="en-US" id="par_id3146791" role="paragraph" l10n="U" 
oldref="72">Choose <emph>Format - Page - Organizer</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154482" role="paragraph" l10n="CHG" 
oldref="74">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Organizer</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3146791" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Organizer</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154482" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Organizer</emph> tab</paragraph>
 </section>
 <section id="seite">
-<paragraph xml-lang="en-US" id="par_id3153357" role="paragraph" l10n="U" 
oldref="75">Choose <emph>Format - Page - Page</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154362" role="paragraph" l10n="CHG" 
oldref="77">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Page</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153357" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Page</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154362" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Page</emph> tab</paragraph>
 </section>
 <section id="kopfzeile">
-<paragraph xml-lang="en-US" id="par_id3155515" role="paragraph" l10n="U" 
oldref="78">Choose <emph>Format - Page - Header</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148405" role="paragraph" l10n="CHG" 
oldref="80">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Header</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155515" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Header</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148405" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Header</emph> tab</paragraph>
 </section>
 <section id="fusszeile">
-<paragraph xml-lang="en-US" id="par_id3145618" role="paragraph" l10n="U" 
oldref="81">Choose <emph>Format - Page - Footer</emph> tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155175" role="paragraph" l10n="CHG" 
oldref="83">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Footer</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145618" role="paragraph" 
l10n="U">Choose <emph>Format - Page - Footer</emph> tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155175" role="paragraph" 
l10n="CHG">Choose <emph>Format - Styles and Formatting</emph> - open context 
menu of an entry and choose <emph>Modify/New - Footer</emph> tab</paragraph>
 </section>
 <section id="gestalter">
-<paragraph xml-lang="en-US" id="par_id3147404" role="paragraph" l10n="U" 
oldref="84">Choose <emph>Format - Styles and Formatting</emph>
+<paragraph xml-lang="en-US" id="par_id3147404" role="paragraph" 
l10n="U">Choose <emph>Format - Styles and Formatting</emph>
 </paragraph>
-<paragraph xml-lang="en-US" id="par_id3166447" role="paragraph" l10n="U" 
oldref="95"><switchinline select="sys"><caseinline 
select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3147321" role="paragraph" l10n="CHG" 
oldref="85">On <emph>Formatting</emph> Bar, click</paragraph>
+<paragraph xml-lang="en-US" id="par_id3166447" role="paragraph" 
l10n="U"><switchinline select="sys"><caseinline 
select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147321" role="paragraph" l10n="CHG">On 
<emph>Formatting</emph> Bar, click</paragraph>
 <table id="tbl_id3163807">
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3148533" role="paragraph" l10n="E">
-<image id="img_id3149568" src="res/commandimagelist/sc_designerdialog.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3149568">Icon</alt>
-</image></paragraph>
+<image id="img_id3149568" src="res/commandimagelist/sc_designerdialog.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3149568">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153534" role="paragraph" l10n="CHG" 
oldref="86">Styles and Formatting</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153534" role="paragraph" 
l10n="CHG">Styles and Formatting</paragraph>
 </tablecell>
 </tablerow>
 </table>
 </section>
 <section id="3d">
-<paragraph xml-lang="en-US" id="par_id3159313" role="paragraph" l10n="CHG" 
oldref="88"><switchinline select="appl"><caseinline select="CHART">
+<paragraph xml-lang="en-US" id="par_id3159313" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="CHART">
 </caseinline><caseinline select="CALC">
 </caseinline><caseinline select="WRITER">
 </caseinline><caseinline select="MATH">
@@ -201,80 +198,75 @@
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3109845" role="paragraph" l10n="E">
-<image id="img_id3159236" src="res/commandimagelist/sc_window3d.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3159236">Icon</alt>
-</image></paragraph>
+<image id="img_id3159236" src="res/commandimagelist/sc_window3d.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3159236">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3152498" role="paragraph" l10n="CHG" 
oldref="3">
-<emph>3D Effects</emph>
-</paragraph>
+<paragraph xml-lang="en-US" id="par_id3152498" role="paragraph" 
l10n="CHG"><emph>3D Effects</emph></paragraph>
 </tablecell>
 </tablerow>
 </table>
 </section>
 </section>
-<paragraph xml-lang="en-US" id="par_id3145256" role="paragraph" l10n="CHG" 
oldref="90"><variable id="3dgeometrie">Open the context menu of the 3D object, 
choose <emph>3D Effects - Geometry</emph> tab</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154203" role="paragraph" l10n="CHG" 
oldref="91"><variable id="3ddarstellung">Open the context menu of the 3D 
object, choose <emph>3D Effects - Shading</emph> tab</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3151284" role="paragraph" l10n="CHG" 
oldref="92"><variable id="3dbeleuchtung">Open the context menu of the 3D 
object, choose <emph>3D Effects - Illumination</emph> tab</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3152475" role="paragraph" l10n="CHG" 
oldref="93"><variable id="3dtexturen">Open the context menu of the 3D object, 
choose <emph>3D Effects - Textures</emph> tab</variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154572" role="paragraph" l10n="CHG" 
oldref="94"><variable id="3dmaterial">Open the context menu of the 3D object, 
choose <emph>3D Effects - Material</emph> tab</variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3145256" role="paragraph" 
l10n="CHG"><variable id="3dgeometrie">Open the context menu of the 3D object, 
choose <emph>3D Effects - Geometry</emph> tab</variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154203" role="paragraph" 
l10n="CHG"><variable id="3ddarstellung">Open the context menu of the 3D object, 
choose <emph>3D Effects - Shading</emph> tab</variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3151284" role="paragraph" 
l10n="CHG"><variable id="3dbeleuchtung">Open the context menu of the 3D object, 
choose <emph>3D Effects - Illumination</emph> tab</variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3152475" role="paragraph" 
l10n="CHG"><variable id="3dtexturen">Open the context menu of the 3D object, 
choose <emph>3D Effects - Textures</emph> tab</variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3154572" role="paragraph" 
l10n="CHG"><variable id="3dmaterial">Open the context menu of the 3D object, 
choose <emph>3D Effects - Material</emph> tab</variable></paragraph>
 <section id="numauf">
-<paragraph xml-lang="en-US" id="par_id3145220" role="paragraph" l10n="CHG" 
oldref="155">Choose <emph>Format - Bullets and Numbering</emph>
+<paragraph xml-lang="en-US" id="par_id3145220" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering</emph>
 </paragraph>
-<paragraph xml-lang="en-US" id="par_id3148771" role="paragraph" l10n="CHG" 
oldref="156">On <emph>Formatting</emph> toolbar, click</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148771" role="paragraph" l10n="CHG">On 
<emph>Formatting</emph> toolbar, click</paragraph>
 <section id="synumauf">
 <table id="tbl_id3152774">
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3149445" role="paragraph" l10n="E">
-<image id="img_id3149964" src="res/commandimagelist/sc_defaultbullet.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3149964">Icon</alt>
-</image></paragraph>
+<image id="img_id3149964" src="res/commandimagelist/sc_defaultbullet.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3149964">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3157970" role="paragraph" l10n="U" 
oldref="163">Bullets On/Off</paragraph>
+<paragraph xml-lang="en-US" id="par_id3157970" role="paragraph" 
l10n="U">Bullets On/Off</paragraph>
 </tablecell>
 </tablerow>
 </table>
 </section>
 </section>
 <section id="numoptionen">
-<paragraph xml-lang="en-US" id="par_id3149735" role="paragraph" l10n="CHG" 
oldref="157">Choose <emph>Format - Bullets and Numbering</emph>. Open 
<emph>Options</emph> tab page</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150785" role="paragraph" l10n="U" 
oldref="164"><switchinline select="appl"><caseinline select="IMPRESS">Open 
<emph>Styles and Formatting</emph> - Presentation Styles - context menu of an 
Outline Style - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3149735" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering</emph>. Open 
<emph>Options</emph> tab page</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150785" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="IMPRESS">Open 
<emph>Styles and Formatting</emph> - Presentation Styles - context menu of an 
Outline Style - choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3148420" role="paragraph" l10n="CHG" 
oldref="165"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - Numbering Styles - context menu of an 
entry - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3148420" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - List Styles - context menu of an entry - 
choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <section id="numbullets">
-<paragraph xml-lang="en-US" id="par_id3148888" role="paragraph" l10n="CHG" 
oldref="158">Choose <emph>Format - Bullets and Numbering - Bullets</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149917" role="paragraph" l10n="U" 
oldref="166"><switchinline select="appl"><caseinline select="IMPRESS">Open 
Styles and Formatting - Presentation Styles - context menu of an Outline Style 
- choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3148888" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering - Bullets</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149917" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="IMPRESS">Open 
<emph>Styles and Formatting</emph> - Presentation Styles - context menu of an 
Outline Style - choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154930" role="paragraph" l10n="CHG" 
oldref="167"><switchinline select="appl"><caseinline select="WRITER">Open 
Styles and Formatting - Numbering Styles - context menu of an entry - choose 
<emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3154930" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - List Styles - context menu of an entry - 
choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <section id="numnumerierungsart">
-<paragraph xml-lang="en-US" id="par_id3150862" role="paragraph" l10n="CHG" 
oldref="159">Choose <emph>Format - Bullets and Numbering - Numbering</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3155378" role="paragraph" l10n="U" 
oldref="168"><switchinline select="appl"><caseinline select="IMPRESS">Open 
<emph>Styles and Formatting</emph> - Presentation Styles - context menu of an 
Outline Style - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3150862" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering - Numbering</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155378" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="IMPRESS">Open 
<emph>Styles and Formatting</emph> - Presentation Styles - context menu of an 
Outline Style - choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3156011" role="paragraph" l10n="CHG" 
oldref="169"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - Numbering Styles - context menu of an 
entry - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3156011" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - List Styles - context menu of an entry - 
choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <paragraph xml-lang="en-US" id="par_id0611200904324832" role="paragraph" 
l10n="NEW"><variable id="graphics">Choose <emph>Format - Bullets and Numbering 
- Graphics</emph> tab
 </variable></paragraph>
 <section id="numnumerierung">
-<paragraph xml-lang="en-US" id="par_id3155848" role="paragraph" l10n="CHG" 
oldref="160">Choose <emph>Format - Bullets and Numbering - Outline</emph> 
tab</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148733" role="paragraph" l10n="CHG" 
oldref="170"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - Numbering Styles - context menu of an 
entry - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3155848" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering - Outline</emph> 
tab</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148733" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - List Styles - context menu of an entry - 
choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <section id="numposition">
-<paragraph xml-lang="en-US" id="par_id3156658" role="paragraph" l10n="CHG" 
oldref="162">Choose <emph>Format - Bullets and Numbering</emph>. Open 
<emph>Position</emph> tab page</paragraph>
-<paragraph xml-lang="en-US" id="par_id3156170" role="paragraph" l10n="U" 
oldref="152"><switchinline select="appl"><caseinline select="WRITER">Choose 
<emph>Tools - Outline Numbering - Position</emph> 
tab</caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3153812" role="paragraph" l10n="CHG" 
oldref="173"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting - Numbering Styles</emph> - context menu of an 
entry - choose <emph>New/Modify</emph>
+<paragraph xml-lang="en-US" id="par_id3156658" role="paragraph" 
l10n="CHG">Choose <emph>Format - Bullets and Numbering</emph>. Open 
<emph>Position</emph> tab page</paragraph>
+<paragraph xml-lang="en-US" id="par_id3156170" role="paragraph" 
l10n="U"><switchinline select="appl"><caseinline select="WRITER">Choose 
<emph>Tools - Outline Numbering - Position</emph> 
tab</caseinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3153812" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Open 
<emph>Styles and Formatting</emph> - List Styles - context menu of an entry - 
choose <emph>New/Modify</emph>
 </caseinline></switchinline></paragraph>
 </section>
 <section id="grafikzuschn">
-<paragraph xml-lang="en-US" id="par_id3151332" role="paragraph" l10n="CHG" 
oldref="194"><switchinline select="appl"><caseinline select="WRITER">Menu 
<emph>Format - Picture - Crop</emph> tab</caseinline></switchinline></paragraph>
-<paragraph xml-lang="en-US" id="par_id3153317" role="paragraph" l10n="CHG" 
oldref="198"><switchinline select="appl"><caseinline select="WRITER">
-</caseinline><defaultinline>Icon on the <emph>Picture</emph> 
toolbar:</defaultinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3151332" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">Menu 
<emph>Format - Picture - Crop</emph> tab</caseinline></switchinline></paragraph>
+<paragraph xml-lang="en-US" id="par_id3153317" role="paragraph" 
l10n="CHG"><switchinline select="appl"><caseinline 
select="WRITER"></caseinline><defaultinline>Icon on the <emph>Picture</emph> 
toolbar:</defaultinline></switchinline></paragraph>
 <switch select="appl">
 <case select="WRITER">
 </case>
@@ -283,11 +275,10 @@
 <tablerow>
 <tablecell>
 <paragraph xml-lang="en-US" id="par_id3149953" role="paragraph" l10n="E">
-<image id="img_id3155092" src="res/commandimagelist/sc_grafattrcrop.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3155092">Icon</alt>
-</image></paragraph>
+<image id="img_id3155092" src="res/commandimagelist/sc_grafattrcrop.png" 
width="0.2228in" height="0.2228in"><alt xml-lang="en-US" 
id="alt_id3155092">Icon</alt></image></paragraph>
 </tablecell>
 <tablecell>
-<paragraph xml-lang="en-US" id="par_id3153695" role="paragraph" l10n="U" 
oldref="209">Crop</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153695" role="paragraph" 
l10n="U">Crop</paragraph>
 </tablecell>
 </tablerow>
 </table>
@@ -295,13 +286,13 @@
 </switch>
 </section>
 <section id="grossklein">
-<paragraph xml-lang="en-US" id="par_id3151254" role="paragraph" l10n="CHG" 
oldref="195">Choose <emph>Format - Change Case</emph>
+<paragraph xml-lang="en-US" id="par_id3151254" role="paragraph" 
l10n="CHG">Choose <emph>Format - Change Case</emph>
 </paragraph>
-<paragraph xml-lang="en-US" id="par_id3159624" role="paragraph" l10n="U" 
oldref="196">Open context menu (text) - choose <emph>Case/Characters</emph>
+<paragraph xml-lang="en-US" id="par_id3159624" role="paragraph" l10n="U">Open 
context menu (text) - choose <emph>Case/Characters</emph>
 </paragraph>
 </section>
 <section id="ruby">
-<paragraph xml-lang="en-US" id="par_id3153579" role="paragraph" l10n="CHG" 
oldref="197">Menu <emph>Format - Asian phonetic guide</emph>
+<paragraph xml-lang="en-US" id="par_id3153579" role="paragraph" 
l10n="CHG">Menu <emph>Format - Asian phonetic guide</emph>
 </paragraph>
 </section>
 </body>
diff --git a/main/helpcontent2/source/text/swriter/guide/word_completion.xhp 
b/main/helpcontent2/source/text/swriter/guide/word_completion.xhp
index 2b6f19bd2b..1695c217c2 100644
--- a/main/helpcontent2/source/text/swriter/guide/word_completion.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/word_completion.xhp
@@ -43,7 +43,7 @@
 <paragraph xml-lang="en-US" id="par_idN10751" role="heading" level="1" 
l10n="NEW"><variable id="word_completion"><link 
href="text/swriter/guide/word_completion.xhp">Word Completion for Text 
Documents</link>
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_idN1076F" role="paragraph" 
l10n="NEW">$[officename] collects words that you frequently use in the current 
session. When you later type the first three letters of a collected word, 
$[officename] automatically completes the word.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3149346" role="paragraph" l10n="U" 
oldref="91">If there is more than one word in the AutoCorrect memory that 
matches the three letters that you type, press <switchinline 
select="sys"><caseinline select="MAC">Command
+<paragraph xml-lang="en-US" id="par_id3149346" role="paragraph" l10n="U">If 
there is more than one word in the AutoCorrect memory that matches the three 
letters that you type, press <switchinline select="sys"><caseinline 
select="MAC">Command
 </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab to cycle 
through the available words. To cycle in the opposite direction, press 
<switchinline select="sys"><caseinline select="MAC">Command
 
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab.</paragraph>
 <paragraph xml-lang="en-US" id="par_idN1078D" role="heading" level="2" 
l10n="NEW"> To Accept/Reject a Word Completion</paragraph>

Reply via email to