Please revert ASAP.
Goba
ok... am I blind... or did you just translate INSIDE THE ENGLISH TREE?! :|
Miroslav Lednicky wrote:
_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">
<