source/text/sbasic/python/python_document_events.xhp |    6 +++---
 source/text/sbasic/shared/03/lib_gimmicks.xhp        |    2 +-
 source/text/scalc/01/databar_more_options.xhp        |   12 ++++++------
 3 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 1a2b3002632852187c0f5c5585888e8cb419f414
Author:     Adolfo Jayme Barrientos <fit...@ubuntu.com>
AuthorDate: Wed Jan 27 11:03:47 2021 -0600
Commit:     Adolfo Jayme Barrientos <fit...@ubuntu.com>
CommitDate: Wed Jan 27 18:13:57 2021 +0100

    Minor copyedits
    
    Change-Id: Id238b9ae6987152c7759cac21154b61a495b8685
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/110027
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com>

diff --git a/source/text/sbasic/python/python_document_events.xhp 
b/source/text/sbasic/python/python_document_events.xhp
index 34a3f5a5b..187d299f1 100644
--- a/source/text/sbasic/python/python_document_events.xhp
+++ b/source/text/sbasic/python/python_document_events.xhp
@@ -36,7 +36,7 @@
       </section>
       <paragraph role="paragraph" id="N0528">Next to <link 
href="text/sbasic/shared/01040000.xhp" name ="assigning macros to 
events">assigning macros to events</link>, one can monitor events raised by 
%PRODUCTNAME documents. Application Programming Interface (API) broadcasters 
are responsible for calling event scripts. Unlike listeners that require to 
define all supported methods, even if unused, document monitors require only 
two methods next to hooked event scripts.</paragraph>
       <h2 id="N0529">Listening to Document Events</h2>
-      <paragraph role="paragraph" id="N0530">Monitoring is illustrated 
herewith for Basic and Python languages using object-oriented programming. 
Assigning <literal>OnLoad</literal> script, to the <literal>Open 
Document</literal> event, suffices to initiate and terminate document event 
monitoring. <menuitem>Tools – Customise...</menuitem> menu 
<menuitem>Events</menuitem> tab is used to assign either scripts.</paragraph>
+      <paragraph role="paragraph" id="N0530">Monitoring is illustrated 
herewith for Basic and Python languages using object-oriented programming. 
Assigning <literal>OnLoad</literal> script, to the <literal>Open 
Document</literal> event, suffices to initiate and terminate document event 
monitoring. <menuitem>Tools - Customize</menuitem> menu 
<menuitem>Events</menuitem> tab is used to assign either scripts.</paragraph>
       <paragraph role="paragraph" id="N0531">Intercepting events helps setting 
scripts pre- and post-conditions such as loading and unloading libraries or 
track script processing in the background. <literal>Access2Base Trace</literal> 
module usage is illustrating that second context.</paragraph>
       <h3 id="N0532">With Python</h3>
       <paragraph role="paragraph" id="N0533">Events monitoring starts from 
object instantiation and ultimately stops when Python releases the object. 
Raised events are reported using <literal>Access2Base</literal> 
console.</paragraph>
@@ -151,7 +151,7 @@
       <warning id="N0647">Mind the misspelled 
<literal>documentEventOccured</literal> method that inherits a typo from 
%PRODUCTNAME Application Programming Interface (API).</warning>
       <paragraph role="tip" id="N0648"><literal>Start application</literal> 
and <literal>Close application</literal> events can respectively be used to set 
and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar 
fashion, document based Python libraries or modules can be loaded and released 
using <literal>Open document</literal> and <literal>Document closed</literal> 
events. Refer to <link href="text/sbasic/python/python_import.xhp" name 
="Importing Python Modules">Importing Python Modules</link> for more 
information.</paragraph>
       <h3 id="N0649">With %PRODUCTNAME Basic</h3>
-      <paragraph role="paragraph" id="N0650">The <literal>Onload</literal> 
script is assigned to <literal>Open document</literal> event using 
<menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab. 
Events monitoring starts from the moment a <literal>ConsoleLogger</literal> 
object is instantiated and ultimately stops when Basic engine releases it. 
<literal>OnLoad</literal> event loads necessary Basic libraries, while caught 
events are reported using <literal>Access2Base.Trace</literal> 
module.</paragraph>
+      <paragraph role="paragraph" id="N0650">The <literal>Onload</literal> 
script is assigned to <literal>Open document</literal> event using 
<menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab. 
Events monitoring starts from the moment a <literal>ConsoleLogger</literal> 
object is instantiated and ultimately stops when Basic engine releases it. 
<literal>OnLoad</literal> event loads necessary Basic libraries, while caught 
events are reported using <literal>Access2Base.Trace</literal> 
module.</paragraph>
       <bascode>
           <paragraph role="bascode" xml-lang="en-US" id="N0651">REM 
controller.Events module</paragraph>
           <paragraph role="bascode" localize="false" id="N0652">Option 
Explicit</paragraph>
@@ -166,7 +166,7 @@
           <paragraph role="bascode" localize="false" id="N0661">Option 
Compatible</paragraph>
           <paragraph role="bascode" localize="false" id="N0662">Option 
ClassModule</paragraph>
           <paragraph role="bascode" localize="false" id="N0663">    
</paragraph>
-          <paragraph role="bascode" xml-lang="en-US" id="N0664">&apos; ADAPTER 
design pattern object to be instantiated in « Open Document » event</paragraph>
+          <paragraph role="bascode" xml-lang="en-US" id="N0664">&apos; ADAPTER 
design pattern object to be instantiated in the "Open Document" 
event</paragraph>
           <paragraph role="bascode" localize="false" id="N0665">Private Const 
UI_PROMPT = True</paragraph>
           <paragraph role="bascode" localize="false" id="N0666">Private Const 
UI_NOPROMPT = False &apos; Set it to True to visualise documents 
events</paragraph>
           <paragraph role="bascode" localize="false" id="N0667">    
</paragraph>
diff --git a/source/text/sbasic/shared/03/lib_gimmicks.xhp 
b/source/text/sbasic/shared/03/lib_gimmicks.xhp
index 24badcf1e..4473e3567 100644
--- a/source/text/sbasic/shared/03/lib_gimmicks.xhp
+++ b/source/text/sbasic/shared/03/lib_gimmicks.xhp
@@ -37,7 +37,7 @@
        <listitem><paragraph id="par_id961593815286855" role="listitem" 
localize="False">Gimmicks.GetTexts.Main</paragraph></listitem>
     </list>
 
-    <paragraph role="paragraph" id="par_id381593519742529">Selecting 
<menuitem>Tools</menuitem> - <menuitem>AutoText</menuitem> loads the following 
library in memory:</paragraph>
+    <paragraph role="paragraph" id="par_id381593519742529">Selecting 
<menuitem>Tools - AutoText</menuitem> loads the following library in 
memory:</paragraph>
      <list type="unordered">
         <listitem><paragraph id="par_id31593520110938" role="listitem" 
localize="False">Tools</paragraph></listitem>
      </list>
diff --git a/source/text/scalc/01/databar_more_options.xhp 
b/source/text/scalc/01/databar_more_options.xhp
index f76ded414..97fee0d3e 100644
--- a/source/text/scalc/01/databar_more_options.xhp
+++ b/source/text/scalc/01/databar_more_options.xhp
@@ -25,9 +25,9 @@
 </bookmark>
   <h1 id="hd_id631610470827523"><variable id="databaroptions"><link 
href="/text/scalc/01/databar_more_options.xhp" name="More Options for 
Databar">Databar More Options</link></variable></h1>
 <h2 id="hd_id531610472930609">Entry Values</h2>
-  <h3 id="hd_id661610569199542">Minimum:</h3><paragraph role="paragraph" 
id="par_id861610473146895"> Set the minimum value for which the databar does 
not start filling.</paragraph>
-  <h3 id="hd_id501610569361264">Maximum:</h3><paragraph role="paragraph" 
id="par_id461610473163880"> Set the maximum value for which the databar gets 
completely filled.</paragraph>
-  <paragraph role="paragraph" id="par_id791610556114310">The options for 
setting the minimum and maximum are:</paragraph><list type="unordered">    
<listitem>
+  <h3 id="hd_id661610569199542">Minimum:</h3><paragraph role="paragraph" 
id="par_id861610473146895"> Set the minimum value for which the data bar does 
not start filling.</paragraph>
+  <h3 id="hd_id501610569361264">Maximum:</h3><paragraph role="paragraph" 
id="par_id461610473163880"> Set the maximum value for which the data bar gets 
completely filled.</paragraph>
+  <paragraph role="paragraph" id="par_id791610556114310">The options for 
setting the minimum and maximum values are:</paragraph><list type="unordered">  
  <listitem>
     <paragraph id="par_id621610556164264" 
role="listitem"><emph>Automatic:</emph> Automatically sets the minimum and 
maximum value based on the values in the data set.</paragraph>
     </listitem>
         <listitem>
@@ -49,7 +49,7 @@
   <h2 id="hd_id551610558198954">Bar Colors</h2>
   <h3 id="hd_id391610569504555">Positive:</h3><paragraph role="paragraph" 
id="par_id611610558381528"> Set the color for positive values. It is set to 
blue be default.</paragraph>
   <h3 id="hd_id161610569508370">Negative:</h3><paragraph role="paragraph" 
id="par_id451610558525398"> Set the color for negative values. It is set to red 
by default.</paragraph>
-  <h3 id="hd_id261610569510818">Fill:</h3><paragraph role="paragraph" 
id="par_id221610558585001"> Choose between color and gradient to fill with 
solid color or gradient.</paragraph>
+  <h3 id="hd_id261610569510818">Fill:</h3><paragraph role="paragraph" 
id="par_id221610558585001"> Choose between color and gradient for the 
fill.</paragraph>
   <h2 id="hd_id711610558701623">Axis</h2>
   <h3 id="hd_id731610569777368">Position of vertical axis:</h3><paragraph 
role="paragraph" id="par_id901610558734975"> Set the position of vertical axis 
in the cell.</paragraph>
 <list type="unordered">
@@ -65,8 +65,8 @@
   </list>
   <h3 id="hd_id591610569865757">Color of vertical axis:</h3><paragraph 
role="paragraph" id="par_id601610560622213"> Choose the color of the vertical 
axis.</paragraph>
   <h2 id="hd_id631610560675220">Bar Lengths</h2>
-  <h3 id="hd_id651610569932338">Minimum bar length(%):</h3><paragraph 
role="paragraph" id="par_id381610560706116"> Set the minimum length of the 
databar in percentage with respect to the cell length.</paragraph>
-  <h3 id="hd_id151610569983195">Maximum bar length(%):</h3><paragraph 
role="paragraph" id="par_id511610560783506"> Set the maximum length of the 
databar in percentage with respect to the cell length. </paragraph>
+  <h3 id="hd_id651610569932338">Minimum bar length (%):</h3><paragraph 
role="paragraph" id="par_id381610560706116"> Set the minimum length of the data 
bar in percentage with respect to the cell length.</paragraph>
+  <h3 id="hd_id151610569983195">Maximum bar length (%):</h3><paragraph 
role="paragraph" id="par_id511610560783506"> Set the maximum length of the data 
bar in percentage with respect to the cell length. </paragraph>
   <h2 id="hd_id821610560955981">Display bar only</h2>
   <paragraph role="paragraph" id="par_id501610560981306">Only databar is 
shown. Value becomes hidden.</paragraph>
 </body>
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to