[Yanel-commits] rev 50862 - public/yanel/trunk/src/resources/directory/xslt

michi at wyona.com michi at wyona.com
Thu Jul 1 14:33:38 CEST 2010


Author: michi
Date: 2010-07-01 14:33:38 +0200 (Thu, 01 Jul 2010)
New Revision: 50862

Modified:
   public/yanel/trunk/src/resources/directory/xslt/dir2xhtml.xsl
Log:
i18n upgraded

Modified: public/yanel/trunk/src/resources/directory/xslt/dir2xhtml.xsl
===================================================================
--- public/yanel/trunk/src/resources/directory/xslt/dir2xhtml.xsl	2010-07-01 12:30:25 UTC (rev 50861)
+++ public/yanel/trunk/src/resources/directory/xslt/dir2xhtml.xsl	2010-07-01 12:33:38 UTC (rev 50862)
@@ -25,32 +25,32 @@
   <xsl:template match="/">
     <html xmlns="http://www.w3.org/1999/xhtml">
       <head>
-        <title><i18n:message key="collection"/>: <xsl:value-of select="/dir:directory/@yanel:path"/>
+        <title><i18n:text key="collection"/>: <xsl:value-of select="/dir:directory/@yanel:path"/>
         </title>
         <script src="{$yanel.htdocs}yanel-js/sorttable.js" type="text/javascript"/>
       </head>
       <body>
         <div>
           <p>
-            <b><i18n:message key="yanelPathTitle"/>:</b>&#160;<xsl:value-of select="/dir:directory/@yanel:path"/>
+            <b><i18n:text key="yanelPathTitle"/>:</b>&#160;<xsl:value-of select="/dir:directory/@yanel:path"/>
           </p>
           <p>
-            <b><i18n:message key="collectionPathTitle"/>:</b>&#160;<xsl:value-of
+            <b><i18n:text key="collectionPathTitle"/>:</b>&#160;<xsl:value-of
             select="/dir:directory/@dir:path"/> (<a
-              href="?yanel.resource.viewid=source">XML <i18n:message key="view"/></a>)</p>
+              href="?yanel.resource.viewid=source">XML <i18n:text key="view"/></a>)</p>
           <p>
             <table class="sortable">
               <thead>
                 <tr>
-                  <th><i18n:message key="type"/></th>
-                  <th class="sorttable_alpha"><i18n:message key="name"/></th>
-                  <th><i18n:message key="lastmodified"/></th>
-                  <th><i18n:message key="size"/></th>
+                  <th><i18n:text key="type"/></th>
+                  <th class="sorttable_alpha"><i18n:text key="name"/></th>
+                  <th><i18n:text key="lastmodified"/></th>
+                  <th><i18n:text key="size"/></th>
                 </tr>
               </thead>
               <tbody>
                 <tr class="parent">
-                  <td class="type" sorttable_customkey="1"><i18n:message key="parent"/> </td>
+                  <td class="type" sorttable_customkey="1"><i18n:text key="parent"/> </td>
                   <td class="name">
                     <a href="{$yarep.parent}" title="directory">..</a>
                   </td>
@@ -68,7 +68,7 @@
 
   <xsl:template match="dir:directory">
     <tr class="collection">
-      <td class="type" sorttable_customkey="Collection"><i18n:message key="collection"/> </td>
+      <td class="type" sorttable_customkey="Collection"><i18n:text key="collection"/> </td>
       <td class="name">
         <a href="{$yarep.back2realm}.{@path}/" title="directory">
           <xsl:value-of select="@name"/>
@@ -81,7 +81,7 @@
 
   <xsl:template match="dir:file">
     <tr class="file">
-      <td class="type" sorttable_customkey="Resource"><i18n:message key="resource"/></td>
+      <td class="type" sorttable_customkey="Resource"><i18n:text key="resource"/></td>
       <td class="name">
         <a href="{$yarep.back2realm}.{@path}" title="file">
           <xsl:value-of select="@name"/>



More information about the Yanel-commits mailing list