mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-07 03:44:26 +02:00
sync with EN
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
<!-- $Revision$ -->
|
<!-- $Revision$ -->
|
||||||
<!-- EN-Revision: 1.9 Maintainer: yannick Status: ready -->
|
<!-- EN-Revision: 1.10 Maintainer: yannick Status: ready -->
|
||||||
|
|
||||||
<sect1 id="language.function.html.table">
|
<sect1 id="language.function.html.table">
|
||||||
<title>{html_table}</title>
|
<title>{html_table}</title>
|
||||||
@@ -41,16 +41,18 @@
|
|||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>cols</entry>
|
<entry>cols</entry>
|
||||||
<entry>entier</entry>
|
<entry>mixed</entry>
|
||||||
<entry>Non</entry>
|
<entry>Non</entry>
|
||||||
<entry><emphasis>3</emphasis></entry>
|
<entry><emphasis>3</emphasis></entry>
|
||||||
<entry>
|
<entry>
|
||||||
nombre de colonnes de la table. Si l'attribut "cols" est vide,
|
nombre de colonnes de la table ou une liste de noms de colonnes s<>par<61>s par une
|
||||||
|
virgule ou un tableau contenant les noms des colonnes. Si l'attribut "cols" est vide,
|
||||||
mais que des lignes sont donn<6E>es, alors le nombre de colonnes sera calcul<75>
|
mais que des lignes sont donn<6E>es, alors le nombre de colonnes sera calcul<75>
|
||||||
en utilisant le nombre de lignes et le nombre d'<27>l<EFBFBD>ments <20> afficher pour qu'il y
|
en utilisant le nombre de lignes et le nombre d'<27>l<EFBFBD>ments <20> afficher pour qu'il y
|
||||||
ait juste assez de colonnes pour afficher tous les <20>l<EFBFBD>ments. Si les lignes et
|
ait juste assez de colonnes pour afficher tous les <20>l<EFBFBD>ments. Si les lignes et
|
||||||
les colonnes sont omis tous les deux, la valeur par d<>faut de "cols" sera appliqu<71>e,
|
les colonnes sont omis tous les deux, la valeur par d<>faut de "cols" sera appliqu<71>e,
|
||||||
<20> savoir 3.
|
<20> savoir 3. Si fourni en tant que liste ou tableau, le nombre de colonnes
|
||||||
|
est calcul<75> par rapport au nombre d'<27>l<EFBFBD>ments de la liste ou du tableau.
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
@@ -78,6 +80,15 @@
|
|||||||
afficher lignes par lignes.
|
afficher lignes par lignes.
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>caption</entry>
|
||||||
|
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
||||||
|
<entry>No</entry>
|
||||||
|
<entry><emphasis>empty</emphasis></entry>
|
||||||
|
<entry>
|
||||||
|
texte <20> utiliser pour l'<27>l<EFBFBD>ment caption du tableau.
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>table_attr</entry>
|
<entry>table_attr</entry>
|
||||||
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
||||||
@@ -85,6 +96,13 @@
|
|||||||
<entry><emphasis>border="1"</emphasis></entry>
|
<entry><emphasis>border="1"</emphasis></entry>
|
||||||
<entry>attributs pour la balise table</entry>
|
<entry>attributs pour la balise table</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>th_attr</entry>
|
||||||
|
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
||||||
|
<entry>No</entry>
|
||||||
|
<entry><emphasis>empty</emphasis></entry>
|
||||||
|
<entry>attributs pour les balises th (les tableaux sont parcourus)</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>tr_attr</entry>
|
<entry>tr_attr</entry>
|
||||||
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
<entry>cha<EFBFBD>ne de caract<63>res</entry>
|
||||||
@@ -152,7 +170,7 @@ Code du template :
|
|||||||
----------------------
|
----------------------
|
||||||
{html_table loop=$data}
|
{html_table loop=$data}
|
||||||
{html_table loop=$data cols=4 table_attr='border="0"'}
|
{html_table loop=$data cols=4 table_attr='border="0"'}
|
||||||
{html_table loop=$data cols=4 tr_attr=$tr}
|
{html_table loop=$data cols="first,second,third,fourth" tr_attr=$tr}
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
<para>
|
<para>
|
||||||
@@ -161,19 +179,30 @@ Code du template :
|
|||||||
<screen>
|
<screen>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<table border="1">
|
<table border="1">
|
||||||
|
<tbody>
|
||||||
<tr><td>1</td><td>2</td><td>3</td></tr>
|
<tr><td>1</td><td>2</td><td>3</td></tr>
|
||||||
<tr><td>4</td><td>5</td><td>6</td></tr>
|
<tr><td>4</td><td>5</td><td>6</td></tr>
|
||||||
<tr><td>7</td><td>8</td><td>9</td></tr>
|
<tr><td>7</td><td>8</td><td>9</td></tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table border="0">
|
<table border="0">
|
||||||
|
<tbody>
|
||||||
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
|
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
|
||||||
<tr><td>5</td><td>6</td><td>7</td><td>8</td></tr>
|
<tr><td>5</td><td>6</td><td>7</td><td>8</td></tr>
|
||||||
<tr><td>9</td><td> </td><td> </td><td> </td></tr>
|
<tr><td>9</td><td> </td><td> </td><td> </td></tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table border="1">
|
<table border="1">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>first</th><th>second</th><th>third</th><th>fourth</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
<tr bgcolor="#eeeeee"><td>1</td><td>2</td><td>3</td><td>4</td></tr>
|
<tr bgcolor="#eeeeee"><td>1</td><td>2</td><td>3</td><td>4</td></tr>
|
||||||
<tr bgcolor="#dddddd"><td>5</td><td>6</td><td>7</td><td>8</td></tr>
|
<tr bgcolor="#dddddd"><td>5</td><td>6</td><td>7</td><td>8</td></tr>
|
||||||
<tr bgcolor="#eeeeee"><td>9</td><td> </td><td> </td><td> </td></tr>
|
<tr bgcolor="#eeeeee"><td>9</td><td> </td><td> </td><td> </td></tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
]]>
|
]]>
|
||||||
</screen>
|
</screen>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
<!-- $Revision$ -->
|
<!-- $Revision$ -->
|
||||||
<!-- EN-Revision: 1.7 Maintainer: yannick Status: ready -->
|
<!-- EN-Revision: 1.8 Maintainer: yannick Status: ready -->
|
||||||
|
|
||||||
<sect1 id="language.function.mailto">
|
<sect1 id="language.function.mailto">
|
||||||
<title>{mailto}</title>
|
<title>{mailto}</title>
|
||||||
|
Reference in New Issue
Block a user