# Czech translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Pavel Heimlich , 2009. msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" "POT-Creation-Date: 2024-03-01 17:09+0100\n" "PO-Revision-Date: 2009-02-09 20:06+0100\n" "Last-Translator: Pavel Heimlich \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 20.08.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. type: TH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "sysconf" msgstr "sysconf" #. type: TH #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "2023-10-31" msgstr "31. října 2023" #. type: TH #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "Linux man-pages 6.06" msgstr "Linux man-pages 6.06" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NAME" msgstr "JMÉNO" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "sysconf - get configuration information at run time" msgstr "sysconf - získej konfigurační informace za běhu" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIBRARY" msgstr "KNIHOVNA" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Standard C library (I, I<-lc>)" msgstr "Standardní knihovna C (I, I<-lc>)" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SYNOPSIS" msgstr "POUŽITÍ" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<#include Eunistd.hE>\n" msgstr "B<#include Eunistd.hE>\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "BIB<);>\n" msgstr "BIB<);>\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "DESCRIPTION" msgstr "POPIS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "POSIX allows an application to test at compile or run time whether certain " "options are supported, or what the value is of certain configurable " "constants or limits." msgstr "" "POSIX dovoluje aplikaci v čase překladu, nebo běhu aplikace, testovat, zda " "jsou určité volby podporovány, nebo jaké jsou hodnoty těchto " "konfigurovatelných systémových parametrů." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "At compile time this is done by including Iunistd.hE> and/or " "Ilimits.hE> and testing the value of certain macros." msgstr "" "V čase překladu se toto děje pomocí vložení Iunistd.hE> a/nebo " "Ilimits.hE> a testování hodnot příslušných maker." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "At run time, one can ask for numerical values using the present function " "B(). One can ask for numerical values that may depend on the " "filesystem in which a file resides using B(3) and " "B(3). One can ask for string values using B(3)." msgstr "" "V čase běhu, se můžeme dotazovat na numerické hodnoty použitím funkce " "B(). Pokud se budeme dotazovat na hodnoty, které jsou závislé na " "souborovém systému, je vhodné použít volání B(3) nebo " "B(3). Pro dotazování se na hodnoty řetězců je vhodné použít " "B(3)." #. except that sysconf(_SC_OPEN_MAX) may change answer after a call #. to setrlimit( ) which changes the RLIMIT_NOFILE soft limit #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The values obtained from these functions are system configuration " "constants. They do not change during the lifetime of a process." msgstr "" "Hodnoty získané z těchto funkcí jsou systémové konstanty. Nemění se po dobu " "života procesu." #. and 999 to indicate support for options no longer present in the latest #. standard. (?) #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "For options, typically, there is a constant B<_POSIX_FOO> that may be " #| "defined in Iunistd.hE>. If it is undefined, one should ask at " #| "run time. If it is defined to -1, then the option is not supported. If " #| "it is defined to 0, then relevant functions and headers exist, but one " #| "has to ask at run time what degree of support is available. If it is " #| "defined to a value other than -1 or 0, then the option is supported. " #| "Usually the value (such as 200112L) indicates the year and month of the " #| "POSIX revision describing the option. Glibc uses the value 1 to indicate " #| "support as long as the POSIX revision has not been published yet. The " #| "B() argument will be B<_SC_FOO>. For a list of options, see " #| "B(7)." msgid "" "For options, typically, there is a constant B<_POSIX_FOO> that may be " "defined in Iunistd.hE>. If it is undefined, one should ask at run " "time. If it is defined to -1, then the option is not supported. If it is " "defined to 0, then relevant functions and headers exist, but one has to ask " "at run time what degree of support is available. If it is defined to a " "value other than -1 or 0, then the option is supported. Usually the value " "(such as 200112L) indicates the year and month of the POSIX revision " "describing the option. glibc uses the value 1 to indicate support as long " "as the POSIX revision has not been published yet. The B() " "argument will be B<_SC_FOO>. For a list of options, see B(7)." msgstr "" "Pro jednotlivé proměnné existuje obvykle konstanta B< _POSIX_FOO> definovaná " "v Iunistd.hE.> Pokud definované nejsou, můžeme se dotazovat v době " "běhu programu. Pokud je hodnota definována jako -1, potom není podporována. " "Pokud je definováno na hodnotu 0, pak dané funkce a hlavičky existují, " "nicméně musíme se dotazovat v době běhu programu, jaký stupeň podpory je k " "dispozici. Pokud je hodnota definována jinak než 0 nebo -1 pak je nastaveni " "podporováno. Obvykle hodnota (jako například 200112L) signalizuje rok a " "měsíc POSIXové revize popisující dané nastavení. Glibc používá hodnotu 1 k " "signalizace podpory, protože POSIX standard ještě stále nebyl zapracován do " "Glibc. Argumentem B() bude B<_SC_FOO>. Pro seznam voleb viz " "B(7)." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "For variables or limits, typically, there is a constant B<_FOO>, maybe " "defined in Ilimits.hE>, or B<_POSIX_FOO>, maybe defined in " "Iunistd.hE>. The constant will not be defined if the limit is " "unspecified. If the constant is defined, it gives a guaranteed value, and a " "greater value might actually be supported. If an application wants to take " "advantage of values which may change between systems, a call to " "B() can be made. The B() argument will be B<_SC_FOO>." msgstr "" "Pro proměnné, nebo limity obvykle existuje konstanta B<_FOO>, která je " "definována v Ilimits.hE>, nebo B<_POSIX_FOO>, kterou lze nalézt v " "Iunistd.hE.> Konstanta nebude definována, pokud není specifikován " "limit. Pokud je konstanta definována, definuje zaručenou hodnotu a dokonce " "může být podporována i vyšší hodnota. Pokud chce aplikace využívat hodnot, " "které se mohou měnit mezi jednotlivými systémy, může být volán B(). " "Argumentem B() bude B<_SC_FOO>." #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "POSIX.1 variables" msgstr "Proměnné POSIX.1" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "We give the name of the variable, the name of the B() argument " "used to inquire about its value, and a short description." msgstr "" "Uvádíme jméno proměnné, jméno parametru funkce B(), který je " "používán pro dotazování se na tuto hodnotu, a krátký popis." #. [for the moment: only the things that are unconditionally present] #. .TP #. .BR AIO_LISTIO_MAX " - " _SC_AIO_LISTIO_MAX #. (if _POSIX_ASYNCHRONOUS_IO) #. Maximum number of I/O operations in a single list I/O call. #. Must not be less than _POSIX_AIO_LISTIO_MAX. #. .TP #. .BR AIO_MAX " - " _SC_AIO_MAX #. (if _POSIX_ASYNCHRONOUS_IO) #. Maximum number of outstanding asynchronous I/O operations. #. Must not be less than _POSIX_AIO_MAX. #. .TP #. .BR AIO_PRIO_DELTA_MAX " - " _SC_AIO_PRIO_DELTA_MAX #. (if _POSIX_ASYNCHRONOUS_IO) #. The maximum amount by which a process can decrease its #. asynchronous I/O priority level from its own scheduling priority. #. Must be nonnegative. #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "First, the POSIX.1 compatible values." msgstr "Nejdříve proměnné kompatibilní s POSIX.1." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_ARG_MAX>" msgstr "B - B<_SC_ARG_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum length of the arguments to the B(3) family of functions. " "Must not be less than B<_POSIX_ARG_MAX> (4096)." msgstr "" "Maximální délka argumentů pro funkce z rodiny B(3). Nesmí být méně než " "B<_POSIX_ARG_MAX> (4096)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_CHILD_MAX>" msgstr "B - B<_SC_CHILD_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of simultaneous processes per user ID. Must not be less " "than B<_POSIX_CHILD_MAX> (25)." msgstr "" "Počet simultánně běžících procesů jednoho uživatele. Nesmí být méně než " "B<_POSIX_CHILD_MAX> (25)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_HOST_NAME_MAX>" msgstr "B - B<_SC_HOST_NAME_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Maximum length of a hostname, not including the terminating null byte, as " "returned by B(2). Must not be less than " "B<_POSIX_HOST_NAME_MAX> (255)." msgstr "" "Maximální délka hostname, která nezahrnuje ukončující null byte, tak jak jej " "vrací funkce B(2). Nesmí být méně než B<_POSIX_HOST_NAME_MAX> " "(255)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_LOGIN_NAME_MAX>" msgstr "B - B<_SC_LOGIN_NAME_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Maximum length of a login name, including the terminating null byte. Must " "not be less than B<_POSIX_LOGIN_NAME_MAX> (9)." msgstr "" "Maximální délka loginu, která zahrnuje i ukončující null byte. Nesmí být " "méně než B<_POSIX_LOGIN_NAME_MAX> (9)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_NGROUPS_MAX>" msgstr "B - B<_SC_NGROUPS_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Maximum number of supplementary group IDs." msgstr "" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "clock ticks - B<_SC_CLK_TCK>" msgstr "takt hodin - B<_SC_CLK_TCK>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The number of clock ticks per second. The corresponding variable is " "obsolete. It was of course called B. (Note: the macro " "B does not give information: it must equal 1000000.)" msgstr "" "Počet taktů hodin za sekundu. Odpovídající proměnná je zastaralá. " "Samozřejmě byla nazvána B. (Poznámka: makro B " "nedává žádnou informaci: musí být rovno 1000000.)" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_OPEN_MAX>" msgstr "B - B<_SC_OPEN_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of files that a process can have open at any time. Must " "not be less than B<_POSIX_OPEN_MAX> (20)." msgstr "" "Maximální počet souborů, které může mít proces v libovolný okamžik otevřen. " "Nesmí být méně než B<_POSIX_OPEN_MAX> (20)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_PAGESIZE>" msgstr "B - B<_SC_PAGESIZE>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Size of a page in bytes. Must not be less than 1." msgstr "Velikost stránky v bytech. Nesmí být méně než 1." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_PAGE_SIZE>" msgstr "B - B<_SC_PAGE_SIZE>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "A synonym for B/B<_SC_PAGESIZE>. (Both B and " "B are specified in POSIX.)" msgstr "" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_RE_DUP_MAX>" msgstr "B - B<_SC_RE_DUP_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The number of repeated occurrences of a BRE permitted by B(3) and " "B(3). Must not be less than B<_POSIX2_RE_DUP_MAX> (255)." msgstr "" "Počet opakujících se výskytů BRE povolených B(3) a B(3). " "Nesmí být méně než B<_POSIX2_RE_DUP_MAX> (255)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_STREAM_MAX>" msgstr "B - B<_SC_STREAM_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of streams that a process can have open at any time. If " "defined, it has the same value as the standard C macro B. Must " "not be less than B<_POSIX_STREAM_MAX> (8)." msgstr "" "Maximální počet proudů, které může mít proces kdykoliv otevřen. Pokud je " "definován, má stejnou hodnotu jako C makro B. Nesmí být méně než " "B<_POSIX_STREAM_MAX> (8)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_SYMLOOP_MAX>" msgstr "B - B<_SC_SYMLOOP_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of symbolic links seen in a pathname before resolution " "returns B. Must not be less than B<_POSIX_SYMLOOP_MAX> (8)." msgstr "" "Maximální počet symbolických linků, které jsou vidět ve jméně souboru, než " "se vrátí B. Nesmí být méně než B<_POSIX_SYMLOOP_MAX> (8)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_TTY_NAME_MAX>" msgstr "B - B<_SC_TTY_NAME_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum length of terminal device name, including the terminating null " "byte. Must not be less than B<_POSIX_TTY_NAME_MAX> (9)." msgstr "" "Maximální délka jména terminálu, včetně ukončujícího null bytu. Nesmí být " "méně než B<_POSIX_TTY_NAME_MAX> (9)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_TZNAME_MAX>" msgstr "B - B<_SC_TZNAME_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of bytes in a timezone name. Must not be less than " "B<_POSIX_TZNAME_MAX> (6)." msgstr "" "Maximální počet bytů ve jménu časového pásma. Nesmí být méně než " "B<_POSIX_TZNAME_MAX> (6)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<_POSIX_VERSION> - B<_SC_VERSION>" msgstr "B<_POSIX_VERSION> - B<_SC_VERSION>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "indicates the year and month the POSIX.1 standard was approved in the format " "B; the value B<199009L> indicates the Sept. 1990 revision." msgstr "" #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "POSIX.2 variables" msgstr "Proměnné POSIX.2" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy msgid "Next, the POSIX.2 values, giving limits for utilities." msgstr "Dále, hodnoty POSIX.2:" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_BC_BASE_MAX>" msgstr "B - B<_SC_BC_BASE_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "indicates the maximum I value accepted by the B(1) utility." msgstr "maximální hodnota I braná jako správná v utilitě B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_BC_DIM_MAX>" msgstr "B - B<_SC_BC_DIM_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy msgid "" "indicates the maximum value of elements permitted in an array by B(1)." msgstr "maximální počet prvků v poli pro utilitu B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_BC_SCALE_MAX>" msgstr "B - B<_SC_BC_SCALE_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "indicates the maximum I value allowed by B(1)." msgstr "maximální hodnota I povolená B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_BC_STRING_MAX>" msgstr "B - B<_SC_BC_STRING_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "indicates the maximum length of a string accepted by B(1)." msgstr "maximální délka řetězce povolená B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_COLL_WEIGHTS_MAX>" msgstr "B - B<_SC_COLL_WEIGHTS_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "indicates the maximum numbers of weights that can be assigned to an entry " #| "of the B keyword in the locale definition file," msgid "" "indicates the maximum numbers of weights that can be assigned to an entry of " "the B keyword in the locale definition file." msgstr "" "maximální počet šířek, které mohou být přiřazeny záznamu B " "v definičním souboru locale." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_EXPR_NEST_MAX>" msgstr "B - B<_SC_EXPR_NEST_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "is the maximum number of expressions which can be nested within parentheses " "by B(1)." msgstr "" "maximální počet výrazů, které mohou být vnořeny v závorkách v B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_LINE_MAX>" msgstr "B - B<_SC_LINE_MAX>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy msgid "" "The maximum length of a utility's input line, either from standard input or " "from a file. This includes space for a trailing newline." msgstr "" "Maximální délka vstupního řádku pro utility, jak ze standardního vstupu, tak " "i ze souboru." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The maximum number of repeated occurrences of a regular expression when the " "interval notation B<\\e{m,n\\e}> is used." msgstr "" "Maximální počet opakovaných výskytů regulárního výrazu v intervalové notaci " "B<\\e{m,n\\e}>." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_2_VERSION>" msgstr "B - B<_SC_2_VERSION>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "indicates the version of the POSIX.2 standard in the format of YYYYMML." msgstr "verze POSIX.2 standardu ve formátu YYYYMML." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_2_C_DEV>" msgstr "B - B<_SC_2_C_DEV>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "indicates whether the POSIX.2 C language development facilities are " "supported." msgstr "jsou podporovány POSIX.2 standardy týkající se jazyka C ?" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_2_FORT_DEV>" msgstr "B - B<_SC_2_FORT_DEV>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "indicates whether the POSIX.2 FORTRAN development utilities are supported." msgstr "jsou podporovány POSIX.2 standardy týkající se jazyka FORTRAN ?" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_2_FORT_RUN>" msgstr "B - B<_SC_2_FORT_RUN>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "indicates whether the POSIX.2 FORTRAN run-time utilities are supported." msgstr "jsou podporovány POSIX.2 FORTRAN utility ?" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<_POSIX2_LOCALEDEF> - B<_SC_2_LOCALEDEF>" msgstr "B<_POSIX2_LOCALEDEF> - B<_SC_2_LOCALEDEF>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy msgid "" "indicates whether the POSIX.2 creation of locales via B(1) is " "supported." msgstr "je možno vytvářet POSIX.2 locales pomocí B(1)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B - B<_SC_2_SW_DEV>" msgstr "B - B<_SC_2_SW_DEV>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "indicates whether the POSIX.2 software development utilities option is " "supported." msgstr "je podporována volba POSIX.2 vývojových utilit ?" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "These values also exist, but may not be standard." msgstr "Následující hodnoty také existují, ale nejsou standard." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid " - B<_SC_PHYS_PAGES>" msgstr " - B<_SC_PHYS_PAGES>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy msgid "" "The number of pages of physical memory. Note that it is possible for the " "product of this value and the value of B<_SC_PAGESIZE> to overflow." msgstr "" "Počet stránek fyzické paměti. Je možné, že toto číslo bude překonáno a dojde " "k přetečení." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid " - B<_SC_AVPHYS_PAGES>" msgstr " - B<_SC_AVPHYS_PAGES>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "The number of currently available pages of physical memory." msgstr "Počet aktuálně dostupných stránek fyzické paměti." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid " - B<_SC_NPROCESSORS_CONF>" msgstr " - B<_SC_NPROCESSORS_CONF>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "The number of processors configured. See also B(3)." msgstr "Počet nakonfigurovaných procesorů. Viz B(3)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid " - B<_SC_NPROCESSORS_ONLN>" msgstr " - B<_SC_NPROCESSORS_ONLN>" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The number of processors currently online (available). See also " "B(3)." msgstr "Počet dostupných online procesorů. Viz B(3)." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "RETURN VALUE" msgstr "NÁVRATOVÉ HODNOTY" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "The return value of B() is one of the following:" msgstr "" #. type: IP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "\\[bu]" msgstr "\\[bu]" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On error, -1 is returned and I is set to indicate the error (for " "example, B, indicating that I is invalid)." msgstr "" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "If I corresponds to a maximum or minimum limit, and that limit is " "indeterminate, -1 is returned and I is not changed. (To distinguish " "an indeterminate limit from an error, set I to zero before the call, " "and then check whether I is nonzero when -1 is returned.)" msgstr "" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "If I corresponds to an option, a positive value is returned if the " "option is supported, and -1 is returned if the option is not supported." msgstr "" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Otherwise, the current value of the option or limit is returned. This value " "will not be more restrictive than the corresponding value that was described " "to the application in Iunistd.hE> or Ilimits.hE> when " "the application was compiled." msgstr "" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ERRORS" msgstr "CHYBOVÉ STAVY" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I is invalid." msgstr "I je neplatný." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ATTRIBUTES" msgstr "ATRIBUTY" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "For an explanation of the terms used in this section, see B(7)." msgstr "Vysvětlení pojmů použitých v této části viz B(7)." #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Interface" msgstr "Rozhraní" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Attribute" msgstr "Atribut" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Value" msgstr "Hodnota" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".na\n" msgstr ".na\n" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".nh\n" msgstr ".nh\n" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "B()" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Thread safety" msgstr "" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "MT-Safe env" msgstr "" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "STANDARDS" msgstr "STANDARDY" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "POSIX.1-2008." msgstr "POSIX.1-2008." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "HISTORY" msgstr "HISTORIE" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "POSIX.1-2001." msgstr "POSIX.1-2001." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "BUGS" msgstr "CHYBY" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "It is difficult to use B because it is not specified how much of " "the argument space for B(3) is consumed by the user's environment " "variables." msgstr "" "Je velmi těžké používat B protože není specifikováno, jaké množství " "paměti je při volání B(3) spotřebováno uživatelskými proměnnými v " "prostředí." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Some returned values may be huge; they are not suitable for allocating " "memory." msgstr "" "Některé hodnoty mohou být příliš velké; nejsou vhodné k alokování paměti." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" msgstr "DALŠÍ INFORMACE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "B(1), B(1), B(1), B(1), B(3), " "B(3), B(3), B(7)" msgstr "" "B(1), B(1), B(1), B(1), B(3), " "B(3), B(3), B(7)" #. type: TH #: debian-bookworm #, no-wrap msgid "2023-02-05" msgstr "5. února 2023" #. type: TH #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" msgstr "Linux man-pages 6.03" #. type: Plain text #: debian-bookworm msgid "POSIX.1-2001, POSIX.1-2008." msgstr "POSIX.1-2001, POSIX.1-2008." #. type: TH #: debian-unstable opensuse-tumbleweed #, no-wrap msgid "2023-07-20" msgstr "20. července 2023" #. type: TH #: debian-unstable opensuse-tumbleweed #, no-wrap msgid "Linux man-pages 6.05.01" msgstr "Linux man-pages 6.05.01" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "2023-03-30" msgstr "30. března 2023" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux man-pages 6.04"