sync with en

This commit is contained in:
messju
2005-12-08 17:38:59 +00:00
parent 52cff0a8c3
commit cdaa347533
3 changed files with 15 additions and 8 deletions

View File

@@ -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.3 Maintainer: andreas Status: ready --> <!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
<sect1 id="language.math"> <sect1 id="language.math">
<title>Math</title> <title>Math</title>
<para> <para>
@@ -28,7 +28,8 @@
</example> </example>
<para> <para>
Siehe auch: <link linkend="language.function.math">{math}-Funktion</link>. Siehe auch die <link linkend="language.function.math">{math}-Funktion</link>
f<>r komplexere Berechnungen.
</para> </para>
</sect1> </sect1>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file

View File

@@ -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.3 Maintainer: andreas Status: ready --> <!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
<sect1 id="language.syntax.attributes"> <sect1 id="language.syntax.attributes">
<title>Attribute / Parameter</title> <title>Attribute / Parameter</title>
<para> <para>
@@ -23,9 +23,9 @@
<title>Funktions-Parameter Syntax</title> <title>Funktions-Parameter Syntax</title>
<programlisting> <programlisting>
<![CDATA[ <![CDATA[
{include file="header.tpl"} {include file='header.tpl'}
{include file="header.tpl" attrib_name="attrib value"} {include file='header.tpl' attrib_name='attrib value'}
{include file=$includeFile} {include file=$includeFile}
@@ -33,6 +33,8 @@
{html_select_date display_days=yes} {html_select_date display_days=yes}
{mailto address='smarty@example.com'}
<select name=firma> <select name=firma>
{html_options values=$vals selected=$selected output=$output} {html_options values=$vals selected=$selected output=$output}
</select> </select>

View File

@@ -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.3 Maintainer: andreas Status: ready --> <!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
<sect1 id="language.syntax.comments"> <sect1 id="language.syntax.comments">
<title>Kommentare</title> <title>Kommentare</title>
<para> <para>
@@ -18,8 +18,9 @@
<title>Kommentare</title> <title>Kommentare</title>
<programlisting> <programlisting>
<![CDATA[ <![CDATA[
{* Smarty *}
<body> <body>
{* Dies ist ein einzeiliger Kommentar *}
{* dies ist ein mehrzeiliger {* dies ist ein mehrzeiliger
Kommentar, der nicht zum Kommentar, der nicht zum
Browser gesandt wird. Browser gesandt wird.
@@ -29,15 +30,18 @@
{* einbinden des Header-Templates *} {* einbinden des Header-Templates *}
{include file="header.tpl"} {include file="header.tpl"}
{* Entwicklernotiz: $includeFile enth<EFBFBD>lt 'foo.php' *} {* Entwicklernotiz: $includeFile wurde in 'foo.php' zugewiesen *}
{include file=$includeFile} {include file=$includeFile}
{include file=#includeFile#} {include file=#includeFile#}
{* Ausgabe der drop-down Liste *} {* Ausgabe der drop-down Liste *}
{* Dieser <select> Block ist <20>berfl<66>ssig *}
{*
<select name=firma> <select name=firma>
{html_options options=$vals selected=$selected} {html_options options=$vals selected=$selected}
</select> </select>
*}
]]> ]]>
</programlisting> </programlisting>
</example> </example>