diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-01-26 18:44:37 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-26 09:25:21 -0800 |
commit | 99d95c3436261d37aba4a2a5375fb9af618f3b08 (patch) | |
tree | d6cfefe05886b3ffaeae556da918f92f0fe426e5 /xslt | |
parent | 2516752cab71b3c5621a576707e9071f4c1a6f77 (diff) | |
download | subsurface-99d95c3436261d37aba4a2a5375fb9af618f3b08.tar.gz |
Update header to use sample wording on CSV export
The profile export now uses Sample time, etc. on profile export as that
is the naming we use on import as well.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/xml2csv.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/xml2csv.xslt b/xslt/xml2csv.xslt index c452dc2ea..093f8ea81 100644 --- a/xslt/xml2csv.xslt +++ b/xslt/xml2csv.xslt @@ -7,7 +7,7 @@ <xsl:variable name="fs">,</xsl:variable> <xsl:template match="/divelog/dives"> - <xsl:value-of select="concat('"dive number"', $fs, '"date"', $fs, '"time"', $fs, '"duration"', $fs, '"depth"', $fs, '"temperature"', $fs, '"pressure"')"/> + <xsl:value-of select="concat('"dive number"', $fs, '"date"', $fs, '"time"', $fs, '"sample time"', $fs, '"sample depth"', $fs, '"sample temperature"', $fs, '"sample pressure"')"/> <xsl:text> </xsl:text> <xsl:apply-templates select="dive|trip/dive"/> |