cvs: smarty /docs/de/designers/language-basic-syntax language-math.xml language-syntax-attributes.xml language-syntax-comments.xml

[email protected] ("Messju Mohr") Thu, 08 Dec 2005 17:39:00 -0000
Newsgroups php.smarty.cvs
Message-ID <cvsmessju1134063540@cvsserver>
messju		Thu Dec  8 12:39:00 2005 EDT

  Modified files:              
    /smarty/docs/de/designers/language-basic-syntax	language-math.xml 
                                                   	language-syntax-attributes.xml 
                                                   	language-syntax-comments.xml 
  Log:
  sync with en
  
  
http://cvs.php.net/diff.php/smarty/docs/de/designers/language-basic-syntax/language-math.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/de/designers/language-basic-syntax/language-math.xml
diff -u smarty/docs/de/designers/language-basic-syntax/language-math.xml:1.3 smarty/docs/de/designers/language-basic-syntax/language-math.xml:1.4
--- smarty/docs/de/designers/language-basic-syntax/language-math.xml:1.3	Fri Jun 17 07:27:24 2005
+++ smarty/docs/de/designers/language-basic-syntax/language-math.xml	Thu Dec  8 12:38:59 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
-<!-- EN-Revision: 1.3 Maintainer: andreas Status: ready -->
+<!-- $Revision: 1.4 $ -->
+<!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
 <sect1 id="language.math">
  <title>Math</title>
  <para>
@@ -28,7 +28,8 @@
  </example>
 
  <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>
 </sect1>
 <!-- Keep this comment at the end of the file
http://cvs.php.net/diff.php/smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml
diff -u smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml:1.3 smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml:1.4
--- smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml:1.3	Tue Jun 21 07:55:27 2005
+++ smarty/docs/de/designers/language-basic-syntax/language-syntax-attributes.xml	Thu Dec  8 12:38:59 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
-<!-- EN-Revision: 1.3 Maintainer: andreas Status: ready -->
+<!-- $Revision: 1.4 $ -->
+<!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
 <sect1 id="language.syntax.attributes">
  <title>Attribute / Parameter</title>
  <para>
@@ -23,9 +23,9 @@
   <title>Funktions-Parameter Syntax</title>
    <programlisting>
 	 <![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}
 
@@ -33,6 +33,8 @@
 
 {html_select_date display_days=yes}
 
+{mailto address='[email protected]'}
+
 <select name=firma>
 {html_options values=$vals selected=$selected output=$output}
 </select>
http://cvs.php.net/diff.php/smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml
diff -u smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml:1.3 smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml:1.4
--- smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml:1.3	Tue Jun 21 07:55:27 2005
+++ smarty/docs/de/designers/language-basic-syntax/language-syntax-comments.xml	Thu Dec  8 12:38:59 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
-<!-- EN-Revision: 1.3 Maintainer: andreas Status: ready -->
+<!-- $Revision: 1.4 $ -->
+<!-- EN-Revision: 1.4 Maintainer: andreas Status: ready -->
 <sect1 id="language.syntax.comments">
  <title>Kommentare</title>
  <para>
@@ -18,8 +18,9 @@
   <title>Kommentare</title>
   <programlisting>
 <![CDATA[
-{* Smarty *}
 <body>
+{* Dies ist ein einzeiliger Kommentar *}
+
 {* dies ist ein mehrzeiliger
    Kommentar, der nicht zum
    Browser gesandt wird.
@@ -29,15 +30,18 @@
 {* einbinden des Header-Templates *}
 {include file="header.tpl"}
 
-{* Entwicklernotiz: $includeFile enthält 'foo.php' *}
+{* Entwicklernotiz: $includeFile wurde in 'foo.php' zugewiesen *}
 {include file=$includeFile}
 
 {include file=#includeFile#}
 
 {* Ausgabe der drop-down Liste *}
+{* Dieser <select> Block ist überflüssig *}
+{*
 <select name=firma>
 {html_options options=$vals selected=$selected}
 </select>
+*}
 ]]>
   </programlisting>
  </example>