diff options
Diffstat (limited to 'po/pl/man2/chown.2.po')
-rw-r--r-- | po/pl/man2/chown.2.po | 127 |
1 files changed, 109 insertions, 18 deletions
diff --git a/po/pl/man2/chown.2.po b/po/pl/man2/chown.2.po index 0e609d78..eb996a3a 100644 --- a/po/pl/man2/chown.2.po +++ b/po/pl/man2/chown.2.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" -"POT-Creation-Date: 2024-03-01 16:54+0100\n" -"PO-Revision-Date: 2024-03-03 11:28+0100\n" +"POT-Creation-Date: 2024-06-01 05:44+0200\n" +"PO-Revision-Date: 2024-06-02 12:38+0200\n" "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" "Language: pl\n" @@ -27,16 +27,16 @@ msgid "chown" msgstr "chown" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-10-31" -msgstr "31 października 2023 r." +msgid "2024-05-02" +msgstr "2 maja 2024 r." #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable #, no-wrap -msgid "Linux man-pages 6.06" -msgstr "Linux man-pages 6.06" +msgid "Linux man-pages 6.8" +msgstr "Linux man-pages 6.8" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -403,7 +403,7 @@ msgid "" "to indicate the error." msgstr "" "Po pomyślnym zakończeniu zwracane jest zero. Po błędzie zwracane jest -1 i " -"ustawiane jest I<errno> wskazując błąd." +"ustawiane I<errno>, wskazując błąd." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -575,7 +575,7 @@ msgstr "B<ENOTDIR>" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "A component of the path prefix is not a directory." -msgstr "Składnik ścieżki nie jest katalogiem." +msgstr "Składowa ścieżki nie jest katalogiem." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -915,13 +915,13 @@ msgid "Program source" msgstr "Kod źródłowy programu" #. type: Plain text -#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-tumbleweed +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "" "#include E<lt>pwd.hE<gt>\n" "#include E<lt>stdio.hE<gt>\n" "#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>sys/types.hE<gt>\n" "#include E<lt>unistd.hE<gt>\n" "\\&\n" "int\n" @@ -959,6 +959,7 @@ msgstr "" "#include E<lt>pwd.hE<gt>\n" "#include E<lt>stdio.hE<gt>\n" "#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>sys/types.hE<gt>\n" "#include E<lt>unistd.hE<gt>\n" "\\&\n" "int\n" @@ -1151,16 +1152,100 @@ msgstr "" "}\n" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "31 października 2023 r." + +#. type: TH +#: fedora-40 mageia-cauldron +#, no-wrap +msgid "Linux man-pages 6.06" +msgstr "Linux man-pages 6.06" + +#. type: Plain text +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-05-03" -msgstr "3 maja 2023 r." +msgid "" +"#include E<lt>pwd.hE<gt>\n" +"#include E<lt>stdio.hE<gt>\n" +"#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>unistd.hE<gt>\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" char *endptr;\n" +" uid_t uid;\n" +" struct passwd *pwd;\n" +"\\&\n" +" if (argc != 3 || argv[1][0] == \\[aq]\\e0\\[aq]) {\n" +" fprintf(stderr, \"%s E<lt>ownerE<gt> E<lt>fileE<gt>\\en\", argv[0]);\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = strtol(argv[1], &endptr, 10); /* Allow a numeric string */\n" +"\\&\n" +" if (*endptr != \\[aq]\\e0\\[aq]) { /* Was not pure numeric string */\n" +" pwd = getpwnam(argv[1]); /* Try getting UID for username */\n" +" if (pwd == NULL) {\n" +" perror(\"getpwnam\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = pwd-E<gt>pw_uid;\n" +" }\n" +"\\&\n" +" if (chown(argv[2], uid, -1) == -1) {\n" +" perror(\"chown\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" exit(EXIT_SUCCESS);\n" +"}\n" +msgstr "" +"#include E<lt>pwd.hE<gt>\n" +"#include E<lt>stdio.hE<gt>\n" +"#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>unistd.hE<gt>\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" char *endptr;\n" +" uid_t uid;\n" +" struct passwd *pwd;\n" +"\\&\n" +" if (argc != 3 || argv[1][0] == \\[aq]\\e0\\[aq]) {\n" +" fprintf(stderr, \"%s E<lt>ownerE<gt> E<lt>fileE<gt>\\en\", argv[0]);\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = strtol(argv[1], &endptr, 10); /* Akceptuje łańcuch numeryczny */\n" +"\\&\n" +" if (*endptr != \\[aq]\\e0\\[aq]) { /* Nie był to łańcuch czysto numer. */\n" +" pwd = getpwnam(argv[1]); /* Próba uzyskania UID dla nazwy użytk. */\n" +" if (pwd == NULL) {\n" +" perror(\"getpwnam\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = pwd-E<gt>pw_uid;\n" +" }\n" +"\\&\n" +" if (chown(argv[2], uid, -1) == -1) {\n" +" perror(\"chown\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" exit(EXIT_SUCCESS);\n" +"}\n" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-rawhide #, no-wrap -msgid "Linux man-pages 6.05.01" -msgstr "Linux man-pages 6.05.01" +msgid "Linux man-pages 6.7" +msgstr "Linux man-pages 6.7" #. type: TH #: opensuse-leap-15-6 @@ -1173,3 +1258,9 @@ msgstr "30 marca 2023 r." #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux man-pages 6.04" + +#. type: TH +#: opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages (unreleased)" +msgstr "Linux man-pages (niewydane)" |