- add language tag to title attribute for dublin core: dc:title xml:lang="de"

- composer updates
This commit is contained in:
Arno Kaimbacher 2021-07-06 15:35:48 +02:00
parent a31a3e22a3
commit 3004e5bb9b
2 changed files with 162 additions and 151 deletions

View file

@ -430,12 +430,18 @@
<xsl:template match="TitleMain" mode="oai_dc">
<dc:title>
<xsl:attribute name="xml:lang">
<xsl:value-of select="@Language" />
</xsl:attribute>
<xsl:value-of select="@Value"/>
</dc:title>
</xsl:template>
<xsl:template match="TitleAdditional" mode="oai_dc">
<dc:title>
<xsl:attribute name="xml:lang">
<xsl:value-of select="@Language" />
</xsl:attribute>
<xsl:value-of select="@Value"/>
</dc:title>
</xsl:template>