Messages i18n initial commit

main
Inga 🏳‍🌈 14 years ago
parent 342d10685b
commit 79edb756bf
  1. 2
      Builder/IISMainHandler/build.txt
  2. 33
      templates/Messages.xslt
  3. 8
      templates/Modern/AllPosts.xslt
  4. 8
      templates/Modern/AllThreads.xslt
  5. 11
      templates/Modern/AvatarsSettings.xslt
  6. 1
      templates/Modern/elems/Main.xslt

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="Windows-1251"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="lang">ru</xsl:variable>
<xsl:template name="Messages_AllPosts"><xsl:choose>
<xsl:when test="$lang='ru'">Âñå ñîîáùåíèÿ</xsl:when>
<xsl:otherwise>All posts</xsl:otherwise>
</xsl:choose></xsl:template>
<xsl:template name="Messages_AllThreads"><xsl:choose>
<xsl:when test="$lang='ru'">Âñå òåìû</xsl:when>
<xsl:otherwise>All threads</xsl:otherwise>
</xsl:choose></xsl:template>
<xsl:template name="Messages_PageOuterTitle"><xsl:choose>
<xsl:when test="$lang='ru'">ñòðàíèöû</xsl:when>
<xsl:otherwise>pages</xsl:otherwise>
</xsl:choose></xsl:template>
<xsl:template name="Messages_AvatarsSettings"><xsl:choose>
<xsl:when test="$lang='ru'">Íàñòðîéêà àâàòàðîê</xsl:when>
<xsl:otherwise>Avatars settings</xsl:otherwise>
</xsl:choose></xsl:template>
<xsl:template name="Messages_CurrentAvatars"><xsl:choose>
<xsl:when test="$lang='ru'">Çàãðóæåííûå àâàòàðêè</xsl:when>
<xsl:otherwise>Current avatars</xsl:otherwise>
</xsl:choose></xsl:template>
</xsl:stylesheet>

@ -3,19 +3,21 @@
<xsl:import href="elems\Main.xslt"/>
<xsl:import href="elems\PostInfo.xslt"/>
<xsl:template name="specificTitle">
<xsl:text>Все сообщения</xsl:text>
<xsl:call-template name="Messages_AllPosts"/>
</xsl:template>
<xsl:template name="isRssEnabled">true</xsl:template>
<xsl:template name="specific">
<div>
<xsl:text>страницы:</xsl:text>
<xsl:call-template name="Messages_PageOuterTitle"/>
<xsl:text>:</xsl:text>
<xsl:apply-templates select="posts/pageOuter" mode="withCurrent"/>
</div>
<div class="postscontainer">
<xsl:apply-templates select="posts/post"/>
</div>
<div>
<xsl:text>страницы:</xsl:text>
<xsl:call-template name="Messages_PageOuterTitle"/>
<xsl:text>:</xsl:text>
<xsl:apply-templates select="posts/pageOuter" mode="withCurrent"/>
</div>
</xsl:template>

@ -3,19 +3,21 @@
<xsl:import href="elems\Main.xslt"/>
<xsl:import href="elems\ThreadInfo.xslt"/>
<xsl:template name="specificTitle">
<xsl:text>Âñå òåìû</xsl:text>
<xsl:call-template name="Messages_AllThreads"/>
</xsl:template>
<xsl:template name="isRssEnabled">true</xsl:template>
<xsl:template name="specific">
<div>
<xsl:text>ñòðàíèöû:</xsl:text>
<xsl:call-template name="Messages_PageOuterTitle"/>
<xsl:text>:</xsl:text>
<xsl:apply-templates select="threads/pageOuter" mode="withCurrent"/>
</div>
<div class="threadscontainer">
<xsl:apply-templates select="threads/thread"/>
</div>
<div>
<xsl:text>ñòðàíèöû:</xsl:text>
<xsl:call-template name="Messages_PageOuterTitle"/>
<xsl:text>:</xsl:text>
<xsl:apply-templates select="threads/pageOuter" mode="withCurrent"/>
</div>
</xsl:template>

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="Windows-1251"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="elems\Main.xslt"/>
<xsl:template name="specificTitle">Íàñòðîéêà àâàòàðîê</xsl:template>
<xsl:template name="specificTitle">
<xsl:call-template name="Messages_AvatarsSettings"/>
</xsl:template>
<xsl:template name="specific">
<table width="95%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
<tr>
@ -9,12 +11,15 @@
<table cellpadding="3" cellspacing="1" width="100%" class="tableborders">
<tr>
<td class="tdheader">
<xsl:text>Íàñòðîéêà àâàòàðîê</xsl:text>
<xsl:call-template name="Messages_AvatarsSettings"/>
</td>
</tr>
<tr>
<td class="lighttable">
<p>Âàøè àâàòàðêè:</p>
<p>
<xsl:call-template name="Messages_CurrentAvatars"/>
<xsl:text>:</xsl:text>
</p>
<xsl:apply-templates select="avatars/upload"/>
</td>
</tr>

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="Windows-1251"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="../../Messages.xslt"/>
<xsl:import href="Header.xslt"/>
<xsl:output method="xml" indent="no" />
<xsl:template match="/root">

Loading…
Cancel
Save