source/text/sbasic/shared/ErrVBA.xhp           |   18 ++++-----
 source/text/sbasic/shared/fragments.xhp        |    2 -
 source/text/shared/01/02070000.xhp             |    2 -
 source/text/shared/01/addsignatureline.xhp     |    2 -
 source/text/shared/02/12100200.xhp             |   48 ++++++++++++-------------
 source/text/shared/guide/cmis-remote-files.xhp |   47 ++++++++++--------------
 source/text/shared/guide/redaction.xhp         |    4 +-
 source/text/simpress/00/00000403.xhp           |    4 +-
 8 files changed, 60 insertions(+), 67 deletions(-)

New commits:
commit ed6ae5a833fbf4ce2c59a479d2c4b5ad818ab128
Author:     Olivier Hallot <olivier.hal...@libreoffice.org>
AuthorDate: Sat Aug 1 21:27:09 2020 -0300
Commit:     Olivier Hallot <olivier.hal...@libreoffice.org>
CommitDate: Mon Aug 3 01:49:01 2020 +0200

    Fix errors after translators review
    
    Change-Id: I088a2a5e56cfd918f5418738fecb2cd98ab67526
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/99949
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hal...@libreoffice.org>

diff --git a/source/text/sbasic/shared/ErrVBA.xhp 
b/source/text/sbasic/shared/ErrVBA.xhp
index dc1c2d802..61170825d 100644
--- a/source/text/sbasic/shared/ErrVBA.xhp
+++ b/source/text/sbasic/shared/ErrVBA.xhp
@@ -32,16 +32,16 @@
          <listitem><paragraph role="paragraph" id="N0016">to describe the 
error and possible solutions</paragraph></listitem>
       </list>
       <embed href="text/sbasic/shared/00000003.xhp#vbasupport"/>
-      <paragraph role="paragraph" id="N0017">VBA <literal>Err</literal> object 
has the following properties and methods:</paragraph>
+      <paragraph role="paragraph" id="N0017">The VBA <literal>Err</literal> 
object has the following properties and methods:</paragraph>
       <h2 id="N0018">Properties</h2>
       <bascode>
          <paragraph role="bascode" id="N0019" localize="false">Err.Description 
As String</paragraph>
       </bascode>
-      <paragraph role="paragraph" id="N0020"><emph>Description</emph> property 
gives the nature of the error. It details the various reasons that may cause 
the error. Ideally, it provides the multiple course of actions to help solve 
the issue and prevent its reoccurrence. Its alias is Basic <link 
href="text/sbasic/shared/03050300.xhp" name ="Error function">Error</link> 
function for %PRODUCTNAME predefined errors.</paragraph>
+      <paragraph role="paragraph" id="N0020">The <emph>Description</emph> 
property gives the nature of the error. <emph>Description</emph> details the 
various reasons that may be the cause of the error. Ideally, it provides the 
multiple course of actions to help solve the issue and prevent its 
reoccurrence. The Basic alias is the <link 
href="text/sbasic/shared/03050300.xhp" name ="Error function">Error</link> 
function for %PRODUCTNAME predefined errors.</paragraph>
       <bascode>
          <paragraph role="bascode" id="N0021" localize="false">Err.Number As 
Long</paragraph>
       </bascode>
-     <paragraph role="paragraph" id="N0022">This the error code associated 
with the error. <literal>Err</literal> object default property is 
<emph>Number</emph>. Its alias is %PRODUCTNAME Basic <link 
href="text/sbasic/shared/03050200.xhp" name ="Err">Err</link> 
function.</paragraph>
+     <paragraph role="paragraph" id="N0022">The error code associated with the 
error. <literal>Err</literal> object default property is <emph>Number</emph>. 
The %PRODUCTNAME Basic alias is the <link 
href="text/sbasic/shared/03050200.xhp" name ="Err">Err</link> 
function.</paragraph>
       <bascode>
          <paragraph role="bascode" id="N0023" localize="false">Err.Source As 
String</paragraph>
       </bascode>
@@ -50,16 +50,16 @@
       <bascode>
          <paragraph role="bascode" id="N0026" 
localize="false">Err.Clear()</paragraph>
       </bascode>
-      <paragraph role="paragraph" id="N0027">Resets description, <link 
href="text/sbasic/shared/03050100.xhp" name ="error line">Erl</link>, number 
and source properties of current error. Its alias is %PRODUCTNAME Basic <link 
href="text/sbasic/shared/03050500.xhp" name ="Resume statement">Resume</link> 
statement.</paragraph>
+      <paragraph role="paragraph" id="N0027">Resets description, <link 
href="text/sbasic/shared/03050100.xhp" name ="error line">Erl</link>, number 
and source properties of current error. The %PRODUCTNAME Basic alias is the 
<link href="text/sbasic/shared/03050500.xhp" name ="Resume 
statement">Resume</link> statement.</paragraph>
       <bascode>
          <paragraph role="bascode" id="N0028" 
localize="false">Err.Raise(Number As Long, Optional source As String, Optional 
description As String)</paragraph>
       </bascode>
-      <paragraph role="paragraph" id="N0029">Throws user-defined errors or 
predefined errors. Its alias is %PRODUCTNAME Basic <link 
href="text/sbasic/shared/03050200.xhp" name ="Error statement">Error</link> 
statement.</paragraph>
+      <paragraph role="paragraph" id="N0029">Throws user-defined errors or 
predefined errors. The %PRODUCTNAME Basic alias is the <link 
href="text/sbasic/shared/03050200.xhp" name ="Error statement">Error</link> 
statement.</paragraph>
       <h3 id="N0030">Parameters</h3>
-      <paragraph role="paragraph" id="N0031"><emph>Number</emph> A 
user-defined or predefined error code to be raised.</paragraph>
+      <paragraph role="paragraph" id="N0031"><emph>Number</emph>: A 
user-defined or predefined error code to be raised.</paragraph>
       <note id="N0032">Error code range 0-2000 is reserved for %PRODUCTNAME 
Basic. User-defined errors may start from higher values in order to prevent 
collision with %PRODUCTNAME Basic future developments.</note>
-      <paragraph role="paragraph" id="N0033"><emph>Source</emph> The name of 
the routine raising the error. A name in the form of 
&quot;myLibrary.myModule.myProc&quot; is recommended.</paragraph>
-      <paragraph role="paragraph" id="N0034"><emph>Description</emph> A 
description of the problem leading to stop the running process, accompanied 
with the various reasons that may cause it. A detailed list of the possible 
course of actions that may help solve the problem is recommended.</paragraph>
+      <paragraph role="paragraph" id="N0033"><emph>Source</emph>: The name of 
the routine raising the error. A name in the form of 
&quot;myLibrary.myModule.myProc&quot; is recommended.</paragraph>
+      <paragraph role="paragraph" id="N0034"><emph>Description</emph>: A 
description of the problem leading to stop the running process, accompanied 
with the various reasons that may cause it. A detailed list of the possible 
course of actions that may help solve the problem is recommended.</paragraph>
       <embed href="text/sbasic/shared/00000003.xhp#functexample"/>
       <bascode>
          <paragraph role="bascode" id="N0036" localize="false">Option 
VBASupport 1</paragraph>
@@ -126,4 +126,4 @@
          <embed href="text/sbasic/shared/03103350.xhp#vbasupportstatement"/>
       </section>
   </body>
-</helpdocument>
\ No newline at end of file
+</helpdocument>
diff --git a/source/text/sbasic/shared/fragments.xhp 
b/source/text/sbasic/shared/fragments.xhp
index 8203633bf..9da8abd51 100644
--- a/source/text/sbasic/shared/fragments.xhp
+++ b/source/text/sbasic/shared/fragments.xhp
@@ -21,7 +21,7 @@
     </section>
 
 <section id="argument">
-  <h4 id="hd_id431587045941514"><variable id="argumenth2"><link 
href="text/sbasic/shared/fragments.xhp" name="arguments in Function, Sub and 
Property statements"></link></variable>argument fragment</h4>
+  <h4 id="hd_id431587045941514"><variable id="argumenth2"><link 
href="text/sbasic/shared/fragments.xhp" name="arguments in Function, Sub and 
Property statements"></link>argument fragment</variable></h4>
     <paragraph role="paragraph" id="par_id491585753339474"><image 
src="media/helpimg/sbasic/argument_fragment.svg" id="img_id4156296484514"><alt 
xml-lang="en-US" id="alt_id15152796484514">argument 
fragment</alt></image></paragraph>
     <bascode>
       <paragraph role="bascode" id="par_id3151084" localize="false">{[Optional 
[ByRef|ByVal]]|ParamArray} argument {{As typename|char}[ = expression]|[()]As 
Variant}</paragraph>
diff --git a/source/text/shared/01/02070000.xhp 
b/source/text/shared/01/02070000.xhp
index 0e4edb543..592096992 100644
--- a/source/text/shared/01/02070000.xhp
+++ b/source/text/shared/01/02070000.xhp
@@ -120,7 +120,7 @@
   <paragraph role="paragraph" id="par_id3147223" xml-lang="en-US"><ahelp 
hid="modules/scalc/ui/pastespecial/transpose">The rows of the range in the 
clipboard are pasted to become columns of the output range. The columns of the 
range in the clipboard are pasted to become 
rows.</ahelp><comment>i59261</comment></paragraph>
 <bookmark xml-lang="en-US" branch="hid/modules/scalc/ui/pastespecial/link" 
id="bm_id3154270" localize="false"/>
 <h3 id="hd_id3152971">Link</h3>
-  <paragraph role="paragraph" id="par_id3146969" xml-lang="en-US"><ahelp 
hid="modules/scalc/ui/pastespecial/link">Inserts the cell range as a link, so 
that changes made to the cells in the source file are updated in the target 
file. To ensure that changes made to empty cells in the source file are updated 
in the target file, ensure that the "Insert All" option is also selected. 
</ahelp></paragraph>
+  <paragraph role="paragraph" id="par_id3146969" xml-lang="en-US"><ahelp 
hid="modules/scalc/ui/pastespecial/link">Inserts the cell range as a link, so 
that changes made to the cells in the source file are updated in the target 
file. To ensure that changes made to empty cells in the source file are updated 
in the target file, ensure that the "Paste All" option is also 
selected.</ahelp></paragraph>
 <paragraph role="paragraph" id="par_id3145667" xml-lang="en-US">You can also 
link sheets within the same spreadsheet. When you link to other files, a <link 
href="text/shared/00/00000005.xhp#dde" name="DDE link">DDE link</link> is 
automatically created. A DDE link is inserted as a matrix formula and can only 
be modified as a whole.</paragraph>
 <h2 id="hd_id3146914">Shift Cells</h2>
   <paragraph role="paragraph" id="par_id3145169" xml-lang="en-US">Set the 
shift options for the target cells when the clipboard content is 
inserted.</paragraph>
diff --git a/source/text/shared/01/addsignatureline.xhp 
b/source/text/shared/01/addsignatureline.xhp
index 01c160b9a..9682ae87e 100644
--- a/source/text/shared/01/addsignatureline.xhp
+++ b/source/text/shared/01/addsignatureline.xhp
@@ -42,7 +42,7 @@
     <paragraph role="paragraph" id="par_id701526467979209" 
xml-lang="en-US"><ahelp hid=".">Enter the title of the signer. The title is 
displayed in the signature line graphic box.</ahelp></paragraph>
     <bookmark branch="hid/cui/ui/signatureline/edit_email" id="bm_id44045" 
localize="false"/>
     <h2 id="hd_id431526467986157">Email</h2>
-    <paragraph role="paragraph" id="par_id111526467993387" 
xml-lang="en-US"><ahelp hid=".">Enter the email of the signer. The email is not 
displayed in the signature line graphic box, and is be used for the digital 
signature.</ahelp></paragraph>
+    <paragraph role="paragraph" id="par_id111526467993387" 
xml-lang="en-US"><ahelp hid=".">Enter the email of the signer. The email is not 
displayed in the signature line graphic box, but is used for the digital 
signature.</ahelp></paragraph>
     <bookmark branch="hid/cui/ui/signatureline/checkbox_can_add_comments" 
id="bm_id12571" localize="false"/>
     <h2 id="hd_id451526468019876">Signer can add comments</h2>
     <paragraph role="paragraph" id="par_id531526562791579" 
xml-lang="en-US"><ahelp hid=".">Enable signer to insert comments in the Sign 
Signature Line dialog at time of signature.</ahelp></paragraph>
diff --git a/source/text/shared/02/12100200.xhp 
b/source/text/shared/02/12100200.xhp
index 02396cf05..50bc753a1 100644
--- a/source/text/shared/02/12100200.xhp
+++ b/source/text/shared/02/12100200.xhp
@@ -35,48 +35,48 @@
 <bookmark xml-lang="en-US" branch="hid/.uno:RecSearch" id="bm_id9750501" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/cui/ui/fmsearchdialog/RecordSearchDialog" id="bm_id3154812" 
localize="false"/>
 <section id="findrecord">
-<paragraph xml-lang="en-US" id="hd_id3146936" role="heading" 
level="1"><variable id="datensatzsuche"><link 
href="text/shared/02/12100200.xhp" name="Find Record">Find 
Record</link></variable></paragraph>
+<h1 id="hd_id3146936"><variable id="datensatzsuche"><link 
href="text/shared/02/12100200.xhp" name="Find Record">Find 
Record</link></variable></h1>
 <paragraph xml-lang="en-US" id="par_id3147588" role="paragraph"><variable 
id="suchentext"><ahelp hid=".uno:RecSearch" visibility="hidden">Searches 
database tables and forms.</ahelp> In forms or database tables, you can search 
through data fields, list boxes, and check boxes for specific 
values.</variable></paragraph>
 </section>
 <section id="howtoget">
   <embed href="text/shared/00/00000450.xhp#datensuchen"/>
 </section>
 <paragraph xml-lang="en-US" id="par_id3149355" role="paragraph">When searching 
a table, the data fields of the current table are searched. When searching in a 
form, the data fields of the table linked with the form are 
searched.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3153394" role="tip">The search described 
here is carried out by <item type="productname">%PRODUCTNAME</item>. If you 
want to use the SQL server to search in a database, then you should use the 
<link href="text/shared/02/12110000.xhp" name="Form-based 
Filters"><emph>Form-based Filters</emph></link> icon on the <link 
href="text/shared/main0213.xhp" name="Form Bar"><emph>Form</emph> 
bar</link>.</paragraph>
+<tip id="par_id3153394">The search described here is carried out by <item 
type="productname">%PRODUCTNAME</item>. If you want to use the SQL server to 
search in a database, then you should use the <link 
href="text/shared/02/12110000.xhp" name="Form-based Filters"><emph>Form-based 
Filters</emph></link> icon on the <link href="text/shared/main0213.xhp" 
name="Form Bar"><emph>Form</emph> bar</link>.</tip>
 <paragraph xml-lang="en-US" id="par_id3149095" role="paragraph">The search 
function is also available for table controls. When calling the search function 
from a table control, you can search each column of the table control 
corresponding to the database columns of the linked database table.</paragraph>
-<paragraph xml-lang="en-US" id="hd_id3143267" role="heading" level="2">Search 
for</paragraph>
+<h2 id="hd_id3143267">Search for</h2>
 <paragraph xml-lang="en-US" id="par_id3153527" role="paragraph">Specifies the 
type of search.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cmbSearchText" 
id="bm_id3154317" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/rbSearchForText" 
id="bm_id3147577" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153683" role="heading" 
level="2">Text:</paragraph>
+<h2 id="hd_id3153683">Text:</h2>
 <paragraph xml-lang="en-US" id="par_id3154823" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/rbSearchForText">Enter the search term in the box or 
select it from the list.</ahelp> The text under the cursor is already copied 
into the <emph>Text</emph> combo box. Note that while running a search in a 
form, tabs and line breaks cannot be processed.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3148539" role="paragraph">Your search 
terms will be saved as long as the table or the formula document is open. If 
you are running more than one search and you would like to repeat the search 
term, you can select a previously used search term from the combo 
box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3148539" role="paragraph">Your search 
terms will be saved as long as the table or the form document is open. If you 
are running more than one search and you would like to repeat the search term, 
you can select a previously used search term from the combo box.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/rbSearchForNull" 
id="bm_id3145316" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153662" role="heading" level="2">Field 
content is NULL</paragraph>
+<h2 id="hd_id3153662">Field content is NULL</h2>
 <paragraph xml-lang="en-US" id="par_id3153543" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/rbSearchForNull">Specifies that fields will be found 
that contain no data.</ahelp></paragraph>
 <bookmark xml-lang="en-US" 
branch="hid/cui/ui/fmsearchdialog/rbSearchForNotNull" id="bm_id3155388" 
localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3153717" role="heading" level="2">Field 
content is not NULL</paragraph>
+<h2 id="hd_id3153717">Field content is not NULL</h2>
 <paragraph xml-lang="en-US" id="par_id3143270" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/rbSearchForNotNull">Specifies that fields will be 
found that contain data.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3156153" role="heading" level="2">Where 
to search</paragraph>
+<h2 id="hd_id3156153">Where to search</h2>
 <paragraph xml-lang="en-US" id="par_id3149164" role="paragraph">Specifies the 
fields for the search.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/lbForm" 
id="bm_id3150670" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3154564" role="heading" 
level="2">Form</paragraph>
+<h2 id="hd_id3154564">Form</h2>
 <paragraph xml-lang="en-US" id="par_id3159176" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/lbForm">Specifies the logical form in which you want 
the search to take place.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="par_id3155434" role="note">The<emph> Form 
</emph>combo box is only visible if the current document is a form document 
with more than one logical form. It does not appear during a search in tables 
or queries.</paragraph>
+<note id="par_id3155434">The<emph> Form </emph>combo box is only visible if 
the current document is a form document with more than one logical form. It 
does not appear during a search in tables or queries.</note>
 <paragraph xml-lang="en-US" id="par_id3151384" role="paragraph">Form documents 
may contain multiple logical forms. These are individual form components, which 
are each linked to a table.</paragraph>
 <paragraph xml-lang="en-US" id="par_id3145086" role="paragraph">The 
<emph>Form</emph> combo box contains the names of all logical forms for which 
controls exist.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/rbAllFields" 
id="bm_id3149047" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3159414" role="heading" level="2">All 
Fields</paragraph>
+<h2 id="hd_id3159414">All Fields</h2>
 <paragraph xml-lang="en-US" id="par_id3153896" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/rbAllFields">Searches through all fields.</ahelp> If 
you are running a search in a table, all fields in the table will be searched. 
If you are running a search in a form, all fields of the logical form (entered 
under <emph>Form</emph>) will be searched. If you are running a search in a 
table control field, all columns that are linked to a valid database table 
field will be searched.</paragraph>
 <paragraph xml-lang="en-US" id="par_id3151054" role="paragraph">Note that the 
fields of the current logical form do not have to be identical to the fields of 
the form document. If the form document contains fields that point to multiple 
data sources (that is, multiple logical forms), the <emph>All Fields</emph> 
option will only search for the fields linked to data sources in the form 
document.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/lbField" 
id="bm_id3153524" localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/rbSingleField" 
id="bm_id3150400" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3150865" role="heading" level="2">Single 
field</paragraph>
+<h2 id="hd_id3150865">Single field</h2>
 <paragraph xml-lang="en-US" id="par_id3153360" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/rbSingleField">Searches through a specified data 
field.</ahelp></paragraph>
-<paragraph xml-lang="en-US" id="hd_id3154365" role="heading" 
level="2">Settings</paragraph>
+<h2 id="hd_id3154365">Settings</h2>
 <paragraph xml-lang="en-US" id="par_id3158408" role="paragraph">Defines 
settings to control the search.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/lbPosition" 
id="bm_id3143233" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149809" role="heading" 
level="2">Position</paragraph>
+<h2 id="hd_id3149809">Position</h2>
 <paragraph xml-lang="en-US" id="par_id3148673" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/lbPosition">Specifies the relationship of the search 
term and the field contents.</ahelp> The following options are 
available:</paragraph>
 <table id="tbl_id3155994">
   <tablerow>
@@ -112,9 +112,9 @@
       </tablecell>
   </tablerow>
 </table>
-<paragraph xml-lang="en-US" id="par_id3152886" role="note">If the 
<emph>Wildcard expression</emph> check box is marked, this function is not 
available.</paragraph>
+<note id="par_id3152886">If the <emph>Wildcard expression</emph> check box is 
marked, this function is not available.</note>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbUseFormat" 
id="bm_id3154147" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3149664" role="heading" level="2">Apply 
field format</paragraph>
+<h2 id="hd_id3149664">Apply field format</h2>
 <paragraph xml-lang="en-US" id="par_id3146975" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbUseFormat">Specifies that all field formats are 
considered when searching in the current document.</ahelp> Field formats are 
all visible formats that are created using the following 
possibilities:</paragraph>
 <list type="ordered">
   <listitem>
@@ -197,16 +197,16 @@
 <paragraph xml-lang="en-US" id="par_id3153355" role="paragraph">If you are 
searching the values of check boxes, and <emph>Apply field format</emph> is on, 
then you will receive a "1" for marked check boxes, a "0" for unmarked check 
boxes, and an empty string for undefined (tristate) check boxes. If the search 
has been carried out with <emph>Apply field format</emph> set to off, you will 
see the language-dependent default values "TRUE" or "FALSE".</paragraph>
 <paragraph xml-lang="en-US" id="par_id3150995" role="paragraph">If you use 
<emph>Apply field format</emph> when searching in list boxes, you find the text 
displayed in list boxes. If you do not use <emph>Apply field format,</emph> you 
will find the contents corresponding to the standard field format.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbCase" 
id="bm_id3156717" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3150387" role="heading" level="2">Match 
case</paragraph>
+<h2 id="hd_id3150387">Match case</h2>
 <paragraph xml-lang="en-US" id="par_id3159267" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbCase">Specifies that upper and lower case are 
taken into consideration during the search.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbBackwards" 
id="bm_id3151101" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145297" role="heading" level="2">Search 
backwards</paragraph>
+<h2 id="hd_id3145297">Search backwards</h2>
 <paragraph xml-lang="en-US" id="par_id3151249" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbBackwards">Specifies that the search process will 
run in reverse direction, from the last to the first record.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbStartOver" 
id="bm_id3166447" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3152484" role="heading" level="2">From 
top / From bottom</paragraph>
+<h2 id="hd_id3152484">From top / From bottom</h2>
 <paragraph xml-lang="en-US" id="par_id3156316" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbStartOver">Restarts the search. A forward search 
restarts with the first record. A backwards search restarts with the last 
record.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbWildCard" 
id="bm_id3156713" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3163724" role="heading" 
level="2">Wildcard expression</paragraph>
+<h2 id="hd_id3163724">Wildcard expression</h2>
 <paragraph xml-lang="en-US" id="par_id3149255" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbWildCard" visibility="hidden">Allows a search with 
a <emph>*</emph> or <emph>?</emph> wildcard.</ahelp> You can use the following 
wildcards:</paragraph>
 <table id="tbl_id3151187">
   <tablerow>
@@ -247,7 +247,7 @@
 </table>
 <paragraph xml-lang="en-US" id="par_id3145762" role="paragraph">If you want to 
search for the actual characters <emph>?</emph> or <emph>*</emph>, precede them 
with a backslash: "<emph>\?</emph>" or "<emph>\*</emph>". However, this is only 
necessary when <emph>Wildcard expression</emph> is enabled. When the option is 
not enabled, the wildcard characters are processed like normal 
characters.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/cbRegular" 
id="bm_id3150663" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147130" role="heading" level="2">Regular 
expression</paragraph>
+<h2 id="hd_id3147130">Regular expression</h2>
 <paragraph xml-lang="en-US" id="par_id3150982" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/cbRegular">Searches with regular 
expressions.</ahelp> The same regular expressions that are supported here are 
also supported in the <item type="productname">%PRODUCTNAME</item> <link 
href="text/shared/01/02100000.xhp" name="Find &amp; Replace dialog"><emph>Find 
&amp; Replace</emph> dialog</link>.</paragraph>
 <paragraph xml-lang="en-US" id="par_id3154718" role="paragraph">Searching with 
regular expressions offers more options than searching with wildcard 
expressions. If you search with regular expressions, the following characters 
correspond to those used in searches with wildcards:</paragraph>
 <table id="tbl_id3148682">
@@ -283,14 +283,14 @@
   <embed href="text/shared/01/02100000.xhp#aehnlichtext"/>
   <embed href="text/shared/01/02100000.xhp#aehnlichbutton"/>
   <embed href="text/shared/optionen/01150200.xhp#asia"/>
-<paragraph xml-lang="en-US" id="hd_id3150861" role="heading" 
level="2">State</paragraph>
+<h2 id="hd_id3150861">State</h2>
 <paragraph xml-lang="en-US" id="par_id3154477" role="paragraph">The 
<emph>State</emph> line shows the records returned by the search. If the search 
reaches the end (or the beginning) of a table, the search is automatically 
continued at the other end.</paragraph>
 <paragraph xml-lang="en-US" id="par_id3163720" role="paragraph">In very large 
databases, finding the record in reverse search order can take some time. In 
this case, the <emph>status bar</emph> informs you that the records are still 
being counted.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/pbSearchAgain" 
id="bm_id3149494" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3147389" role="heading" 
level="2">Search/Cancel</paragraph>
+<h2 id="hd_id3147389">Search/Cancel</h2>
 <paragraph xml-lang="en-US" id="par_id3154368" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/pbSearchAgain" visibility="hidden">Starts or cancels 
the search.</ahelp> If the search is successfully completed, the corresponding 
field in the table is highlighted. You can continue the search by clicking the 
<emph>Search</emph> button again. You can cancel a search process by clicking 
the <emph>Cancel</emph> button.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/cui/ui/fmsearchdialog/close" 
id="bm_id3152453" localize="false"/>
-<paragraph xml-lang="en-US" id="hd_id3145080" role="heading" 
level="2">Close</paragraph>
+<h2 id="hd_id3145080">Close</h2>
 <paragraph xml-lang="en-US" id="par_id3156166" role="paragraph"><ahelp 
hid="cui/ui/fmsearchdialog/close">Closes the dialog. The settings of the last 
search will be saved until you quit <item 
type="productname">%PRODUCTNAME</item>.</ahelp></paragraph>
 <paragraph xml-lang="en-US" id="par_id3151183" role="paragraph">If several 
tables or forms are open, you can set different search options for each 
document. When you close the documents only the search options of the document 
last closed are saved.</paragraph>
 </body>
diff --git a/source/text/shared/guide/cmis-remote-files.xhp 
b/source/text/shared/guide/cmis-remote-files.xhp
index 4b5e95b8b..d3be11e54 100644
--- a/source/text/shared/guide/cmis-remote-files.xhp
+++ b/source/text/shared/guide/cmis-remote-files.xhp
@@ -17,12 +17,10 @@
 </meta>
 
 <body>
-
-
 <section id="using_remote_files">
 <bookmark xml-lang="en-US" 
branch="hid/fps/ui/remotefilesdialog/RemoteFilesDialog" id="bm_id3148069" 
localize="false"/>
 <bookmark xml-lang="en-US" branch="hid/fps/ui/remotefilesdialog/@@nowidget@@" 
id="bm_id3148069" localize="false"/>
-<paragraph id="hd_id150820161615009403" role="heading" level="1" 
xml-lang="en-US"><variable id="remote-files"><link 
href="text/shared/guide/cmis-remote-files.xhp">Opening and saving files on 
remote servers</link></variable></paragraph>
+<h1 id="hd_id150820161615009403"><variable id="remote-files"><link 
href="text/shared/guide/cmis-remote-files.xhp">Opening and saving files on 
remote servers</link></variable></h1>
 <paragraph id="par_id15082016161546265" role="paragraph" 
xml-lang="en-US"><ahelp hid="fps/ui/remotefilesdialog/RemoteFilesDialog">Remote 
Files Service User Guide</ahelp></paragraph>
 <paragraph id="par_id150820161816031425" role="paragraph" 
xml-lang="en-US">%PRODUCTNAME can open and save files stored on remote servers. 
Keeping files on remote servers allows to work with the documents using 
different computers. For example, you can work on a document in the office 
during the day and edit it at home for last-minute changes. Storing files on a 
remote server also protects them from computer loss or hard disk failure. Some 
servers are also able to check in and check out files, thus controlling their 
usage and access.</paragraph>
 <paragraph id="par_id150820161816033566" role="paragraph" 
xml-lang="en-US">%PRODUCTNAME supports many document servers that use well 
known network protocols such as FTP, WebDAV, Windows share, and SSH. It also 
supports popular services like Google Drive as well as commercial and open 
source servers that implement the OASIS CMIS standard.</paragraph>
@@ -36,25 +34,24 @@
   <bookmark_value>opening remote file</bookmark_value>
 </bookmark>
 
-<paragraph id="par_id160820161854537016" role="heading" level="2" 
xml-lang="en-US">To open a file in a remote file service</paragraph>
+<h2 id="par_id160820161854537016">To open a file in a remote file service</h2>
 
 <list type="ordered">
   <listitem>
-    <paragraph id="par_id170820161605411154" role="ol_item" 
xml-lang="en-US">Do one of the following:</paragraph>
+    <paragraph id="par_id170820161605411154" role="listitem" 
xml-lang="en-US">Do one of the following:</paragraph>
   </listitem>
 </list>
 
 <list type="unordered">
   <listitem>
-    <paragraph id="par_id17082016160541995" role="ul_item" 
xml-lang="en-US">Choose <item type="menuitem">File - Open Remote</item> in any 
%PRODUCTNAME module</paragraph>
-  </listitem>
-  <listitem>
-    <paragraph id="par_id170820161605414687" role="ul_item" 
xml-lang="en-US">Click the <emph>Remote Files</emph> button the Start 
Center</paragraph>
+    <paragraph id="par_id17082016160541995" role="listitem" 
xml-lang="en-US">Choose <item type="menuitem">File - Open Remote</item> in any 
%PRODUCTNAME module</paragraph>
   </listitem>
   <listitem>
-    <paragraph id="par_id170820161605418205" role="ul_item" 
xml-lang="en-US">The Remote Files dialog appears.</paragraph>
+    <paragraph id="par_id170820161605414687" role="listitem" 
xml-lang="en-US">Click the <emph>Remote Files</emph> button the Start 
Center</paragraph>
   </listitem></list>
 
+    <paragraph id="par_id170820161605418205" role="paragraph" 
xml-lang="en-US">The Remote Files dialog appears.</paragraph>
+
 <list type="ordered" startwith="2">
   <listitem>
     <paragraph id="par_id170820161605417597" role="ol_item" 
xml-lang="en-US">Select the file and click <emph>Open</emph> or press 
<emph>Enter</emph>.</paragraph>
@@ -71,51 +68,48 @@
   <bookmark_value>remote file service;checkin</bookmark_value>
 </bookmark>
 
-
-<paragraph id="hd_id170820161605421283" role="heading" level="2" 
xml-lang="en-US">Checking out and checking in files</paragraph>
+<h2 id="hd_id170820161605421283">Checking out and checking in files</h2>
 <paragraph id="par_id170820161605429941" role="paragraph" xml-lang="en-US">The 
Check Out and Check In actions control updates to the document and prevent 
unwanted overwrites in a CMIS remote service.</paragraph>
 <paragraph id="par_id17082016160542203" role="paragraph" 
xml-lang="en-US">Checking out a document locks it, preventing other users from 
writing changes to it. Only one user can have a particular document checked out 
(locked) at any time. Checking in a document or canceling the checkout unlocks 
the document.</paragraph>
-<paragraph id="par_id170820161605426690" role="note" xml-lang="en-US">There 
are no checkin/checkout controls for remote files in Windows Shares, WebDAV, 
FTP and SSH services.</paragraph>
+<note id="par_id170820161605426690">There are no checkin/checkout controls for 
remote files in Windows Shares, WebDAV, FTP and SSH services.</note>
 <paragraph id="par_id170820161605428976" role="paragraph" 
xml-lang="en-US">When a file is open from a CMIS remote file service, 
%PRODUCTNAME displays a <emph>Check Out</emph> button on the top message area. 
Click the <emph>Check Out</emph> button to lock the file in the server to 
prevent edition by another user. Alternatively choose <item 
type="menuitem">File - Check Out</item>.</paragraph>
 <paragraph id="par_id190820161707153804" role="paragraph" 
xml-lang="en-US">%PRODUCTNAME creates a working copy of the file in the server 
(and inserts the string <item type="literal">(Working Copy)</item> in the file 
name) when a file is checked out. Every edition and save operation is done in 
the working copy. You can save your file as many times you want. When you 
finished your changes, check in the file.</paragraph>
 <paragraph id="par_id190820161707156843" role="paragraph" xml-lang="en-US">To 
check in the file, choose <item type="menuitem">File - Check In</item>. A 
dialog opens to insert comments about the last edition. These comments are 
recorded in the CMIS server for version control. The working copy replaces the 
existing file and its version number is updated.</paragraph>
 <paragraph id="par_id190820161707155303" role="paragraph" xml-lang="en-US">To 
cancel a checkout, choose <item type="menuitem">File - Cancel Checkout</item>. 
A warning message will inform that the latest edition will be discarded. If 
confirmed, no version updates occurs.</paragraph>
-<paragraph id="par_id19082016170715785" role="warning" 
xml-lang="en-US">Remember to check in the file when finishing using it. Not 
doing so will lock the file and no other user will be allowed to modify 
it.</paragraph>
+<warning id="par_id19082016170715785">Remember to check in the file when 
finishing using it. Not doing so will lock the file and no other user will be 
allowed to modify it.</warning>
 </section>
 <bookmark xml-lang="en-US" branch="index" id="bm_id190820161722159908">
   <bookmark_value>remote file service;saving to remote server</bookmark_value>
   <bookmark_value>remote file service;saving</bookmark_value>
 </bookmark>
 
-
-<paragraph id="hd_id170820161605423820" role="heading" level="2" 
xml-lang="en-US">To save a file in a remote file server</paragraph>
+<h2 id="hd_id170820161605423820">To save a file in a remote file server</h2>
 
 <list type="ordered">
   <listitem>
-    <paragraph id="par_id170820161605428770" role="ol_item" 
xml-lang="en-US">Do one of the following</paragraph>
+    <paragraph id="par_id170820161605428770" role="listitem" 
xml-lang="en-US">Do one of the following</paragraph>
   </listitem>
 </list>
 
 <list type="unordered">
   <listitem>
-    <paragraph id="par_id170820161605423872" role="ul_item" 
xml-lang="en-US">If the file was opened from a CMIS server, choose <item 
type="menuitem">File - Save</item>, click on the <emph>Save</emph> button or 
hit <item type="literal">Ctrl + S</item>.</paragraph>
-  </listitem>
-  <listitem>
-    <paragraph id="par_id190820161707166344" role="ul_item" 
xml-lang="en-US">If the file is not stored in a CMIS server, choose <item 
type="menuitem">File - Save Remote</item> or long-click the <emph>Save</emph> 
icon and select <emph>Save Remote File</emph>.</paragraph>
+    <paragraph id="par_id170820161605423872" role="listitem" 
xml-lang="en-US">If the file was opened from a CMIS server, choose <item 
type="menuitem">File - Save</item>, click on the <emph>Save</emph> button or 
hit <item type="literal">Ctrl + S</item>.</paragraph>
   </listitem>
   <listitem>
-    <paragraph id="par_id170820161605428591" role="ul_item" 
xml-lang="en-US">The <emph>Remote files</emph> dialog appears</paragraph>
+    <paragraph id="par_id190820161707166344" role="listitem" 
xml-lang="en-US">If the file is not stored in a CMIS server, choose <item 
type="menuitem">File - Save Remote</item> or long-click the <emph>Save</emph> 
icon and select <emph>Save Remote File</emph>.</paragraph>
   </listitem></list>
 
+    <paragraph id="par_id170820161605428591" role="paragraph" 
xml-lang="en-US">The <emph>Remote files</emph> dialog appears. Select the 
remote file server.</paragraph>
+
 <list type="ordered" startwith="2">
   <listitem>
-    <paragraph id="par_id170820161605425024" role="ol_item" 
xml-lang="en-US">In the <emph>Filter</emph> list box, select the desired 
format.</paragraph>
+    <paragraph id="par_id170820161605425024" role="listitem" 
xml-lang="en-US">In the <emph>Filter</emph> list box, select the desired 
format.</paragraph>
   </listitem>
   <listitem>
-    <paragraph id="par_id170820161605424622" role="ol_item" 
xml-lang="en-US">Enter a name in the File name box and click 
<emph>Save</emph>.</paragraph>
+    <paragraph id="par_id170820161605424622" role="listitem" 
xml-lang="en-US">Enter a name in the File name box and click 
<emph>Save</emph>.</paragraph>
   </listitem>
   <listitem>
-    <paragraph id="par_id190820161707163121" role="ol_item" 
xml-lang="en-US">When you finish working with the file, check it in. To do so, 
choose <item type="menuitem">File - Check In</item>.</paragraph>
+    <paragraph id="par_id190820161707163121" role="listitem" 
xml-lang="en-US">When you finish working with the file, check it in. To do so, 
choose <item type="menuitem">File - Check In</item>.</paragraph>
   </listitem>
 </list>
 <bookmark xml-lang="en-US" branch="index" id="bm_id19082016172305788">
@@ -123,8 +117,7 @@
   <bookmark_value>remote file service;file properties</bookmark_value>
 </bookmark>
 
-
-<paragraph id="hd_id190820161707169171" role="heading" level="2" 
xml-lang="en-US">Properties of files stored in CMIS servers</paragraph>
+<h2 id="hd_id190820161707169171">Properties of files stored in CMIS 
servers</h2>
 <paragraph id="par_id19082016170716519" role="ol_item" xml-lang="en-US">Files 
stored in CMIS server have properties and metadata not available in a local 
storage. These metadata are important for controls and debugging of the CMIS 
connection and server implementation. All parameters displayed are 
read-only.</paragraph>
 <paragraph id="par_id190820161707161708" role="paragraph" 
xml-lang="en-US">Choose <item type="menuitem">File - Properties</item>, CMIS 
tab.</paragraph>
 
diff --git a/source/text/shared/guide/redaction.xhp 
b/source/text/shared/guide/redaction.xhp
index 98dd6cb49..3b73c862e 100644
--- a/source/text/shared/guide/redaction.xhp
+++ b/source/text/shared/guide/redaction.xhp
@@ -73,10 +73,10 @@
                 <paragraph id="par_id231562796701222" role="paragraph">The 
<emph>Redacted Export</emph> button box has two options:</paragraph>
                 <list type="unordered">
                     <listitem>
-                        <paragraph id="par_id551562796791417"  
role="listitem"><emph>Redacted Export (Black)</emph>: finalize your document by 
converting the semitransparent redaction shapes to opaque black and export as a 
pixellized PDF file.</paragraph>
+                        <paragraph id="par_id551562796791417"  
role="listitem"><emph>Redacted Export (Black)</emph>: finalize your document by 
converting the semitransparent redaction shapes to opaque black and export as 
pixels in the PDF file.</paragraph>
                     </listitem>
                     <listitem>
-                        <paragraph id="par_id191562796822685"  
role="listitem"><emph>Redacted Export (White)</emph>: finalize your document by 
converting the semitransparent redaction shapes to opaque white shapes, and 
export as a pixellized PDF file.</paragraph>
+                        <paragraph id="par_id191562796822685"  
role="listitem"><emph>Redacted Export (White)</emph>: finalize your document by 
converting the semitransparent redaction shapes to opaque white shapes, and 
export as pixels in the PDF file.</paragraph>
                     </listitem>
                 </list>
             </tablecell>
diff --git a/source/text/simpress/00/00000403.xhp 
b/source/text/simpress/00/00000403.xhp
index 966a56b6a..9347f6adf 100644
--- a/source/text/simpress/00/00000403.xhp
+++ b/source/text/simpress/00/00000403.xhp
@@ -28,7 +28,7 @@
 <body>
 
 
-<paragraph id="hd_id3150542" role="heading" level="1" xml-lang="en-US">View 
Menu</paragraph>
+<h1 id="hd_id3150542">View Menu</h1>
 <paragraph id="par_id3148798" role="paragraph" xml-lang="en-US"><variable 
id="aslal">Choose <emph>View - Rulers</emph> </variable></paragraph>
 <paragraph id="par_id3153771" role="paragraph" xml-lang="en-US"><variable 
id="option">Choose <emph>View - Toolbars - Options</emph> 
</variable></paragraph>
 
@@ -83,7 +83,7 @@
 </section>
 
 <section id="ashtgd">
-<paragraph id="par_id3151264" role="paragraph" xml-lang="en-US">Choose 
<emph>View - Master</emph></paragraph>
+<paragraph id="par_id3151264" role="paragraph" xml-lang="en-US">Choose 
<emph>View - Master Slide</emph></paragraph>
 </section>
 <paragraph id="par_idN10AF7" role="paragraph" xml-lang="en-US"><variable 
id="masterlayouts">Choose <emph>View - Master Slide 
</emph></variable></paragraph>
 <paragraph id="par_idN10B19" role="paragraph" xml-lang="en-US"><variable 
id="notesmaster">Choose <emph>View - Master Notes</emph> </variable></paragraph>
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to