[Libreoffice-commits] core.git: filter/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Thu Apr 25 16:42:47 UTC 2019


 filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl |   14 +++++-----
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 6909838e2966b3fd3c2de6b6db70d952cd8b3114
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Thu Apr 25 18:08:33 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Apr 25 18:41:38 2019 +0200

    Fix typo
    
    Change-Id: Ie608aea0cd65d6bc6a3c5d700650ac3b9d3241a9
    Reviewed-on: https://gerrit.libreoffice.org/70998
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
index 8b378b42bf96..2f4830d0b9ed 100644
--- a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
+++ b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
@@ -779,7 +779,7 @@
                                 </xsl:attribute>
                             </xsl:when>
                             <!-- as we create an automatic style, the parent is not allowed to be an automatic style as well
-                                if the parent would be a automatic (unnamed) style, the style information have to be embedded to this style -->
+                                if the parent would be an automatic (unnamed) style, the style information have to be embedded to this style -->
                             <xsl:otherwise>
                                 <xsl:attribute name="style:parent-style-name">
                                     <xsl:call-template name="encode-as-nc-name">
@@ -5986,7 +5986,7 @@
             </xsl:choose>
         </xsl:variable>
         <xsl:if test="@ss:Index - $expandedRowCountIndex > 0">
-            <!-- create the precding missing rows -->
+            <!-- create the preceding missing rows -->
             <xsl:element name="table:table-row">
                 <!-- fill the preceding gap with rows without a cell -->
                 <xsl:attribute name="table:number-rows-repeated">
@@ -6541,7 +6541,7 @@
                                                              )
                                                          ) "/>
         <xsl:choose>
-            <!-- Scenario: The missing cells scipped by using the ss:Index attribute will be added -->
+            <!-- Scenario: The missing cells skipped by using the ss:Index attribute will be added -->
             <xsl:when test="@ss:Index and @ss:Index > $col-pos-written + 1">
                 <!-- In Open Document nothing comparable to Index exists,
                     the missing cells might have to be created, if they had content as only style will be repeated-->
@@ -7026,7 +7026,7 @@
         </xsl:if>
     </xsl:template>
     <xsl:template name="validation-row-column-string">
-        <!-- returns a string with structer,including row\column position by extraction from x:DataValidation -->
+        <!-- returns a string with structure, including row/column position by extraction from x:DataValidation -->
         <xsl:param name="last"/>
         <xsl:param name="total"/>
         <xsl:param name="index"/>
@@ -7049,7 +7049,7 @@
         </xsl:if>
     </xsl:template>
     <xsl:template name="condition-row-column-string">
-        <!-- returns a string with structer,including row\column position by extraction from x:ConditionalFormatting -->
+        <!-- returns a string with structure, including row/column position by extraction from x:ConditionalFormatting -->
         <xsl:param name="last"/>
         <xsl:param name="total"/>
         <xsl:param name="index"/>
@@ -8863,7 +8863,7 @@
         </xsl:choose>
     </xsl:template>
     <xsl:template name="min-of-three">
-        <!-- return minest of three for sorting -->
+        <i!-- return lowest of three for sorting -->
         <xsl:param name="first-num"/>
         <xsl:param name="second-num"/>
         <xsl:param name="third-num"/>
@@ -8893,7 +8893,7 @@
         <xsl:value-of select="$second-comp"/>
     </xsl:template>
     <xsl:template name="max-of-three">
-        <!-- return maxest of three for sorting -->
+        <!-- return greatest of three for sorting -->
         <xsl:param name="first-num"/>
         <xsl:param name="second-num"/>
         <xsl:param name="third-num"/>


More information about the Libreoffice-commits mailing list