mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-03 15:43:09 +00:00
Suunto import: fix weight import
Suunto apparently has a typo in their SDE format. Let's import also WEIGTH :D Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
00ec824129
commit
fade17d16b
1 changed files with 2 additions and 2 deletions
|
@ -84,10 +84,10 @@
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
|
||||||
<xsl:if test="WEIGHT != ''">
|
<xsl:if test="WEIGHT|WEIGTH != ''">
|
||||||
<weightsystem>
|
<weightsystem>
|
||||||
<xsl:attribute name="weight">
|
<xsl:attribute name="weight">
|
||||||
<xsl:value-of select="concat(translate(WEIGHT, ',', '.'), ' kg')"/>
|
<xsl:value-of select="concat(translate(WEIGHT|WEIGTH, ',', '.'), ' kg')"/>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</weightsystem>
|
</weightsystem>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
|
|
Loading…
Reference in a new issue