summaryrefslogtreecommitdiff
path: root/officecfg/util
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2009-09-25 15:27:34 +0200
committersb <sb@openoffice.org>2009-09-25 15:27:34 +0200
commite993d53e2a4bd6fd3eccdb885bd461d59fcec5b5 (patch)
tree27fe95bc9c8fb6c68657abebedf795c2e2c82614 /officecfg/util
parent42345be352f413b571b83d262cc96025a9e8618d (diff)
parentab33e14647ada2a32624fa39ec0ddbbbdc694df5 (diff)
merged in DEV300_m60
Diffstat (limited to 'officecfg/util')
-rw-r--r--officecfg/util/alllang.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/officecfg/util/alllang.xsl b/officecfg/util/alllang.xsl
index 86b2dbe752b8..bd4e7934643c 100644
--- a/officecfg/util/alllang.xsl
+++ b/officecfg/util/alllang.xsl
@@ -61,7 +61,7 @@
<xsl:choose>
<xsl:when test="string-length($locale)">
<xsl:apply-templates select = "@*" mode="locale"/>
- <xsl:apply-templates mode="locale"/>
+ <xsl:apply-templates select = "node|prop" mode="locale"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select = "@*"/>
@@ -85,7 +85,7 @@
<xsl:if test="descendant::value[@xml:lang=$locale]/../value[not (@xml:lang)]">
<xsl:copy>
<xsl:apply-templates select = "@*" mode="locale"/>
- <xsl:apply-templates mode = "locale"/>
+ <xsl:apply-templates select = "node|prop|value" mode = "locale"/>
</xsl:copy>
</xsl:if>
</xsl:when>
@@ -93,7 +93,7 @@
<xsl:if test="descendant::value[@xml:lang = $locale]">
<xsl:copy>
<xsl:apply-templates select = "@*" mode="locale"/>
- <xsl:apply-templates mode = "locale"/>
+ <xsl:apply-templates select = "node|prop|value" mode = "locale"/>
</xsl:copy>
</xsl:if>
</xsl:otherwise>