I'm so sorry. I think that problem was between keyboard and the chair. Next time ill be more carefull.
ml On Sun, 23 Jan 2005, Gabor Hojtsy wrote: > Miroslav, you committed to the wrong place. Please revert to the > previous version of the file! > > Goba > > > _batman_ Sun Jan 23 17:55:52 2005 EDT > > > > Modified files: > > /phpdoc/en/language/oop5 basic.xml > > Log: > > new translation added > > > > http://cvs.php.net/diff.php/phpdoc/en/language/oop5/basic.xml?r1=1.9&r2=1.10&ty=u > > Index: phpdoc/en/language/oop5/basic.xml > > diff -u phpdoc/en/language/oop5/basic.xml:1.9 > > phpdoc/en/language/oop5/basic.xml:1.10 > > --- phpdoc/en/language/oop5/basic.xml:1.9 Wed Dec 29 07:46:06 2004 > > +++ phpdoc/en/language/oop5/basic.xml Sun Jan 23 17:55:51 2005 > > @@ -1,23 +1,22 @@ > > <?xml version="1.0" encoding="iso-8859-1"?> > > -<!-- $Revision: 1.9 $ --> > > +<!-- $Revision: 1.10 $ --> > > > > <sect1 id="language.oop5.basic"> > > - <title>The Basics</title> > > + <title>Základy</title> > > > > <sect2 id="language.oop5.basic.class"> > > <title>class</title> > > <para> > > - Every class definition begins with the keyword class, followed by a > > class > > - name, which can be any name that isn't a <link > > linkend="reserved">reserved</link> > > - word in PHP. Followed by a pair of curly braces, of > > - which contains the definition of the classes members and methods. > > Within > > - each method, except for <link > > linkend="language.oop5.static">static</link> > > - methods, a pseudo variable <varname>$this</varname> is available. > > - <varname>$this</varname> is a reference to the same instance that > > - called the method. > > + Každá definícia triedy začína kľúčovým slovom class nasledované názvom > > + triedy, ktorý je ľubovoľný, s výnimkou > > + <link linkend="reserved">rezervovaných</link> slov v PHP. Nasleduje pár > > + zložených zátvoriek, ktoré obsahujú definíciu vlastností a metód > > triedy. > > + V každej metóde, okrem <link > > linkend="language.oop5.static">statických</link>, > > + je dostupná pseudo premenná <varname>$this</varname>. > > <varname>$this</varname> > > + je referencia na tú istú inštanciu, z ktorej bola metóda volaná. > > </para> > > <example> > > - <title>Simple Class definition</title> > > + <title>Jednoduchá definícia triedy</title> > > <programlisting role="php"> > > <