ddate.xsl: spelling bugfix

git-svn-id: svn://svn.c3d2.de/c3d2-web/trunk@2321 31f61c52-7bfb-0310-b897-fc00f8a278f0
This commit is contained in:
astro 2010-03-21 00:51:46 +00:00
parent cfae9c51fe
commit c94549325d
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,9 @@
<xsl:text>, the </xsl:text>
<xsl:value-of select="$mday"/>
<xsl:choose>
<xsl:when test="$mday = 11">th</xsl:when>
<xsl:when test="$mday = 12">th</xsl:when>
<xsl:when test="$mday = 13">th</xsl:when>
<xsl:when test="$mday mod 10 = 1">st</xsl:when>
<xsl:when test="$mday mod 10 = 2">nd</xsl:when>
<xsl:when test="$mday mod 10 = 3">rd</xsl:when>