cynic Mon Feb 5 04:48:04 2001 EDT
Modified files:
/phpdoc/cs/functions filesystem.xml
Log:
a few more translated functions
Index: phpdoc/cs/functions/filesystem.xml
diff -u phpdoc/cs/functions/filesystem.xml:1.1 phpdoc/cs/functions/filesystem.xml:1.2
--- phpdoc/cs/functions/filesystem.xml:1.1 Fri Jan 26 08:50:45 2001
+++ phpdoc/cs/functions/filesystem.xml Mon Feb 5 04:48:03 2001
@@ -2427,7 +2427,7 @@
<refentry id="function.tmpfile">
<refnamediv>
<refname>tmpfile</refname>
- <refpurpose>Creates a temporary file</refpurpose>
+ <refpurpose>Vytvo�it tmp soubor</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2438,16 +2438,14 @@
</funcprototype>
</funcsynopsis>
<para>
- Creates a temporary file with an unique name in write mode,
- returning a file handle similar to the one returned by
- <function>fopen</function>.
- The file is automatically removed when closed (using
- <function>fclose</function>), or when the script ends.
+ 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.
</para>
<para>
- For details, consult your system documentation on the
- <literal>tmpfile(3)</literal> function, as well as the
- <filename>stdio.h</filename> header file.
+ Detaily viz syst�mov� dokumentace k funkci
+ <literal>tmpfile(3)</literal> a soubor <filename>stdio.h</filename>.
</para>
<para>
Viz tak� <function>tempnam</function>.
@@ -2459,7 +2457,7 @@
<refentry id="function.touch">
<refnamediv>
<refname>touch</refname>
- <refpurpose>Sets modification time of file</refpurpose>
+ <refpurpose>Nastavit �as zm�ny souboru</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2475,17 +2473,17 @@
</funcprototype>
</funcsynopsis>
<para>
- Attempts to set the modification time of the file named by
- filename to the value given by time. If the option time is not
- given, uses the present time.
+ Pokus� se nastavit �as zm�nu souboru <parameter>filename</parameter> na
+ <parameter>time</parameter>. Pokud <parameter>filename</parameter> nen�
+ p��tomen, pou�ije se aktu�ln� �as.
</para>
<para>
- If the file does not exist, it is created.
+ Pokud tento soubor neexistuje, vytvo�� se.
</para>
<para>
- Returns <literal>true</literal> on success and <literal>false</literal>
otherwise.
+ P�i �sp�chu vrac� <literal>true</literal>, jinak <literal>false</literal>.
<example>
- <title><function>Touch</function> example</title>
+ <title>Uk�zka <function>Touch</function></title>
<programlisting role="php">
if (touch ($FileName)) {
print "$FileName modification time has been
@@ -2502,7 +2500,7 @@
<refentry id="function.umask">
<refnamediv>
<refname>umask</refname>
- <refpurpose>Changes the current umask</refpurpose>
+ <refpurpose>Zm�nit sou�asnou umask</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2523,7 +2521,7 @@
</para>
<note>
<simpara>
- This function may not work on Windows systems.
+ Tato funkce nemus� na Windows fungovat.
</simpara>
</note>
</refsect1>
@@ -2532,7 +2530,7 @@
<refentry id="function.unlink">
<refnamediv>
<refname>unlink</refname>
- <refpurpose>Deletes a file</refpurpose>
+ <refpurpose>Smazat soubor</refpurpose>
</refnamediv>
<refsect1>
<title>Popis</title>
@@ -2543,18 +2541,17 @@
</funcprototype>
</funcsynopsis>
<para>
- Deletes <parameter>filename</parameter>. Similar to the Unix C
- unlink() function.
+ Sma�e <parameter>filename</parameter>. Podobn� Unixov� C funkci unlink().
</para>
<para>
- Returns 0 or FALSE on an error.
+ P�i chyb� vrac� 0 nebo FALSE.
</para>
<para>
- Viz tak� <function>rmdir</function> for removing directories.
+ Viz tak� <function>rmdir</function> pro maz�n� adres���.
</para>
<note>
<simpara>
- This function may not work on Windows systems.
+ Tato funkce nemus� na Windows fungovat.
</simpara>
</note>
</refsect1>