luk Thu Nov 22 16:54:55 2001 EDT
Modified files:
/phpdoc/cs/functions filesystem.xml
Log:
The most part of filesystem is translated. Ufff...
Index: phpdoc/cs/functions/filesystem.xml
diff -u phpdoc/cs/functions/filesystem.xml:1.8 phpdoc/cs/functions/filesystem.xml:1.9
--- phpdoc/cs/functions/filesystem.xml:1.8 Wed Nov 21 19:02:09 2001
+++ phpdoc/cs/functions/filesystem.xml Thu Nov 22 16:54:54 2001
@@ -1883,7 +1883,7 @@
<refentry id="function.mkdir">
<refnamediv>
<refname>mkdir</refname>
- <refpurpose>Makes directory</refpurpose>
+ <refpurpose>Vytvo�� adres��</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -1895,11 +1895,11 @@
</funcprototype>
</funcsynopsis>
<para>
- Attempts to create the directory specified by pathname.
+ Pokus� se vytvo�it adres�� specifikovan� sv�m n�zvem.
</para>
- <para>
- Pozn.: you probably want to specify the mode as an
- octal number, which means it should have a leading zero.
+ <para>
+ Pozn.: Pravd�podobn� chcete specifikovat m�d jako oktalov� ��slo,
+ potom by v�ak m�lo za��nat nulou.
<informalexample>
<programlisting role="php">
mkdir ("/path/to/my/dir", 0700);
@@ -1907,7 +1907,7 @@
</informalexample>
</para>
<para>
- Returns &true; on success and &false; on failure.
+ Vrac� &true; p�i �sp�chu a &false; p�i chyb�.
</para>
<para>
Viz tak� <function>rmdir</function>.
@@ -1918,7 +1918,7 @@
<refentry id="function.move-uploaded-file">
<refnamediv>
<refname>move_uploaded_file</refname>
- <refpurpose>Moves an uploaded file to a new location.</refpurpose>
+ <refpurpose>P�esune uploadovan� soubor na nov� m�sto</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -1931,43 +1931,41 @@
</funcsynopsis>
<para>
- This function is available only in versions of PHP 3 after PHP
- 3.0.16, and in versions of PHP 4 after 4.0.2.
+ tato fuknce je dostupn� pouze ve verz�ch PHP 3 od 3.0.16 a
+ ve verz�ch PHP 4 od 4.0.2.
</para>
<para>
- This function checks to ensure that the file designated by
- <parameter>filename</parameter> is a valid upload file (meaning
- that it was uploaded via PHP's HTTP POST upload mechanism). If
- the file is valid, it will be moved to the filename given by
+ Tato si ov��uje, zda soubor identifikovan� n�zvem
+ <parameter>filename</parameter> je platn�m uploadovan�m souborem
+ (prost�ednictv�m HTTP POST mechanismu poskytovan�ho PHP).
+ Pokud je soubor platn�, je p�esunut/p�ejmenov�n na
<parameter>destination</parameter>.
</para>
<para>
- If <parameter>filename</parameter> is not a valid upload file,
- then no action will occur, and
- <function>move_uploaded_file</function> will return
- &false;.
+ Pokud <parameter>filename</parameter> nen� platn� uploadovan� soubor,
+ funkce <function>move_uploaded_file</function> nic neprovede a
+ vr�t� &false;.
</para>
<para>
- If <parameter>filename</parameter> is a valid upload file, but
- cannot be moved for some reason, no action will occur, and
- <function>move_uploaded_file</function> will return
- &false;. Additionally, a warning will be issued.
+ Pokud <parameter>filename</parameter> je platn� uploadovan� soubor,
+ ale z n�jak�ho d�vodu nem��e b�t p�esunut, funkce
+ <function>move_uploaded_file</function> nic neprovede a vr�t�
+ &false;. Nav�c je vygenerov�no varov�n� (warning).
</para>
<para>
- This sort of check is especially important if there is any chance
- that anything done with uploaded files could reveal their
- contents to the user, or even to other users on the same
- system.
+ Tento druh test� je zvl�t� d�le�it�, je-li mo�nost,
+ �e akce na uploadovan�ch souborech m��e zp��stupnit jejich
+ obsah u�ivateli nebo jin�m u�ivatek�m tohoto syst�mu.
</para>
<para>
- Viz tak� <function>is_uploaded_file</function>, and the section
- <link linkend="features.file-upload">Handling file uploads</link>
- for a simple usage example.
+ Viz tak� <function>is_uploaded_file</function>, a sekce
+ <link linkend="features.file-upload">Handling file uploads</link>,
+ kde je p��klad jednoduch�ho pou�it�.
</para>
</refsect1>
</refentry>
@@ -1975,7 +1973,7 @@
<refentry id="function.pclose">
<refnamediv>
<refname>pclose</refname>
- <refpurpose>Closes process file pointer</refpurpose>
+ <refpurpose>Zav�e procesov� soubor (rouru)</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -1986,16 +1984,15 @@
</funcprototype>
</funcsynopsis>
<para>
- Closes a file pointer to a pipe opened by
+ Zav�e rouru otev�enou pomoc� funkce
<function>popen</function>.
</para>
<para>
- The file pointer must be valid, and must have been returned by a
- successful call to <function>popen</function>.
+ Deskriptor souboru mus� b�t platn� a mus� ukazovat na rouru �sp�n�
+ otev�enou pomoc� <function>popen</function>.
</para>
<para>
- Returns the termination status of the process that was
- run.
+ Vrac� n�vratov� k�d procesu, kter� na rou�e b�el.
</para>
<para>
Viz tak� <function>popen</function>.
@@ -2006,7 +2003,7 @@
<refentry id="function.popen">
<refnamediv>
<refname>popen</refname>
- <refpurpose>Opens process file pointer</refpurpose>
+ <refpurpose>Otev�e procesov� soubor (rouru)</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2018,19 +2015,21 @@
</funcprototype>
</funcsynopsis>
<para>
- Opens a pipe to a process executed by forking the command given
- by command.
+ Otev�e rouru do procesu spu�t�n�ho roz�t�pen�m st�vaj�c�ho procesu
+ n�sledn�m a spu�t�n�m programu specifikovan�ho parametrem
+ <parameter>command</parameter>.
</para>
<para>
- Returns a file pointer identical to that returned by
- <function>fopen</function>, except that it is unidirectional (may
- only be used for reading or writing) and must be closed with
- <function>pclose</function>. This pointer may be used with
- <function>fgets</function>, <function>fgetss</function>, and
- <function>fputs</function>.
+ Vrac� deskriptor souboru identick� s t�m, kter� vrac� funkce
+ <function>fopen</function>, je v�ak v�dy pouze jednosm�rn�
+ (m��e b�t otev�en pro �ten� nebo z�pis, nikoli sou�asn�)
+ a na z�v�r mus� b�t zav�en pomoc�
+ <function>pclose</function>. Tento deskriptor m��e b�t pou�it
+ funkcemi <function>fgets</function>, <function>fgetss</function>,
+ a <function>fputs</function>.
</para>
<para>
- If an error occurs, returns &false;.
+ Nastane-li chyba, vrac� &false;.
</para>
<para>
<informalexample>
@@ -2048,7 +2047,7 @@
<refentry id="function.readfile">
<refnamediv>
<refname>readfile</refname>
- <refpurpose>Outputs a file</refpurpose>
+ <refpurpose>Vyp��e soubor</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2064,43 +2063,43 @@
</funcprototype>
</funcsynopsis>
<para>
- Reads a file and writes it to standard output.
+ P�e�te soubor a vyp��e ho na standardn� v�stup.
</para>
<para>
- Returns the number of bytes read from the file. If an error
- occurs, &false; is returned and unless the function was called as
- @readfile, an error message is printed.
+ Vrac� po�et byt� p�e�ten�ch ze souboru. Pokud nastane chyba,
+ vr�t� &false; a pokud nebyla pou�ita notace @readfile,
+ vyp��e se chybov� hl�en�.
</para>
- <para>
- If <parameter>filename</parameter> begins with "http://"
- (not case sensitive), an HTTP 1.0 connection is opened to the
- specified server and the text of the response is written to
- standard output.
+ <para>
+ Kdy� <parameter>filename</parameter> za��n� "http://"
+ (velk�mi nebo mal�mi p�smeny), otev�e se spojen� na p��slu�n�
+ server protokolem HTTP 1.0 a z�skan� dokument se vyp��e na
+ standardn� v�stup.
</para>
<para>
- Does not handle HTTP redirects, so you must include trailing
- slashes on directories.
+ Nezpracov�v� HTTP p�esm�rov�n�, je t�eba vlo�it koncov�
+ lom�tko za n�zev adres��e.
</para>
<para>
- If <parameter>filename</parameter> begins with "ftp://"
- (not case sensitive), an ftp connection to the specified server is
- opened and the requested file is written to standard output. If the server
- does not support passive mode ftp, this will fail.
+ Kdy� <parameter>filename</parameter> za��n� "ftp://" (velk�
+ �i mal� p�smena), je otev�ena FTP relace na p��slu�n� server
+ a dokument se vyp��e na standardn� v�stup. Pokud server
+ nepodporuje pasivn� re�im FTP komunikace, sel�e to.
</para>
<para>
- If <parameter>filename</parameter> begins with neither
- of these strings, the file will be opened from the filesystem and
- its contents written to standard output.
+ Kdy� <parameter>filename</parameter> za��n� ��mkoli jin�m,
+ bude otev�en oby�ejn� soubor (z filesyst�mu) a jeho obsah
+ vyps�n na standardn� v�stup.
</para>
<para>
- You can use the optional second parameter and set it to "1", if
- you want to search for the file in the <link
- linkend="ini.include-path">include_path</link>, too.
+ M��ete pou��t nepovinn� t�et� parametr a nastavit ho na
+ "1", pokud chcete hledat soubor tak� v
+ <link linkend="ini.include-path">include_path</link>.
</para>
<para>
Viz tak� <function>fpassthru</function>,
<function>file</function>, <function>fopen</function>,
- <function>include</function>, <function>require</function>, and
+ <function>include</function>, <function>require</function>, a
<function>virtual</function>.
</para>
</refsect1>
@@ -2109,7 +2108,7 @@
<refentry id="function.readlink">
<refnamediv>
<refname>readlink</refname>
- <refpurpose>Returns the target of a symbolic link</refpurpose>
+ <refpurpose>Vrac� c�l symbolick�ho odkazu</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2120,13 +2119,13 @@
</funcprototype>
</funcsynopsis>
<para>
- <function>readlink</function> does the same as the readlink C
- function and returns the contents of the symbolic link path or 0
- in case of error.
+ <function>readlink</function> prov�d� tot� jako funkce
+ readlink v C a vrac� n�zev souboru, na kter� symbolick�
+ odkaz (link) ukazuje. P�i chyb� vrac� 0.
</para>
<para>
Viz tak� <function>symlink</function>,
- <function>readlink</function> and
+ <function>readlink</function> a
<function>linkinfo</function>.
</para>
<note>
@@ -2140,7 +2139,7 @@
<refentry id="function.rename">
<refnamediv>
<refname>rename</refname>
- <refpurpose>Renames a file</refpurpose>
+ <refpurpose>P�ejmenuje soubor</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2152,11 +2151,11 @@
</funcprototype>
</funcsynopsis>
<para>
- Attempts to rename <parameter>oldname</parameter> to
+ Pokus� se p�ejmenovat soubor <parameter>oldname</parameter> na
<parameter>newname</parameter>.
</para>
<para>
- Returns &true; on success and &false; on failure.
+ Vrac� &true; p�i �sp�chu a &false; p�i chyb�.
</para>
</refsect1>
</refentry>
@@ -2164,7 +2163,7 @@
<refentry id="function.rewind">
<refnamediv>
<refname>rewind</refname>
- <refpurpose>Rewind the position of a file pointer</refpurpose>
+ <refpurpose>Vr�t� ukazatel v souboru na za��tek</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2175,13 +2174,20 @@
</funcprototype>
</funcsynopsis>
<para>
- Sets the file position indicator for fp to the beginning of the
- file stream.</para> <para> If an error occurs, returns 0.</para>
- <para> The file pointer must be valid, and must point to a file
- successfully opened by <function>fopen</function>.
+ Nastav� pozici ukazatele v souboru specifikovan� deskriptorem
+ <parameter>fp</parameter> na za��tek tohoto souboru.
+ </para>
+
+ <para>
+ Nastane-li chyba, vrac� 0.
+ </para>
+
+ <para>
+ Deskriptor souboru mus� b�t platn� a mus� ukazovat na soubor �sp�n�
+ otev�en� pomoc� <function>fopen</function>.
</para>
<para>
- Viz tak� <function>fseek</function> and
+ Viz tak� <function>fseek</function> a
<function>ftell</function>.
</para>
</refsect1>
@@ -2191,7 +2197,7 @@
<refentry id="function.rmdir">
<refnamediv>
<refname>rmdir</refname>
- <refpurpose>Removes directory</refpurpose>
+ <refpurpose>Odstran� adres��</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2202,12 +2208,11 @@
</funcprototype>
</funcsynopsis>
<para>
- Attempts to remove the directory named by pathname. The directory
- must be empty, and the relevant permissions must permit.
- this.
+ Pokus� se odstranit adres�� specifikovan� sv�m n�zvem. Adres��
+ mus� b�t b�t pr�zdn� a m�t nastavena odpov�daj�c� opr�vn�n�.
</para>
<para>
- If an error occurs, returns 0.
+ Nastane-li chyba, vrac� 0.
</para>
<para>
Viz tak� <function>mkdir</function>.
@@ -2218,7 +2223,7 @@
<refentry id="function.stat">
<refnamediv>
<refname>stat</refname>
- <refpurpose>Gives information about a file</refpurpose>
+ <refpurpose>Zji��uje informace o souboru</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2229,10 +2234,11 @@
</funcprototype>
</funcsynopsis>
<para>
- Gathers the statistics of the file named by filename.</para>
+ Sb�r� statistiky o souboru indentifikovan�m n�zvem
+ <parameter>filename</parameter>.
+ </para>
<para>
- Returns an array with the statistics of the file with the
- following elements:
+ Vrac� pole se statistikami souboru s t�mito elementy:
<orderedlist>
<listitem><simpara>device</simpara></listitem>
<listitem><simpara>inode</simpara></listitem>
@@ -2248,11 +2254,11 @@
<listitem><simpara>blocksize for filesystem I/O *</simpara></listitem>
<listitem><simpara>number of blocks allocated</simpara></listitem>
</orderedlist>
- * - only valid on systems supporting the st_blksize type--other
- systems (i.e. Windows) return -1</para>
+ * - platn� pouze na syst�mechs podporou typu st_blksize -- jinde
+ (nap�. na Windows) vr�t� -1</para>
<para>
- The results of this function are cached. See
- <function>clearstatcache</function> for more details.
+ V�sledek t�to funkce je cachov�n. V�ce informac� - viz
+ <function>clearstatcache</function>.
</para>
</refsect1>
</refentry>
@@ -2261,7 +2267,7 @@
<refnamediv>
<refname>lstat</refname>
<refpurpose>
- Gives information about a file or symbolic link
+ Zji��uje informace o souboru nebo symbolick�m odkazu
</refpurpose>
</refnamediv>
<refsect1>
@@ -2273,16 +2279,16 @@
</funcprototype>
</funcsynopsis>
<para>
- Gathers the statistics of the file or symbolic link named by
- filename. This function is identical to the
- <function>stat</function> function except that if the
- <parameter>filename</parameter> parameter is a symbolic link, the
- status of the symbolic link is returned, not the status of the
- file pointed to by the symbolic link.
+ Sb�r� statistiky o souboru nebo symbolick�m odkazu (linku)
+ identifikovan�m pomoc� n�zvu <parameter>filename</parameter>.
+ Tato funkce je identick� s funkc�
+ <function>stat</function>, s v�jimkou situace, kdy parametrem
+ <parameter>filename</parameter> je symbolick� odkaz -- tehdy
+ jsou vr�ceny informace o odkazu, nikoli o souboru, na kter�
+ ukazuje.
</para>
<para>
- Returns an array with the statistics of the file with the
- following elements:
+ Vrac� pole se statistikami souboru s t�mito elementy:
<orderedlist>
<listitem><simpara>device</simpara></listitem>
<listitem><simpara>inode</simpara></listitem>
@@ -2298,11 +2304,11 @@
<listitem><simpara>blocksize for filesystem I/O *</simpara></listitem>
<listitem><simpara>number of blocks allocated</simpara></listitem>
</orderedlist>
- * - only valid on systems supporting the st_blksize type--other
- systems (i.e. Windows) return -1</para>
+ * - platn� pouze na syst�mechs podporou typu st_blksize -- jinde
+ (nap�. na Windows) vr�t� -1</para>
<para>
- The results of this function are cached. See
- <function>clearstatcache</function> for more details.
+ V�sledek t�to funkce je cachov�n. V�ce informac� - viz
+ <function>clearstatcache</function>.
</para>
</refsect1>
</refentry>
@@ -2310,7 +2316,7 @@
<refentry id="function.realpath">
<refnamediv>
<refname>realpath</refname>
- <refpurpose>Returns canonicalized absolute pathname</refpurpose>
+ <refpurpose>Vr�t� absolutn� cestu v kanonick�m tvaru</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2321,15 +2327,15 @@
</funcprototype>
</funcsynopsis>
<para>
- <function>realpath</function> expands all symbolic links and
- resolves references to '/./', '/../' and extra '/' characters in
- the input <parameter>path</parameter> and return the canonicalized
- absolute pathname. The resulting path will have no symbolic link,
- '/./' or '/../' components.
+ <function>realpath</function> zpracuje v�echny symbolick� odkazy
+ a vyhodnot� odkazy na '/./', '/../' a samostatn� znaky '/'
+ v parametru <parameter>path</parameter> a vrac� absolutn�
+ cestu v kanonick�m tvaru. Tato v�sledn� cesta neobsahuje
+ symbolick� odkazy a komponenty typu '/./' or '/../'.
</para>
<para>
<example>
- <title><function>realpath</function> example</title>
+ <title><function>realpath</function> p��klad</title>
<programlisting role="php">
$real_path = realpath ("../../index.php");
</programlisting>
@@ -2341,7 +2347,7 @@
<refentry id="function.symlink">
<refnamediv>
<refname>symlink</refname>
- <refpurpose>Creates a symbolic link</refpurpose>
+ <refpurpose>Vytvo�� symbolick� odkaz</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2353,13 +2359,13 @@
</funcprototype>
</funcsynopsis>
<para>
- <function>symlink</function> creates a symbolic link
- from the existing <parameter>target</parameter> with
- the specified name <parameter>link</parameter>.
+ <function>symlink</function> vytvo�� symbolick� odkaz (link)
+ k existuj�c�mu souboru <parameter>target</parameter> a nazve
+ ho <parameter>link</parameter>.
</para>
<para>
- Viz tak� <function>link</function> to create hard links,
- and <function>readlink</function> along with
+ Viz tak� <function>link</function> -- vytv��en� hard link�,
+ a <function>readlink</function> spole�n� s
<function>linkinfo</function>.
</para>
<note>
@@ -2373,7 +2379,7 @@
<refentry id="function.tempnam">
<refnamediv>
<refname>tempnam</refname>
- <refpurpose>Creates unique file name</refpurpose>
+ <refpurpose>Vytvo�� soubor s unik�tn�m n�zvem</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2385,24 +2391,24 @@
</funcprototype>
</funcsynopsis>
<para>
- Creates a unique temporary filename in the specified directory.
- If the directory does not exist, <function>tempnam</function> may
- generate a filename in the system's temporary directory.
- </para>
- <para>
- The behaviour of the <function>tempnam</function> function is
- system dependent. On Windows the TMP environment variable will
- override the <parameter>dir</parameter> parameter, on Linux the
- TMPDIR environment variable has precedence, while SVR4 will always
- use your <parameter>dir</parameter> parameter if the directory it
- points to exists. Consult your system documentation on the
- tempnam(3) function if in doubt.
+ Ve specifikovan�m adres��i vytvo�� do�asn� soubor s unik�tn�m
+ n�zvem. Pokud adres�� neexistuje, <function>tempnam</function>
+ m��e vytvo�it soubor v syst�mov�m adres��i pro do�asn� soubory.
+ </para>
+ <para>
+ Chov�n� funkce <function>tempnam</function> je z�visl� na
+ platform�. Na Windows m� parametr <parameter>dir</parameter>
+ p�ednost p�ed syst�movou prom�nnou TMP, na Linuxu m� p�edost
+ prom�nn� TMPDIR a SVR4 v�dy pou�ije parametr
+ <parameter>dir</parameter>, pokud tento adres�� existuje.
+ Pod�vejte se do dokumentace k va�emu syst�mu na funkci
+ tempnam(3).
</para>
<para>
- Returns the new temporary filename, or the &null; string on
- failure.
+ Vrac� n�zev nov�ho do�asn�ho souboru, p�i chyb� pak �et�zec
+ &null;.
<example>
- <title><function>tempnam</function> example</title>
+ <title><function>tempnam</function> p��klad</title>
<programlisting role="php">
$tmpfname = tempnam ("/tmp", "FOO");
</programlisting>
@@ -2410,7 +2416,8 @@
</para>
<note>
<simpara>
- This function's behavior changed in 4.0.3. The temporary file is also
+ Chov�n� t�to funkce bylo zm�n�no ve verzi 4.0.3.
+ The temporary file is also
created to avoid a race condition where the file might appear in the
filesystem between the time the string was generated and before the
the script gets around to creating the file.
@@ -2425,7 +2432,7 @@
<refentry id="function.tmpfile">
<refnamediv>
<refname>tmpfile</refname>
- <refpurpose>Vytvo�it tmp soubor</refpurpose>
+ <refpurpose>Vytvo�� do�asn� soubor</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2436,10 +2443,11 @@
</funcprototype>
</funcsynopsis>
<para>
- Vytvo�� temp soubor, s unik�tn�m n�zvem, v m�du z�pisu, a vrac� deskriptor
- tohoto souboru podobn� jako <function>fopen</function>.
- Tento soubor se p�i zav�en� (pomoc� <function>fclose</function>) nebo p�i
- ukon�en� skriptu automaticky sma�e.
+ Vytvo�� do�asn� soubor s unik�tn�m n�zvem, v m�du z�pisu,
+ a vrac� deskriptor tohoto souboru podobn� jako
+ <function>fopen</function>. Soubor se p�i zav�en� (pomoc�
+ <function>fclose</function>) nebo p�i ukon�en� skriptu
+ automaticky sma�e.
</para>
<para>
Detaily viz syst�mov� dokumentace k funkci
@@ -2498,7 +2506,7 @@
<refentry id="function.umask">
<refnamediv>
<refname>umask</refname>
- <refpurpose>Zm�nit sou�asnou umask</refpurpose>
+ <refpurpose>Zm�n� sou�asn� nastaven� umask</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2509,17 +2517,17 @@
</funcprototype>
</funcsynopsis>
<para>
- <function>umask</function> sets PHP's umask to mask & 0777 and
- returns the old umask. When PHP is being used as a server module,
- the umask is restored when each request is finished.
+ <function>umask</function> nastav� umask PHP na & 0777 a
+ vr�t� star� nastaven� umask. Pokud PHP b�� jako modul serveru,
+ je star� nastaven� obnoveno po ukon�en� ka�d�ho HTTP po�adavku.
</para>
<para>
- <function>umask</function> without arguments simply returns the
- current umask.
+ <function>umask</function> bez parametr� vrac� sou�asn�
+ nastaven� umask.
</para>
<note>
<simpara>
- Tato funkce nemus� na Windows fungovat.
+ Tato funkce nemus� na Windows fungovat
</simpara>
</note>
</refsect1>
@@ -2549,7 +2557,7 @@
</para>
<note>
<simpara>
- Tato funkce nemus� na Windows fungovat.
+ Tato funkce nemus� na Windows fungovat
</simpara>
</note>
</refsect1>