diff options
Diffstat (limited to 'po/pl/man3/gets.3.po')
-rw-r--r-- | po/pl/man3/gets.3.po | 350 |
1 files changed, 350 insertions, 0 deletions
diff --git a/po/pl/man3/gets.3.po b/po/pl/man3/gets.3.po new file mode 100644 index 00000000..135b9bc2 --- /dev/null +++ b/po/pl/man3/gets.3.po @@ -0,0 +1,350 @@ +# Polish translation of manpages +# This file is distributed under the same license as the manpages-l10n package. +# Copyright © of this file: +# Przemek Borys <pborys@dione.ids.pl>, 1999. +# Andrzej Krzysztofowicz <ankry@green.mf.pg.gda.pl>, 2001. +# Robert Luberda <robert@debian.org>, 2013, 2019. +# Michał Kułach <michal.kulach@gmail.com>, 2014, 2016. +msgid "" +msgstr "" +"Project-Id-Version: manpages-pl\n" +"POT-Creation-Date: 2024-03-01 16:57+0100\n" +"PO-Revision-Date: 2019-08-16 21:20+0100\n" +"Last-Translator: Robert Luberda <robert@debian.org>\n" +"Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 2.0\n" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "gets" +msgstr "gets" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "31 października 2023 r." + +#. 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 "NAZWA" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "gets - get a string from standard input (DEPRECATED)" +msgstr "gets - pobiera łańcuch ze standardowego wejścia (PRZESTARZAŁE)" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "LIBRARY" +msgstr "BIBLIOTEKA" + +#. 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<libc>, I<-lc>)" +msgstr "Standardowa biblioteka C (I<libc>, 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 "SKŁADNIA" + +#. 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 E<lt>stdio.hE<gt>>\n" +msgstr "B<#include E<lt>stdio.hE<gt>>\n" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy, no-wrap +#| msgid "B<char *gets(char *>I<s>B<);>\n" +msgid "B<[[deprecated]] char *gets(char *>I<s>B<);>\n" +msgstr "B<char *gets(char *>I<s>B<);>\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 "OPIS" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "I<Never use this function>." +msgstr "I<Proszę nigdy nie używać tej funkcji>." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<gets>() reads a line from I<stdin> into the buffer pointed to by I<s> " +"until either a terminating newline or B<EOF>, which it replaces with a null " +"byte (\\[aq]\\e0\\[aq]). No check for buffer overrun is performed (see BUGS " +"below)." +msgstr "" +"B<gets>() odczytuje linię z I<stdin> do bufora wskazywanego przez I<s> aż do " +"kończącego znaku nowej linii lub B<EOF>, który jest zastępowany przez bajt " +"null (\\[aq]\\e0\\[aq]). Nie jest sprawdzane przepełnienie bufora (zobacz " +"USTERKI poniżej)." + +#. 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 "WARTOŚĆ ZWRACANA" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<gets>() returns I<s> on success, and NULL on error or when end of file " +"occurs while no characters have been read. However, given the lack of " +"buffer overrun checking, there can be no guarantees that the function will " +"even return." +msgstr "" +"B<gets>() zwraca I<s> w przypadku pomyślnego zakończenia lub NULL w " +"przypadku błędu lub wystąpienia końca pliku przed odczytaniem jakiegokolwiek " +"znaku. Jednak z powodu braku sprawdzenia przed przepełnieniem bufora nie ma " +"gwarancji, że funkcja kiedykolwiek powróci." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATTRIBUTES" +msgstr "ATRYBUTY" + +#. 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<attributes>(7)." +msgstr "" +"Informacje o pojęciach używanych w tym rozdziale można znaleźć w podręczniku " +"B<attributes>(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 "Interfejs" + +#. 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 "Atrybut" + +#. 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 "Wartość" + +#. 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<gets>()" +msgstr "B<gets>()" + +#. 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 "Bezpieczeństwo wątkowe" + +#. 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" +msgstr "MT-bezpieczne" + +#. 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 "HISTORIA" + +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "C89, POSIX.1-2001." +msgstr "C89, POSIX.1-2001." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "LSB deprecates B<gets>(). POSIX.1-2008 marks B<gets>() obsolescent. " +#| "ISO C11 removes the specification of B<gets>() from the C language, and " +#| "since version 2.16, glibc header files don't expose the function " +#| "declaration if the B<_ISOC11_SOURCE> feature test macro is defined." +msgid "" +"LSB deprecates B<gets>(). POSIX.1-2008 marks B<gets>() obsolescent. ISO " +"C11 removes the specification of B<gets>() from the C language, and since " +"glibc 2.16, glibc header files don't expose the function declaration if the " +"B<_ISOC11_SOURCE> feature test macro is defined." +msgstr "" +"LSB uznaje B<gets>() za wychodzącą z użycia. POSIX.1-2008 oznacza ją jako " +"przestarzałą. ISO C11 usuwa definicję B<gets>() z języka C i od wersji 2.16 " +"biblioteki glibc pliki nagłówkowe nie zawierają deklaracji tej funkcji, " +"jeśli zdefiniowane jest makro B<_ISOC11_SOURCE>." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "BUGS" +msgstr "USTERKI" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Never use B<gets>(). Because it is impossible to tell without knowing the " +"data in advance how many characters B<gets>() will read, and because " +"B<gets>() will continue to store characters past the end of the buffer, it " +"is extremely dangerous to use. It has been used to break computer " +"security. Use B<fgets>() instead." +msgstr "" +"Nigdy nie należy używać B<gets>(). Funkcja ta jest szczególnie niebezpieczna " +"w użyciu, ponieważ bez znajomości danych z góry nie jest możliwe określenie, " +"ile znaków B<gets>() przeczyta, i ponieważ B<gets>() będzie kontynuować " +"umieszczanie znaków po przekroczeniu końca bufora. Było to wykorzystywane do " +"łamania zabezpieczeń komputerów. Zamiast B<gets>() należy korzystać z " +"B<fgets>()." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"For more information, see CWE-242 (aka \"Use of Inherently Dangerous " +"Function\") at http://cwe.mitre.org/data/definitions/242.html" +msgstr "" +"Więcej informacji znajduje się w CWE-242 (aka \"Use of Inherently Dangerous " +"Function\") at http://cwe.mitre.org/data/definitions/242.html" + +#. 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 "ZOBACZ TAKŻE" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<read>(2), B<write>(2), B<ferror>(3), B<fgetc>(3), B<fgets>(3), " +"B<fgetwc>(3), B<fgetws>(3), B<fopen>(3), B<fread>(3), B<fseek>(3), " +"B<getline>(3), B<getwchar>(3), B<puts>(3), B<scanf>(3), B<ungetwc>(3), " +"B<unlocked_stdio>(3), B<feature_test_macros>(7)" +msgstr "" +"B<read>(2), B<write>(2), B<ferror>(3), B<fgetc>(3), B<fgets>(3), " +"B<fgetwc>(3), B<fgetws>(3), B<fopen>(3), B<fread>(3), B<fseek>(3), " +"B<getline>(3), B<getwchar>(3), B<puts>(3), B<scanf>(3), B<ungetwc>(3), " +"B<unlocked_stdio>(3), B<feature_test_macros>(7)" + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "2023-02-05" +msgstr "5 lutego 2023 r." + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "Linux man-pages 6.03" +msgstr "Linux man-pages 6.03" + +#. type: Plain text +#: debian-bookworm +msgid "C99, POSIX.1-2001." +msgstr "C99, POSIX.1-2001." + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "2023-07-20" +msgstr "20 lipca 2023 r." + +#. 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 marca 2023 r." + +#. type: TH +#: opensuse-leap-15-6 +#, no-wrap +msgid "Linux man-pages 6.04" +msgstr "Linux man-pages 6.04" |